From bfe30d1261e33ee2446f4205070e326ccba07cca Mon Sep 17 00:00:00 2001 From: Piyush Date: Fri, 12 Feb 2016 22:00:05 +0530 Subject: [PATCH 01/42] fix_11907 Signed-off-by: Piyush --- libraries/sql.lib.php | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/sql.lib.php b/libraries/sql.lib.php index e42157bce4..f6c4bd7086 100644 --- a/libraries/sql.lib.php +++ b/libraries/sql.lib.php @@ -2162,6 +2162,7 @@ function PMA_executeQueryAndGetQueryResponse($analyzed_sql_results, $pmaThemeImage, isset($result) ? $result : null, $sql_query, isset($complete_query) ? $complete_query : null ); + unset($GLOBALS['message']); } else { // At least one row is returned -> displays a table with results $html_output = PMA_getQueryResponseForResultsReturned( From 3076d552e11a7b763518cc580e5c9a6593ee5069 Mon Sep 17 00:00:00 2001 From: Isaac Bennetch Date: Tue, 16 Feb 2016 23:07:00 -0500 Subject: [PATCH 02/42] Another way to reduce disk space See Issue #6137 Signed-off-by: Isaac Bennetch --- doc/faq.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/faq.rst b/doc/faq.rst index 2115452355..f3e338d3b1 100644 --- a/doc/faq.rst +++ b/doc/faq.rst @@ -627,6 +627,7 @@ A list of files and corresponding functionality which degrade gracefully when re * :file:`./setup/` (setup script) * :file:`./examples/` * :file:`./sql/` (SQL scripts to configure advanced functionality) +* :file:`./js/openlayers/` (GIS visualization) .. _faqconfig: From 4962eecfe01f2b47a7c1ba56ce0818cacd339238 Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Wed, 17 Feb 2016 14:00:36 +0530 Subject: [PATCH 03/42] Store analysed privileges in the cache Signed-off-by: Deven Bansod --- libraries/check_user_privileges.lib.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libraries/check_user_privileges.lib.php b/libraries/check_user_privileges.lib.php index ba2d3a387f..96633f7dc9 100644 --- a/libraries/check_user_privileges.lib.php +++ b/libraries/check_user_privileges.lib.php @@ -293,6 +293,11 @@ function PMA_analyseShowGrant() $GLOBALS['dbs_where_create_table_allowed'] ); PMA\libraries\Util::cacheSet('dbs_to_test', $GLOBALS['dbs_to_test']); + + PMA\libraries\Util::cacheSet('proc_priv', $GLOBALS['proc_priv']); + PMA\libraries\Util::cacheSet('table_priv', $GLOBALS['table_priv']); + PMA\libraries\Util::cacheSet('col_priv', $GLOBALS['col_priv']); + PMA\libraries\Util::cacheSet('db_priv', $GLOBALS['db_priv']); } // end function $user = $GLOBALS['dbi']->fetchValue("SELECT CURRENT_USER();"); From 06b9a8b6e1588b50972418004df77690583af1e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 10:04:56 +0100 Subject: [PATCH 04/42] Changelog entry for issue #11907 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- ChangeLog | 1 + 1 file changed, 1 insertion(+) diff --git a/ChangeLog b/ChangeLog index 118f373c1a..677c55883a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -44,6 +44,7 @@ phpMyAdmin - ChangeLog - issue #11880 Fixed rendering of missing extension error - issue #11923 Errors on Structure tab when user only has select access on certain columns - issue #11972 Missing documentation for $cfg['Servers'][$i]['favorite'] and $cfg['NumFavoriteTables'] +- issue #11907 Avoid displaying UPDATE query twice 4.5.5.0 (not yet released) - issue Undefined index: is_ajax_request From 6fe468f7db3b872527ee3d13d96f5189ecce0dc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 10:28:04 +0100 Subject: [PATCH 05/42] Improve syslog integration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - correctly open log - log only failures Issue #6146 Signed-off-by: Michal Čihař --- libraries/logging.lib.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/libraries/logging.lib.php b/libraries/logging.lib.php index 105a9ead7d..c82c478017 100644 --- a/libraries/logging.lib.php +++ b/libraries/logging.lib.php @@ -22,10 +22,12 @@ function PMA_logUser($user, $status = 'ok') apache_note('userID', $user); apache_note('userStatus', $status); } - if (function_exists('syslog')) { + if (function_exists('syslog') && $status != 'ok') { + @openlog('phpMyAdmin', LOG_NDELAY | LOG_PID, LOG_AUTHPRIV); @syslog( - LOG_AUTHPRIV, - 'phpMyAdmin: ' . $user . ' (' . $status . ') from ' . $_SERVER['REMOTE_ADDR'] + LOG_WARNING, + 'user denied: ' . $user . ' (' . $status . ') from ' . + $_SERVER['REMOTE_ADDR'] ); } } From c81bed28254dbb3b1f00e8eb87ef47d8aa598f29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 10:30:05 +0100 Subject: [PATCH 06/42] Document syslog logging MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Issue #6146 Signed-off-by: Michal Čihař --- doc/setup.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/setup.rst b/doc/setup.rst index 1274e3c525..1316992624 100644 --- a/doc/setup.rst +++ b/doc/setup.rst @@ -782,6 +782,8 @@ are always ways to make your installation more secure: * If you are afraid of automated attacks, enabling Captcha by :config:option:`$cfg['CaptchaLoginPublicKey']` and :config:option:`$cfg['CaptchaLoginPrivateKey']` might be an option. +* Alternative approach might be using using fail2ban as phpMyAdmin logs failed + authentication attempts to syslog (if available) Known issues ++++++++++++ From 84c12c2fddc52374a6358cbe4a8140675b553b7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 10:42:14 +0100 Subject: [PATCH 07/42] Remove sql data parameter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This just makes the SQL import different from others leading to subtle breakages. Issue #11850 Signed-off-by: Michal Čihař --- libraries/plugins/import/ImportSql.php | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/libraries/plugins/import/ImportSql.php b/libraries/plugins/import/ImportSql.php index 8926830ed7..2367cfc701 100644 --- a/libraries/plugins/import/ImportSql.php +++ b/libraries/plugins/import/ImportSql.php @@ -100,11 +100,9 @@ class ImportSql extends ImportPlugin /** * Handles the whole import logic * - * @param array &$sql_data 2-element array with sql data - * * @return void */ - public function doImport(&$sql_data = array()) + public function doImport() { global $error, $timeout_passed; @@ -155,19 +153,19 @@ class ImportSql extends ImportPlugin } // Executing the query. - PMA_importRunQuery($statement, $statement, $sql_data); + PMA_importRunQuery($statement, $statement); } // Extracting remaining statements. while ((!$error) && (!$timeout_passed) && (!empty($bq->query))) { $statement = $bq->extract(true); if (!empty($statement)) { - PMA_importRunQuery($statement, $statement, $sql_data); + PMA_importRunQuery($statement, $statement); } } // Finishing. - PMA_importRunQuery('', '', $sql_data); + PMA_importRunQuery('', ''); } /** From ee8f9b0dba8afd6fd736a0bf8601c3e5cd3b9e49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 10:46:23 +0100 Subject: [PATCH 08/42] Always use local static storage of executed queries MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Issue #11850 Signed-off-by: Michal Čihař --- libraries/import.lib.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libraries/import.lib.php b/libraries/import.lib.php index 8e4f19e164..172a21d7af 100644 --- a/libraries/import.lib.php +++ b/libraries/import.lib.php @@ -156,13 +156,16 @@ function PMA_executeQuery($sql, $full, &$sql_data) * * @param string $sql query to run * @param string $full query to display, this might be commented - * @param array &$sql_data SQL parse data storage * * @return void * @access public */ -function PMA_importRunQuery($sql = '', $full = '', &$sql_data = array()) +function PMA_importRunQuery($sql = '', $full = '') { + /** + * @var $sql_data SQL parse data storage + */ + static $sql_data = array(); global $import_run_buffer, $go_sql, $complete_query, $display_query, $sql_query, $error, $reload, $result, $msg, $skip_queries, $executed_queries, $max_sql_len, $read_multiply, From 6895a1fc6e835c845635069bcc0d9c5e2f1c4668 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 10:48:57 +0100 Subject: [PATCH 09/42] Revert "fix_11907" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit bfe30d1261e33ee2446f4205070e326ccba07cca. It removes the message in many cases where it should be shown. Signed-off-by: Michal Čihař --- libraries/sql.lib.php | 1 - 1 file changed, 1 deletion(-) diff --git a/libraries/sql.lib.php b/libraries/sql.lib.php index f6c4bd7086..e42157bce4 100644 --- a/libraries/sql.lib.php +++ b/libraries/sql.lib.php @@ -2162,7 +2162,6 @@ function PMA_executeQueryAndGetQueryResponse($analyzed_sql_results, $pmaThemeImage, isset($result) ? $result : null, $sql_query, isset($complete_query) ? $complete_query : null ); - unset($GLOBALS['message']); } else { // At least one row is returned -> displays a table with results $html_output = PMA_getQueryResponseForResultsReturned( From 18f9231d742caf2fa99f7f8400323873de773673 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 10:52:04 +0100 Subject: [PATCH 10/42] Fixed CSV import MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #11850 Signed-off-by: Michal Čihař --- ChangeLog | 1 + libraries/import.lib.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 677c55883a..0bc9b27f2f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -45,6 +45,7 @@ phpMyAdmin - ChangeLog - issue #11923 Errors on Structure tab when user only has select access on certain columns - issue #11972 Missing documentation for $cfg['Servers'][$i]['favorite'] and $cfg['NumFavoriteTables'] - issue #11907 Avoid displaying UPDATE query twice +- issue #11850 Fixed CSV import 4.5.5.0 (not yet released) - issue Undefined index: is_ajax_request diff --git a/libraries/import.lib.php b/libraries/import.lib.php index 172a21d7af..684e1f2efc 100644 --- a/libraries/import.lib.php +++ b/libraries/import.lib.php @@ -213,7 +213,7 @@ function PMA_importRunQuery($sql = '', $full = '') } else { $executed_queries++; - if ($run_query && $executed_queries < 50) { + if ($run_query && $executed_queries < 50 && empty($sql)) { $go_sql = true; if (! $sql_query_disabled) { $complete_query = $sql_query; From 855145988ca9f92bea97c6568212c0b4da1b61c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 10:59:37 +0100 Subject: [PATCH 11/42] Revert "Always use local static storage of executed queries" This reverts commit ee8f9b0dba8afd6fd736a0bf8601c3e5cd3b9e49. --- libraries/import.lib.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/libraries/import.lib.php b/libraries/import.lib.php index 684e1f2efc..adffb740fc 100644 --- a/libraries/import.lib.php +++ b/libraries/import.lib.php @@ -156,16 +156,13 @@ function PMA_executeQuery($sql, $full, &$sql_data) * * @param string $sql query to run * @param string $full query to display, this might be commented + * @param array &$sql_data SQL parse data storage * * @return void * @access public */ -function PMA_importRunQuery($sql = '', $full = '') +function PMA_importRunQuery($sql = '', $full = '', &$sql_data = array()) { - /** - * @var $sql_data SQL parse data storage - */ - static $sql_data = array(); global $import_run_buffer, $go_sql, $complete_query, $display_query, $sql_query, $error, $reload, $result, $msg, $skip_queries, $executed_queries, $max_sql_len, $read_multiply, From 5563f3e137d5dbdb22346294ddefd0d5005eaf92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 10:59:40 +0100 Subject: [PATCH 12/42] Revert "Remove sql data parameter" This reverts commit 84c12c2fddc52374a6358cbe4a8140675b553b7f. --- libraries/plugins/import/ImportSql.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/libraries/plugins/import/ImportSql.php b/libraries/plugins/import/ImportSql.php index 2367cfc701..8926830ed7 100644 --- a/libraries/plugins/import/ImportSql.php +++ b/libraries/plugins/import/ImportSql.php @@ -100,9 +100,11 @@ class ImportSql extends ImportPlugin /** * Handles the whole import logic * + * @param array &$sql_data 2-element array with sql data + * * @return void */ - public function doImport() + public function doImport(&$sql_data = array()) { global $error, $timeout_passed; @@ -153,19 +155,19 @@ class ImportSql extends ImportPlugin } // Executing the query. - PMA_importRunQuery($statement, $statement); + PMA_importRunQuery($statement, $statement, $sql_data); } // Extracting remaining statements. while ((!$error) && (!$timeout_passed) && (!empty($bq->query))) { $statement = $bq->extract(true); if (!empty($statement)) { - PMA_importRunQuery($statement, $statement); + PMA_importRunQuery($statement, $statement, $sql_data); } } // Finishing. - PMA_importRunQuery('', ''); + PMA_importRunQuery('', '', $sql_data); } /** From dd09116716cc6eb37e314f4b9f0eefac9e1c769e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 11:11:10 +0100 Subject: [PATCH 13/42] Correct fix for table import processing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We need to consistently propagate the $sql_data array. Issue #11850 Signed-off-by: Michal Čihař --- libraries/import.lib.php | 13 ++++---- libraries/plugins/import/ImportCsv.php | 10 ++++--- libraries/plugins/import/ImportLdi.php | 8 +++-- libraries/plugins/import/ImportMediawiki.php | 31 ++++++++++++-------- libraries/plugins/import/ImportOds.php | 8 +++-- libraries/plugins/import/ImportShp.php | 8 +++-- libraries/plugins/import/ImportXml.php | 8 +++-- libraries/plugins/import/README | 8 +++-- 8 files changed, 56 insertions(+), 38 deletions(-) diff --git a/libraries/import.lib.php b/libraries/import.lib.php index adffb740fc..0276b7fab7 100644 --- a/libraries/import.lib.php +++ b/libraries/import.lib.php @@ -210,7 +210,7 @@ function PMA_importRunQuery($sql = '', $full = '', &$sql_data = array()) } else { $executed_queries++; - if ($run_query && $executed_queries < 50 && empty($sql)) { + if ($run_query && $executed_queries < 50) { $go_sql = true; if (! $sql_query_disabled) { $complete_query = $sql_query; @@ -974,6 +974,7 @@ $import_notice = null; * @param array &$analyses Analyses of the tables * @param array &$additional_sql Additional SQL statements to be executed * @param array $options Associative array of options + * @param array &$sql_data 2-element array with sql data * * @return void * @access public @@ -981,7 +982,7 @@ $import_notice = null; * @link http://wiki.phpmyadmin.net/pma/Import */ function PMA_buildSQL($db_name, &$tables, &$analyses = null, - &$additional_sql = null, $options = null + &$additional_sql = null, $options = null, &$sql_data ) { /* Take care of the options */ if (isset($options['db_collation'])&& ! is_null($options['db_collation'])) { @@ -1021,7 +1022,7 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = null, /* Execute the SQL statements create above */ $sql_len = count($sql); for ($i = 0; $i < $sql_len; ++$i) { - PMA_importRunQuery($sql[$i], $sql[$i]); + PMA_importRunQuery($sql[$i], $sql[$i], $sql_data); } /* No longer needed */ @@ -1056,7 +1057,7 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = null, $additional_sql[$i] ); /* Execute the resulting statements */ - PMA_importRunQuery($additional_sql[$i], $additional_sql[$i]); + PMA_importRunQuery($additional_sql[$i], $additional_sql[$i], $sql_data); } } @@ -1108,7 +1109,7 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = null, * after it is formed so that we don't have * to store them in a (possibly large) buffer */ - PMA_importRunQuery($tempSQLStr, $tempSQLStr); + PMA_importRunQuery($tempSQLStr, $tempSQLStr, $sql_data); } } @@ -1199,7 +1200,7 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = null, * after it is formed so that we don't have * to store them in a (possibly large) buffer */ - PMA_importRunQuery($tempSQLStr, $tempSQLStr); + PMA_importRunQuery($tempSQLStr, $tempSQLStr, $sql_data); } /* No longer needed */ diff --git a/libraries/plugins/import/ImportCsv.php b/libraries/plugins/import/ImportCsv.php index 56620f0a1f..2e3ebc4611 100644 --- a/libraries/plugins/import/ImportCsv.php +++ b/libraries/plugins/import/ImportCsv.php @@ -90,9 +90,11 @@ class ImportCsv extends AbstractImportCsv /** * Handles the whole import logic * + * @param array &$sql_data 2-element array with sql data + * * @return void */ - public function doImport() + public function doImport(&$sql_data = array()) { global $db, $table, $csv_terminated, $csv_enclosed, $csv_escaped, $csv_new_line, $csv_columns, $err_url; @@ -569,7 +571,7 @@ class ImportCsv extends AbstractImportCsv * @todo maybe we could add original line to verbose * SQL in comment */ - PMA_importRunQuery($sql, $sql); + PMA_importRunQuery($sql, $sql, $sql_data); } $line++; @@ -645,14 +647,14 @@ class ImportCsv extends AbstractImportCsv $create = null; /* Created and execute necessary SQL statements from data */ - PMA_buildSQL($db_name, $tables, $analyses, $create, $options); + PMA_buildSQL($db_name, $tables, $analyses, $create, $options, $sql_data); unset($tables); unset($analyses); } // Commit any possible data in buffers - PMA_importRunQuery(); + PMA_importRunQuery('', '', $sql_data); if (count($values) != 0 && !$error) { $message = PMA\libraries\Message::error( diff --git a/libraries/plugins/import/ImportLdi.php b/libraries/plugins/import/ImportLdi.php index d118372c92..7ccc26326b 100644 --- a/libraries/plugins/import/ImportLdi.php +++ b/libraries/plugins/import/ImportLdi.php @@ -90,9 +90,11 @@ class ImportLdi extends AbstractImportCsv /** * Handles the whole import logic * + * @param array &$sql_data 2-element array with sql data + * * @return void */ - public function doImport() + public function doImport(&$sql_data = array()) { global $finished, $import_file, $compression, $charset_conversion, $table; global $ldi_local_option, $ldi_replace, $ldi_ignore, $ldi_terminated, @@ -164,8 +166,8 @@ class ImportLdi extends AbstractImportCsv $sql .= ')'; } - PMA_importRunQuery($sql, $sql); - PMA_importRunQuery(); + PMA_importRunQuery($sql, $sql, $sql_data); + PMA_importRunQuery('', '', $sql_data); $finished = true; } } diff --git a/libraries/plugins/import/ImportMediawiki.php b/libraries/plugins/import/ImportMediawiki.php index eb0223972e..fce1c8687f 100644 --- a/libraries/plugins/import/ImportMediawiki.php +++ b/libraries/plugins/import/ImportMediawiki.php @@ -61,9 +61,11 @@ class ImportMediawiki extends ImportPlugin /** * Handles the whole import logic * + * @param array &$sql_data 2-element array with sql data + * * @return void */ - public function doImport() + public function doImport(&$sql_data = array()) { global $error, $timeout_passed, $finished; @@ -231,7 +233,7 @@ class ImportMediawiki extends ImportPlugin ); // Import the current table data into the database - $this->_importDataOneTable($current_table); + $this->_importDataOneTable($current_table, $sql_data); // Reset table name $cur_table_name = ""; @@ -282,18 +284,20 @@ class ImportMediawiki extends ImportPlugin /** * Imports data from a single table * - * @param array $table containing all table info: - * - * $table[0] - string containing table name - * $table[1] - array[] of table headers - * $table[2] - array[][] of table content rows - * + * @param array $table containing all table info: + * + * $table[0] - string containing table name + * $table[1] - array[] of table headers + * $table[2] - array[][] of table content rows + * + * + * @param array &$sql_data 2-element array with sql data * * @global bool $analyze whether to scan for column types * * @return void */ - private function _importDataOneTable($table) + private function _importDataOneTable($table, &$sql_data) { $analyze = $this->_getAnalyze(); if ($analyze) { @@ -311,11 +315,11 @@ class ImportMediawiki extends ImportPlugin $analyses = array(); $analyses [] = PMA_analyzeTable($tables[0]); - $this->_executeImportTables($tables, $analyses); + $this->_executeImportTables($tables, $analyses, $sql_data); } // Commit any possible data in buffers - PMA_importRunQuery(); + PMA_importRunQuery('', '', $sql_data); } /** @@ -368,12 +372,13 @@ class ImportMediawiki extends ImportPlugin * $analyses = array( * array(array() column_types, array() column_sizes) * ) + * @param array &$sql_data 2-element array with sql data * * @global string $db name of the database to import in * * @return void */ - private function _executeImportTables(&$tables, &$analyses) + private function _executeImportTables(&$tables, &$analyses, &$sql_data) { global $db; @@ -387,7 +392,7 @@ class ImportMediawiki extends ImportPlugin $create = null; // Create and execute necessary SQL statements from data - PMA_buildSQL($db_name, $tables, $analyses, $create, $options); + PMA_buildSQL($db_name, $tables, $analyses, $create, $options, $sql_data); unset($tables); unset($analyses); diff --git a/libraries/plugins/import/ImportOds.php b/libraries/plugins/import/ImportOds.php index 54062b5fb4..7e06ae5df9 100644 --- a/libraries/plugins/import/ImportOds.php +++ b/libraries/plugins/import/ImportOds.php @@ -104,9 +104,11 @@ class ImportOds extends ImportPlugin /** * Handles the whole import logic * + * @param array &$sql_data 2-element array with sql data + * * @return void */ - public function doImport() + public function doImport(&$sql_data = array()) { global $db, $error, $timeout_passed, $finished; @@ -380,13 +382,13 @@ class ImportOds extends ImportPlugin $create = null; /* Created and execute necessary SQL statements from data */ - PMA_buildSQL($db_name, $tables, $analyses, $create, $options); + PMA_buildSQL($db_name, $tables, $analyses, $create, $options, $sql_data); unset($tables); unset($analyses); /* Commit any possible data in buffers */ - PMA_importRunQuery(); + PMA_importRunQuery('', '', $sql_data); } /** diff --git a/libraries/plugins/import/ImportShp.php b/libraries/plugins/import/ImportShp.php index dd72a893b7..1f9435665e 100644 --- a/libraries/plugins/import/ImportShp.php +++ b/libraries/plugins/import/ImportShp.php @@ -57,9 +57,11 @@ class ImportShp extends ImportPlugin /** * Handles the whole import logic * + * @param array &$sql_data 2-element array with sql data + * * @return void */ - public function doImport() + public function doImport(&$sql_data = array()) { global $db, $error, $finished, $compression, $import_file, $local_import_file, $message; @@ -287,7 +289,7 @@ class ImportShp extends ImportPlugin // Created and execute necessary SQL statements from data $null_param = null; - PMA_buildSQL($db_name, $tables, $analyses, $null_param, $options); + PMA_buildSQL($db_name, $tables, $analyses, $null_param, $options, $sql_data); unset($tables); unset($analyses); @@ -296,7 +298,7 @@ class ImportShp extends ImportPlugin $error = false; // Commit any possible data in buffers - PMA_importRunQuery(); + PMA_importRunQuery('', '', $sql_data); } /** diff --git a/libraries/plugins/import/ImportXml.php b/libraries/plugins/import/ImportXml.php index a94ced485f..5dba74b868 100644 --- a/libraries/plugins/import/ImportXml.php +++ b/libraries/plugins/import/ImportXml.php @@ -61,9 +61,11 @@ class ImportXml extends ImportPlugin /** * Handles the whole import logic * + * @param array &$sql_data 2-element array with sql data + * * @return void */ - public function doImport() + public function doImport(&$sql_data = array()) { global $error, $timeout_passed, $finished, $db; @@ -364,13 +366,13 @@ class ImportXml extends ImportPlugin } /* Created and execute necessary SQL statements from data */ - PMA_buildSQL($db_name, $tables, $analyses, $create, $options); + PMA_buildSQL($db_name, $tables, $analyses, $create, $options, $sql_data); unset($analyses); unset($tables); unset($create); /* Commit any possible data in buffers */ - PMA_importRunQuery(); + PMA_importRunQuery('', '', $sql_data); } } diff --git a/libraries/plugins/import/README b/libraries/plugins/import/README index 509df5120f..9ec4df7d50 100644 --- a/libraries/plugins/import/README +++ b/libraries/plugins/import/README @@ -96,9 +96,11 @@ class Import[Name] extends PMA\libraries\plugins\ImportPlugin /** * Handles the whole import logic * + * @param array &$sql_data 2-element array with sql data + * * @return void */ - public function doImport() + public function doImport(&$sql_data = array()) { // get globals (others are optional) global $error, $timeout_passed, $finished; @@ -117,10 +119,10 @@ class Import[Name] extends PMA\libraries\plugins\ImportPlugin $buffer .= $data; } // PARSE $buffer here, post sql queries using: - PMA_importRunQuery($sql, $verbose_sql_with_comments); + PMA_importRunQuery($sql, $verbose_sql_with_comments, $sql_data); } // End of import loop // Commit any possible data in buffers - PMA_importRunQuery(); + PMA_importRunQuery('', '', $sql_data); } From 8bf212f6c321168e8deb050d8dec6e9a2a9a4810 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 11:30:33 +0100 Subject: [PATCH 14/42] Avoid displaying import query twice MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #11907 Signed-off-by: Michal Čihař --- import.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/import.php b/import.php index 6835ebe420..b138089999 100644 --- a/import.php +++ b/import.php @@ -671,9 +671,9 @@ if (! empty($id_bookmark) && $_REQUEST['action_bookmark'] == 2) { htmlspecialchars($_POST['bkm_label']) ); } elseif ($finished && ! $error) { - if ($import_type == 'query') { - $message = PMA\libraries\Message::success(); - } else { + if ($import_type != 'query') { + // Do not display the query with message, we do it separately + $display_query = ';'; $message = PMA\libraries\Message::success( '' . __('Import has been successfully finished, %d queries executed.') From a411cd0ca4a358bb104551bb1a2accc023fa19f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 11:35:36 +0100 Subject: [PATCH 15/42] The cell_align_left is defined in common.inc.php so it should available in all cases MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- libraries/Util.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/libraries/Util.php b/libraries/Util.php index f2124e800d..d8e53d316d 100644 --- a/libraries/Util.php +++ b/libraries/Util.php @@ -1104,12 +1104,8 @@ class Util unset($GLOBALS['using_bookmark_message']); } - // In an Ajax request, $GLOBALS['cell_align_left'] may not be defined. Hence, - // check for it's presence before using it $retval .= '
' . "\n"; if ($message instanceof Message) { From 6d33a475ebe737860639a8276890b1b06be9bd3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 11:37:02 +0100 Subject: [PATCH 16/42] Fixed rendering of messages without SQL query MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It should get rounded boxes at bottom, but didn't get it. Signed-off-by: Michal Čihař --- libraries/Util.php | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/libraries/Util.php b/libraries/Util.php index d8e53d316d..527662c667 100644 --- a/libraries/Util.php +++ b/libraries/Util.php @@ -1099,14 +1099,18 @@ class Util } } + $render_sql = $cfg['ShowSQL'] == true && ! empty($sql_query) && $sql_query !== ';'; + if (isset($GLOBALS['using_bookmark_message'])) { $retval .= $GLOBALS['using_bookmark_message']->getDisplay(); unset($GLOBALS['using_bookmark_message']); } - $retval .= '
' . "\n"; + if ($render_sql) { + $retval .= '
' . "\n"; + } if ($message instanceof Message) { if (isset($GLOBALS['special_message'])) { @@ -1124,7 +1128,7 @@ class Util $retval .= '
'; } - if ($cfg['ShowSQL'] == true && ! empty($sql_query) && $sql_query !== ';') { + if ($render_sql) { // Html format the query to be displayed // If we want to show some sql code it is easiest to create it here /* SQL-Parser-Analyzer */ @@ -1345,9 +1349,10 @@ class Util $retval .= $inline_edit_link . $edit_link . $explain_link . $php_link . $refresh_link; $retval .= '
'; + + $retval .= '
'; } - $retval .= ''; return $retval; } // end of the 'getMessage()' function From 0a2facdfe9a74fa018cfc64477257e55ef69ee50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 11:39:16 +0100 Subject: [PATCH 17/42] Properly use plural for message with number of queries MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- import.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/import.php b/import.php index b138089999..a510bc030d 100644 --- a/import.php +++ b/import.php @@ -676,7 +676,11 @@ if (! empty($id_bookmark) && $_REQUEST['action_bookmark'] == 2) { $display_query = ';'; $message = PMA\libraries\Message::success( '' - . __('Import has been successfully finished, %d queries executed.') + . _ngettext( + 'Import has been successfully finished, %d query executed.', + 'Import has been successfully finished, %d queries executed.', + $executed_queries + ) . '' ); $message->addParam($executed_queries); From ed44120194a5198fddb5bacebaab0f342017267c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 11:40:16 +0100 Subject: [PATCH 18/42] Update po files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [CI skip] Signed-off-by: Michal Čihař --- po/af.po | 600 +++++++++++++++++++++--------------------- po/ar.po | 607 +++++++++++++++++++++---------------------- po/az.po | 603 +++++++++++++++++++++---------------------- po/be.po | 604 +++++++++++++++++++++---------------------- po/be@latin.po | 604 +++++++++++++++++++++---------------------- po/bg.po | 603 +++++++++++++++++++++---------------------- po/bn.po | 603 +++++++++++++++++++++---------------------- po/br.po | 603 +++++++++++++++++++++---------------------- po/brx.po | 600 +++++++++++++++++++++--------------------- po/bs.po | 601 +++++++++++++++++++++--------------------- po/ca.po | 615 ++++++++++++++++++++++--------------------- po/ckb.po | 605 +++++++++++++++++++++---------------------- po/cs.po | 608 +++++++++++++++++++++---------------------- po/cy.po | 612 +++++++++++++++++++++---------------------- po/da.po | 603 +++++++++++++++++++++---------------------- po/de.po | 605 ++++++++++++++++++++++--------------------- po/el.po | 611 +++++++++++++++++++++---------------------- po/en_GB.po | 603 +++++++++++++++++++++---------------------- po/eo.po | 600 +++++++++++++++++++++--------------------- po/es.po | 606 +++++++++++++++++++++---------------------- po/et.po | 611 +++++++++++++++++++++---------------------- po/eu.po | 603 +++++++++++++++++++++---------------------- po/fa.po | 600 +++++++++++++++++++++--------------------- po/fi.po | 644 ++++++++++++++++++++++------------------------ po/fr.po | 608 +++++++++++++++++++++---------------------- po/fy.po | 600 +++++++++++++++++++++--------------------- po/gl.po | 603 +++++++++++++++++++++---------------------- po/gu.po | 600 +++++++++++++++++++++--------------------- po/he.po | 603 +++++++++++++++++++++---------------------- po/hi.po | 603 +++++++++++++++++++++---------------------- po/hr.po | 604 +++++++++++++++++++++---------------------- po/hu.po | 604 +++++++++++++++++++++---------------------- po/hy.po | 603 +++++++++++++++++++++---------------------- po/ia.po | 608 +++++++++++++++++++++---------------------- po/id.po | 602 +++++++++++++++++++++---------------------- po/it.po | 606 +++++++++++++++++++++---------------------- po/ja.po | 602 +++++++++++++++++++++---------------------- po/ka.po | 599 +++++++++++++++++++++--------------------- po/kk.po | 600 +++++++++++++++++++++--------------------- po/km.po | 599 +++++++++++++++++++++--------------------- po/kn.po | 600 +++++++++++++++++++++--------------------- po/ko.po | 606 +++++++++++++++++++++---------------------- po/ksh.po | 601 +++++++++++++++++++++--------------------- po/ky.po | 600 +++++++++++++++++++++--------------------- po/li.po | 600 +++++++++++++++++++++--------------------- po/lt.po | 604 +++++++++++++++++++++---------------------- po/lv.po | 604 +++++++++++++++++++++---------------------- po/mk.po | 600 +++++++++++++++++++++--------------------- po/ml.po | 600 +++++++++++++++++++++--------------------- po/mn.po | 603 +++++++++++++++++++++---------------------- po/ms.po | 599 +++++++++++++++++++++--------------------- po/nb.po | 603 +++++++++++++++++++++---------------------- po/ne.po | 600 +++++++++++++++++++++--------------------- po/nl.po | 611 +++++++++++++++++++++---------------------- po/pa.po | 600 +++++++++++++++++++++--------------------- po/phpmyadmin.pot | 600 +++++++++++++++++++++--------------------- po/pl.po | 604 +++++++++++++++++++++---------------------- po/pt.po | 603 +++++++++++++++++++++---------------------- po/pt_BR.po | 631 ++++++++++++++++++++++----------------------- po/ro.po | 604 +++++++++++++++++++++---------------------- po/ru.po | 604 +++++++++++++++++++++---------------------- po/si.po | 603 +++++++++++++++++++++---------------------- po/sk.po | 604 +++++++++++++++++++++---------------------- po/sl.po | 617 ++++++++++++++++++++++---------------------- po/sq.po | 606 +++++++++++++++++++++---------------------- po/sr.po | 604 +++++++++++++++++++++---------------------- po/sr@latin.po | 604 +++++++++++++++++++++---------------------- po/sv.po | 606 +++++++++++++++++++++---------------------- po/ta.po | 603 +++++++++++++++++++++---------------------- po/te.po | 600 +++++++++++++++++++++--------------------- po/th.po | 602 +++++++++++++++++++++---------------------- po/tk.po | 600 +++++++++++++++++++++--------------------- po/tr.po | 611 +++++++++++++++++++++---------------------- po/tt.po | 599 +++++++++++++++++++++--------------------- po/ug.po | 602 +++++++++++++++++++++---------------------- po/uk.po | 604 +++++++++++++++++++++---------------------- po/ur.po | 603 +++++++++++++++++++++---------------------- po/uz.po | 603 +++++++++++++++++++++---------------------- po/uz@latin.po | 602 +++++++++++++++++++++---------------------- po/vi.po | 606 +++++++++++++++++++++---------------------- po/vls.po | 600 +++++++++++++++++++++--------------------- po/zh_CN.po | 602 +++++++++++++++++++++---------------------- po/zh_TW.po | 605 +++++++++++++++++++++---------------------- 83 files changed, 25106 insertions(+), 25055 deletions(-) diff --git a/po/af.po b/po/af.po index baa4f39381..b4d1cb7b3a 100644 --- a/po/af.po +++ b/po/af.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:30+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Afrikaans %2$s" msgstr[0] "%s resultate binne tabel %s" msgstr[1] "%s resultate binne tabel %s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3765,16 +3768,16 @@ msgstr "Velde" msgid "Search this table" msgstr "Soek in databasis" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Begin" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3783,8 +3786,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Vorige" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -3793,8 +3796,8 @@ msgctxt "Next page" msgid "Next" msgstr "Volgende" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3879,7 +3882,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Jou SQL-navraag is suksesvol uitgevoer." @@ -3914,7 +3917,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3922,7 +3925,7 @@ msgid "With selected:" msgstr "Met gekose:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4006,15 +4009,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4081,8 +4084,8 @@ msgid "Keyname" msgstr "Sleutelnaam" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4131,15 +4134,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Verwyder" @@ -4150,7 +4153,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4200,8 +4203,8 @@ msgid "Table" msgstr "Tabel" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4209,25 +4212,25 @@ msgstr "Tabel" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Soek" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Voeg by" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4235,24 +4238,24 @@ msgid "Privileges" msgstr "Regte" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operasies" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4263,16 +4266,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Navraag dmv Voorbeeld" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4280,18 +4283,18 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4306,35 +4309,35 @@ msgid "User accounts" msgstr "Gebruiker" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 #, fuzzy msgid "Binary log" msgstr "Biner" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4932,16 +4935,16 @@ msgstr "totaal" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4952,38 +4955,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL het gepraat: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Verduidelik SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Ignoreer SQL Verduideliking" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Sonder PHP Kode" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Doen Navraag" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Skep PHP Kode" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -4991,67 +4994,67 @@ msgid "Edit inline" msgstr "Drukker mooi (print view)" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "So" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Maak Leeg" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 #, fuzzy #| msgid "User" msgid "Users" @@ -5193,41 +5196,41 @@ msgstr "Voeg 'n nuwe veld by" msgid "Attributes" msgstr "Kenmerke" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format msgid "Server %d" msgstr "Bediener Keuse" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5235,24 +5238,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5949,7 +5952,7 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -5957,7 +5960,7 @@ msgstr "Velde omring met" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -5977,14 +5980,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Lyne beeindig deur" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8060,7 +8063,7 @@ msgid "Table %s has been emptied." msgstr "Tabel %s is leeg gemaak." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format msgid "View %s has been dropped." msgstr "Veld %s is verwyder" @@ -8196,8 +8199,8 @@ msgid "No data to display" msgstr "Geen databasisse" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8241,57 +8244,57 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "Databasis %s is verwyder." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query" msgid "Query error" msgstr "Navraag dmv Voorbeeld" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Verander" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Volteks" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -8301,7 +8304,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Geen verandering" @@ -9085,55 +9088,55 @@ msgstr "MySQL het niks teruggegee nie (dus nul rye)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Geen databasisse" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Geen databasisse" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Slegs struktuur" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9183,56 +9186,56 @@ msgstr "Of" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Voeg by" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Voeg by as 'n nuwe ry" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Terug na vorige bladsy" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Voeg 'n nuwe ry by" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 #, fuzzy msgid "Go back to this page" msgstr "Terug na vorige bladsy" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9244,11 +9247,11 @@ msgstr "" msgid "Value" msgstr "Waarde" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10114,7 +10117,7 @@ msgstr "Herstel tabel" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10130,33 +10133,33 @@ msgid "Delete the table (DROP)" msgstr "Geen databasisse" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 #, fuzzy msgid "Repair" msgstr "Herstel tabel" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10184,37 +10187,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Toets referential integrity:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s is geskuif na %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabel %s is gekopieer na %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Die tabel naam is leeg!" @@ -10395,7 +10398,7 @@ msgstr "Databasis statistieke" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Stort data vir tabel" @@ -10420,14 +10423,14 @@ msgstr "geen Beskrywing" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tabel struktuur vir tabel" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10435,7 +10438,7 @@ msgstr "Slegs struktuur" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10545,7 +10548,7 @@ msgid "Database:" msgstr "Databasis" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10655,7 +10658,7 @@ msgid "Data creation options" msgstr "Databasis statistieke" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10724,7 +10727,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10769,56 +10772,56 @@ msgstr "in gebruik" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "Binne tabel(le):" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Binne tabel(le):" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Slegs struktuur" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10870,33 +10873,33 @@ msgstr "" msgid "Column names: " msgstr "Kolom name" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10904,7 +10907,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -10917,15 +10920,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -10935,23 +10938,23 @@ msgstr "Dokumentasie" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -13857,15 +13860,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "With selected:" @@ -13880,17 +13879,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "With selected:" msgid "An alias was expected." @@ -13912,19 +13912,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -13952,17 +13952,17 @@ msgstr "Tabel %s is verwyder" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "By Begin van Tabel" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13983,17 +13983,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14686,7 +14686,7 @@ msgstr "Sien die storting (skema) van die tabel" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15765,7 +15765,7 @@ msgid "at beginning of table" msgstr "By Begin van Tabel" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy msgid "Partitions" msgstr "Operasies" @@ -15808,7 +15808,7 @@ msgstr "Operasies" msgid "Edit partitioning" msgstr "Drukker mooi (print view)" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -15940,12 +15940,12 @@ msgstr "" msgid "Column names" msgstr "Kolom name" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Hernoem tabel na" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Geen databasisse" diff --git a/po/ar.po b/po/ar.po index 00cab54323..88dafb867e 100644 --- a/po/ar.po +++ b/po/ar.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Arabic %s" msgstr[4] "%s مطابقة في الجدول %s" msgstr[5] "%s مطابقة في الجدول %s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3717,30 +3725,30 @@ msgstr "مرشح" msgid "Search this table" msgstr "بحث في قاعدة البيانات" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "بداية" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "سابق" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "التالي" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "نهاية" @@ -3817,7 +3825,7 @@ msgstr "ممكن أن يكون تقريبي. أنظر إلى [doc@faq3-11]الأ #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3857,7 +3865,7 @@ msgid "Query took %01.4f seconds." msgstr "استغرق الاستعلام %01.4f ثانية" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3865,7 +3873,7 @@ msgid "With selected:" msgstr "مع المحدد:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3951,17 +3959,17 @@ msgstr "رفع الملف إستوقف من قبل الامتداد." msgid "Unknown error in file upload." msgstr "خطأ غير معروف عند رفع الملف." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "خطأ عند نقل الملف المرفوع , إنظر :[doc@faq1-11]FAQ 1.11[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "خطأ عند نقل الملف المرفوع." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -4029,8 +4037,8 @@ msgid "Keyname" msgstr "اسم المفتاح" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4078,15 +4086,15 @@ msgstr "لقد تم حذف المفتاح الأساسي." msgid "Index %s has been dropped." msgstr "تم حذف الفهرس %s." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "سقّط" @@ -4097,7 +4105,7 @@ msgid "" "removed." msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحدهما." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4147,8 +4155,8 @@ msgid "Table" msgstr "الجدول" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4156,25 +4164,25 @@ msgstr "الجدول" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "إبحث" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "إدخال" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4182,24 +4190,24 @@ msgid "Privileges" msgstr "الإمتيازات" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "عمليات" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "تتبع" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4210,16 +4218,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "قاعدة البيانات فارغة!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "استعلام بواسطة مثال" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4227,18 +4235,18 @@ msgstr "" msgid "Events" msgstr "أحداث" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "المصمم" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "عواميد منطقة النص" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4253,34 +4261,34 @@ msgid "User accounts" msgstr "المستخدمون" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "سجل ثنائي" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "إستنساخ" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "متغيرات" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "مجموعات المحارف" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "محركات" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "القوابس" @@ -4899,18 +4907,18 @@ msgstr "" msgid "Max: %s%s" msgstr "كبير: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "بيانات ثابتة" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4921,38 +4929,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL قال: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "شرح SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "تخطي شرح SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "بدون كود PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "إرسال الإستعلام" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "أنشئ كود PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -4960,69 +4968,69 @@ msgid "Edit inline" msgstr "وضع التعديل" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "الأحد" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y الساعة %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s يوم، %s ساعة، %s دقيقة و%s ثانية" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "مدخلات مفقودة:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "الذهاب إلى قاعدة البيانات \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "إنّ ال %s الوظيفية هي مصابة بعطل معروف، أنظر إلى %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "إضغط للإختيار" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "تصفح حاسبك:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "إختر مجلد الرفع من الخادم %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "لا يمكن الوصول إلى الدليل اللذي عينته لعمل التحميل." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "لايوجد أي ملفات لرفعها" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "إفراغ" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "تنفيذ" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "المستخدمون" @@ -5162,44 +5170,44 @@ msgstr "إضافة عمود" msgid "Attributes" msgstr "الخواص" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to read configuration file!" msgstr "فشل قراءة ملف الإعدادات" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "يبدو أن هناك خطأ في بناء الجملة." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "لا يمكن تحميل الإعدادات الإفتراضية من : %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "فهرس خادم غير صحيح: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "إسم المضيف غير صحيح للخادم %1$s." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "خادم" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "اسلوب مصادقة غير صحيح في الإعدادات:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5207,24 +5215,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "عليك الترقية إلى %s%s أو لاحقا." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "إستغلال محتمل" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "الكشف عن مفتاح رقمي" @@ -5965,7 +5973,7 @@ msgstr "ضع أسماء الحقول في السطر الأول" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Columns enclosed with:" msgid "Columns enclosed with" @@ -5973,7 +5981,7 @@ msgstr "حقل محاط بـ" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -5995,14 +6003,14 @@ msgstr "حذف CRLF من الأعمدة" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "خطوط تنتهي بـ" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8190,7 +8198,7 @@ msgid "Table %s has been emptied." msgstr "تم إفراغ محتويات الجدول %s." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8334,8 +8342,8 @@ msgid "No data to display" msgstr "لايوجد بيانات" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8389,55 +8397,55 @@ msgstr[5] "" msgid "No column selected." msgstr "لايوجد صفوف مختارة" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "تم حذف المستخدمين المحددين بنجاح." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "خطأ في الإستعلام" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "تغيير" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "فهرست" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "النص كاملا" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8449,7 +8457,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "لا تغييرات" @@ -9233,58 +9241,58 @@ msgstr "قام MySQL بإرجاع نتيجة فارغة." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "لايوجد قواعد بيانات" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "بيانات مفقودة لـ %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "اذهب إلى الجدول" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "البنية فقط" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9334,53 +9342,53 @@ msgstr "أو" msgid "web server upload directory:" msgstr "دليل تحميل الملفات على خادم الشبكة" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "تحرير/إدخال" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "وبعدها" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "إدخال كتسجيل جديد" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "الرجوع إلى الصفحة السابقة" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "إدخال تسجيل جديد" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "ارجع إلى هذه الصفحة" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "عدل الصف التالي" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9392,11 +9400,11 @@ msgstr "" msgid "Value" msgstr "القيمة" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10289,7 +10297,7 @@ msgstr "إصلاح الجدول" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "حذف البيانات او الجدول" @@ -10302,32 +10310,32 @@ msgid "Delete the table (DROP)" msgstr "حذف الجدول (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "حلل" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "تحقق" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "تحسين" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "إعادة بناء" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "إصلاح" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10355,37 +10363,37 @@ msgstr "إزالة التقسيم" msgid "Check referential integrity:" msgstr "تحديد التكامل المرجعي:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "لايمكن نقل الجدول إلى نفسه!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "لا يمكن نسخ الجدول إلى نفسه!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "%s جدول تم نقله إلى %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "الجدول %s لقد تم نسخه إلى %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "اسم الجدول فارغ!" @@ -10574,7 +10582,7 @@ msgstr "خيارات تصدير قاعدة بيانات" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "إرجاع أو استيراد بيانات الجدول" @@ -10600,21 +10608,21 @@ msgstr "الوصف" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "بنية الجدول" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10730,7 +10738,7 @@ msgid "Database:" msgstr "قاعدة البيانات" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10846,7 +10854,7 @@ msgid "Data creation options" msgstr "خيارات التحويل" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10915,7 +10923,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10961,60 +10969,60 @@ msgstr "قيد الإستعمال" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "قيود الجداول المحفوظة" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "القيود للجدول" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "قيود الجداول المحفوظة" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "داخل الجداول:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "لاتستعمل AUTO_INCREMENT للقيم الصفرية" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "أضف قيمة AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11070,33 +11078,33 @@ msgstr "" msgid "Column names: " msgstr "اسم العمود" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11104,7 +11112,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "جدول ميدياويكي" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -11117,15 +11125,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11135,23 +11143,23 @@ msgstr "مستند مفتوح" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -14250,15 +14258,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14273,17 +14277,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14305,19 +14310,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14350,17 +14355,17 @@ msgstr "تم إنشاء الإجراء %1$s." msgid "Variable name was expected." msgstr "إسم قالب الجدول" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "في بداية الجدول" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14383,17 +14388,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "لقد تمّ حذف الصّف" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15096,7 +15101,7 @@ msgstr "عرض بنية الجدول" msgid "Invalid table name" msgstr "اسم الجدول غير صالح" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16222,7 +16227,7 @@ msgid "at beginning of table" msgstr "في بداية الجدول" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16271,7 +16276,7 @@ msgstr "مقسم" msgid "Edit partitioning" msgstr "إزالة التقسيم" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16402,11 +16407,11 @@ msgstr "اسم VIEW" msgid "Column names" msgstr "اسم العمود" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "أعد تسمية العرض الـ" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Delete the table (DROP)" msgid "Delete the view (DROP)" diff --git a/po/az.po b/po/az.po index e0aad1b9a4..f2fb900ec1 100644 --- a/po/az.po +++ b/po/az.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-05-21 01:04+0200\n" "Last-Translator: Sevdimali İsa \n" "Language-Team: Azerbaijani %2$s" 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:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3541,30 +3545,30 @@ msgstr "Sətirləri filtrlə" msgid "Search this table" msgstr "Bu cədvəldə axtar" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Başlanğıc" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Əvvəlki" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Sonrakı" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Son" @@ -3637,7 +3641,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "SQL sorğunuz müvəffəqiyyətlə icra edilmişdir." @@ -3672,7 +3676,7 @@ msgid "Query took %01.4f seconds." msgstr "sorğu %01.4f saniyədə icra edildi." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3680,7 +3684,7 @@ msgid "With selected:" msgstr "Seçilənləri:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3758,15 +3762,15 @@ msgstr "Fayl yükləmə genişlənməsinə görə dayandırrıldı." msgid "Unknown error in file upload." msgstr "Faylın yüklənməsi zamanı naməlum xəta baş verdi." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Yüklənən fayl daşınarkən xəta oldu." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -3832,8 +3836,8 @@ msgid "Keyname" msgstr "Açar söz" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3881,15 +3885,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Ləğv et" @@ -3900,7 +3904,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3950,8 +3954,8 @@ msgid "Table" msgstr "Cədvəl" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3959,25 +3963,25 @@ msgstr "Cədvəl" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Axtarış" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Əlavə et" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3985,24 +3989,24 @@ msgid "Privileges" msgstr "Səlahiyyətlər" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Əməliyyatlar" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "İzləmə" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4013,16 +4017,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "Verilənlər Bazası boş olaraq görsənir!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Sorğu" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutinlər" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4030,16 +4034,16 @@ msgstr "Rutinlər" msgid "Events" msgstr "Hadisələr" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Dizayner" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Orta sütunlar" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4054,34 +4058,34 @@ msgid "User accounts" msgstr "İstifadəçi qrupları" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binar logu" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: 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:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Dəyişənlər" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "kodlaşdırma" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Motorlar" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Qoşmalar" @@ -4677,16 +4681,16 @@ msgstr "Fəza" msgid "Max: %s%s" msgstr "Ən çox: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4697,104 +4701,104 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL deyir: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL-i İzah Et" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "SQL İzah Et-i Keç" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP Kodunu Göstərmə" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Sorğunu göndər" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP Kodunu Hazırla" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Sətir içi redaktə" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Baz" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y saat %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s gün, %s saat, %s dəqiqə və %s saniyə" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Əskik parametrlər:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "\"%s\" verilənlər bazasına keç." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s Funksionallıq bilinən bir xəta tərəfindən zədələnib, baxın %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Dəyişmək üçün tıklayın" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Kompüterindən seç:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Web server upload direktoriyasından%s seçin:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Yüklənəcək fayl yoxdur!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Boşalt" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "İcra et" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "İstifadəçilər" @@ -4922,43 +4926,43 @@ msgstr "Yeni sütun əlavə et" msgid "Attributes" msgstr "Xüsusiyyətlər" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Konfiqurasiya faylını oxuma uğursuz oldu!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "İlkin konfiqurasiya burdan yüklənə bilmədi: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Uyğun olmayan server indeksi: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s. serveri üçün uyğun olmayan hostname. Zəhmət olmasa server " "konfiqurasiyalarını gözdən keçirin." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4966,24 +4970,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s vəya yenisinə yüksəltməlisiniz." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5664,13 +5668,13 @@ msgstr "Sütun adlarını ilk sətrə qoy" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Sütunların əhatə edildiyi işarə" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Sahələrin escape edildiyi işarə" @@ -5688,12 +5692,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Sütunlar bununla sonlandırılıb(Columns terminated by)" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Sətirlər bununla ləğv edilib(Lines terminated by)" @@ -7741,7 +7745,7 @@ msgid "Table %s has been emptied." msgstr "%s cədvəli boşaldıldı." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "%s görünüşünü yığışdır." @@ -7876,8 +7880,8 @@ 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:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7920,53 +7924,53 @@ msgstr[1] "Sütün adı '%s' MySQL'ə ayrılmış açar kəlimədir." msgid "No column selected." msgstr "Sütun seçilməmişdir." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Sütunlar uğurlu şəkildə daşındı." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Sorğu xətası" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Dəyişdir" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "İndeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Tam metn (Fulltext)" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Fərdi qiymətlər" @@ -7976,7 +7980,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Deyişiklik Yoxdur" @@ -8732,54 +8736,54 @@ msgstr "MySQL boş nəticə çoxluğu göndərdi(yəni sıfır sətir)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "%s Verilənlər Bazasına get" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "%s Cədvəlinə get" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s Strukturu" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8825,53 +8829,53 @@ msgstr "ya da" msgid "web server upload directory:" msgstr "web-server upload direktoriyası:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Redaktə et/Əlavə et" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Yeni sətir olaraq əlavə et" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Evvelki sehifeye qayıt" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Teze bir setir daha gir" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Bu sehifeye geri dön" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Bir sonrakı setre keç" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8883,11 +8887,11 @@ msgstr "" msgid "Value" msgstr "Dəyər" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9731,7 +9735,7 @@ msgstr "Cedveli te'mir et" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Cədvəl və ya veriləni sil" @@ -9744,32 +9748,32 @@ msgid "Delete the table (DROP)" msgstr "Cədvəli sil(DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analiz et" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Yoxlama" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimallaşdır" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Yenidən Qur" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Təmir et" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9797,36 +9801,36 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Cedveli eynisinin üzerine kopyalaya bilmerem!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "%s cədvəli %s - ə daşınmışdır." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, fuzzy, php-format msgid "Table %s has been copied to %s." msgstr "%s cədvəli %s - ə kopyalandı." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Cedveli adı boşdur!" @@ -10009,7 +10013,7 @@ msgstr "Data Dump seçimləri" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Sxemi çıxarılan cedvel" @@ -10033,21 +10037,21 @@ msgstr "Tərif" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Cədvəl üçün cədvəl strukturu" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Görünüş strukturu" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10137,7 +10141,7 @@ msgid "Database:" msgstr "Verilənlər Bazası:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Verilən:" @@ -10235,7 +10239,7 @@ msgid "Data creation options" msgstr "Verilən yaratma seçimləri" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10304,7 +10308,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10350,56 +10354,56 @@ msgstr "istifadede" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "Inside table(s):" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Cədvəl üçün indekslər" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT deyeri elave et" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "Cədvəl üçün AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "Cədvəl Əlaqələri" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Verilənlərin oxunması xətası:" @@ -10449,33 +10453,33 @@ msgstr "" msgid "Column names: " msgstr "Sütun adları: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10483,7 +10487,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -10496,15 +10500,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -10514,23 +10518,23 @@ msgstr "Dokumentasiya" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -13436,15 +13440,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -13459,17 +13459,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -13491,23 +13492,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Açıq olan cədvəl sayı." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Açıq olan cədvəl sayı." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -13540,17 +13541,17 @@ msgstr "%1$s hadisəsi yaradıldı." msgid "Variable name was expected." msgstr "Cədvəl adı şablonu" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Cədvəlin başına" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13573,19 +13574,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14272,7 +14273,7 @@ msgstr "Cedvelin sxemini göster" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15290,7 +15291,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:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15339,7 +15340,7 @@ msgstr "bölündü" msgid "Edit partitioning" msgstr "bölündü" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Redaktə görünuşü" @@ -15462,12 +15463,12 @@ msgstr "" msgid "Column names" msgstr "Sütun adları" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Cedveli yeniden adlandır" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." diff --git a/po/be.po b/po/be.po index d730c8a851..712d3a85ee 100644 --- a/po/be.po +++ b/po/be.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-05-15 14:28+0200\n" "Last-Translator: Viktar Palstsiuk \n" "Language-Team: Belarusian %2$s" msgstr[0] "%s супадзеньняў у табліцы %s" msgstr[1] "%s супадзеньняў у табліцы %s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3904,16 +3909,16 @@ msgstr "Файлы" msgid "Search this table" msgstr "Пошук у базе дадзеных" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Першая старонка" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3922,8 +3927,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Папярэдняя старонка" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -3932,8 +3937,8 @@ msgctxt "Next page" msgid "Next" msgstr "Наступная старонка" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -4020,7 +4025,7 @@ msgstr "Значэньне можа быць прыблізным. Гл. [doc@fa #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4060,7 +4065,7 @@ msgid "Query took %01.4f seconds." msgstr "Запыт выконваўся %01.4f сэк" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -4068,7 +4073,7 @@ msgid "With selected:" msgstr "З адзначанымі:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4158,7 +4163,7 @@ msgstr "Загрузка файла спыненая пашырэньнем." msgid "Unknown error in file upload." msgstr "Падчас загрузкі файла адбылася невядомая памылка." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -4166,11 +4171,11 @@ msgstr "" "Памылка перамяшчэньня загружанага файла. Глядзіце разьдзел [doc@faq1-11]1.11 " "у FAQ[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4238,8 +4243,8 @@ msgid "Keyname" msgstr "Імя ключа" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4287,15 +4292,15 @@ msgstr "Першасны ключ быў выдалены." msgid "Index %s has been dropped." msgstr "Індэкс %s быў выдалены." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Выдаліць" @@ -4308,7 +4313,7 @@ msgstr "" "Падобна, што індэксы %1$s і %2$s зьяўляюцца аднолькавымі, а таму адзін зь " "іх, магчыма, можна выдаліць." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4358,8 +4363,8 @@ msgid "Table" msgstr "Табліца" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4367,25 +4372,25 @@ msgstr "Табліца" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Пошук" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Уставіць" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4393,24 +4398,24 @@ msgid "Privileges" msgstr "Прывілеі" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Апэрацыі" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4421,16 +4426,16 @@ msgstr "Трыгеры" msgid "Database seems to be empty!" msgstr "База дадзеных — пустая!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Запыт згодна прыкладу" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Працэдуры" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4438,18 +4443,18 @@ msgstr "Працэдуры" msgid "Events" msgstr "Падзеі" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Дызайнэр" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4464,34 +4469,34 @@ msgid "User accounts" msgstr "Карыстальнік" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Двайковы лог" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Рэплікацыя" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Зьменныя" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Кадыроўкі" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Машыны" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -5107,16 +5112,16 @@ msgstr "Колькасьць файлаў логу" msgid "Max: %s%s" msgstr "Максымальны памер: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5127,38 +5132,38 @@ msgstr "" msgid "MySQL said: " msgstr "Адказ MySQL: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Тлумачыць SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Не тлумачыць SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Без PHP-коду" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Выканаць запыт" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Стварыць PHP-код" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5166,72 +5171,72 @@ msgid "Edit inline" msgstr "Дадаць новае поле" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Ндз" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дзён, %s гадзінаў, %s хвілінаў і %s сэкундаў" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Працэдуры" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Перайсьці да базы дадзеных \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Існуе вядомая памылка з выкарыстаньнем парамэтра %s, глядзіце апісаньне на %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 #, fuzzy msgid "There are no files to upload!" msgstr "Праверыць табліцу" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Ачысьціць" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 #, fuzzy #| msgid "User" msgid "Users" @@ -5375,47 +5380,47 @@ msgstr "Дадаць %s новыя палі" msgid "Attributes" msgstr "Атрыбуты" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file!" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Некарэктны індэкс сэрвэра: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Няправільнае імя хосту для сэрвэра %1$s. Калі ласка, праверце канфігурыцыю." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Сэрвэр" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "У канфігурацыі вызначаны некарэктны мэтад аўтэнтыфікацыі:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5423,24 +5428,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазьнейшай." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6153,7 +6158,7 @@ msgstr "Пазначыць назвы палёў у першым радку" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6161,7 +6166,7 @@ msgstr "Палі ўзятыя ў" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6183,14 +6188,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Радкі падзеленыя" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8346,7 +8351,7 @@ msgid "Table %s has been emptied." msgstr "Табліца %s была ачышчаная." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8488,8 +8493,8 @@ msgid "No data to display" msgstr "Базы дадзеных адсутнічаюць" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8539,57 +8544,57 @@ msgstr[2] "" msgid "No column selected." msgstr "Ніводны радок ня выбраны" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Тып запыту" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Зьмяніць" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Індэкс" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Поўнатэкстэкставае" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8601,7 +8606,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Няма зьменаў" @@ -9471,56 +9476,56 @@ msgstr "MySQL вярнула пусты вынік (то бок нуль рад msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Толькі структуру" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Тып экспарту" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9571,52 +9576,52 @@ msgstr "Або" msgid "web server upload directory:" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Уставіць" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Пачаць устаўку зноў з %s-га радку" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "і пасьля" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Уставіць як новы радок" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 #, fuzzy msgid "Show insert query" msgstr "У выглядзе SQL-запыту" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Перайсьці да папярэдняй старонкі" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Дадаць яшчэ адзін радок" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Вярнуцца да гэтай старонкі" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Рэдагаваць наступны радок" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9626,7 +9631,7 @@ msgstr "" "Выкарыстоўвайце клявішу TAB для перамяшчэньня ад значэньня да значэньня або " "CTRL+стрэлкі для перамяшчэньня ў любое іншае месца" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9638,11 +9643,11 @@ msgstr "" msgid "Value" msgstr "Значэньне" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "У выглядзе SQL-запыту" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "ID устаўленага радку: %1$d" @@ -10535,7 +10540,7 @@ msgstr "Рамантаваць табліцу" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10551,32 +10556,32 @@ msgid "Delete the table (DROP)" msgstr "Базы дадзеных адсутнічаюць" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Прааналізаваць" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Праверыць" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Аптымізаваць" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Перабудаваць" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Адрамантаваць" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10603,37 +10608,37 @@ msgstr "Скасаваць падзел на часткі" msgid "Check referential integrity:" msgstr "Праверыць цэласнасьць дадзеных:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Немагчыма перанесьці табліцу ў саму сябе!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Немагчыма скапіяваць табліцу ў саму сябе!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Табліца %s была перанесеная ў %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Табліца %s была скапіяваная ў %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Пустая назва табліцы!" @@ -10830,7 +10835,7 @@ msgstr "Налады экспарту базы дадзеных" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Дамп дадзеных табліцы" @@ -10856,21 +10861,21 @@ msgstr "Апісаньне" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Структура табліцы" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Структура для прагляду" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Замяняльная структура для прагляду" @@ -10988,7 +10993,7 @@ msgid "Database:" msgstr "База дадзеных" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11104,7 +11109,7 @@ msgid "Data creation options" msgstr "Опцыі пераўтварэньня" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11173,7 +11178,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11219,61 +11224,61 @@ msgstr "выкарыстоўваецца" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Абмежаваньні для экспартаваных табліц" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Абмежаваньні для табліцы" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Абмежаваньні для экспартаваных табліц" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "У табліцы(ах):" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME-тыпы табліцы" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "Сувязі ў табліцы" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Структура для прагляду" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11330,34 +11335,34 @@ msgstr "" msgid "Column names: " msgstr "Назвы калёнак" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Недапушчальны парэмэтар для імпарту дадзеных у CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Некарэктны фармат CSV-дадзеных у радку %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Няправільная колькасьць палёў у CSV-дадзеных у радку %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Гэты плагін не падтрымлівае сьціснутыя дадзеныя!" @@ -11365,7 +11370,7 @@ msgstr "Гэты плагін не падтрымлівае сьціснутыя msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." @@ -11379,15 +11384,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11397,23 +11402,23 @@ msgstr "Спэцыфікацыя Open Document" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -14678,15 +14683,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14701,17 +14702,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14733,23 +14735,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Колькасьць адкрытых табліц." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Колькасьць адкрытых табліц." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14779,17 +14781,17 @@ msgstr "Табліца %1$s створаная." msgid "Variable name was expected." msgstr "Шаблён назвы файла" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "У пачатку табліцы" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14810,19 +14812,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Радок быў выдалены" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15539,7 +15541,7 @@ msgstr "Праглядзець дамп (схему) табліцы" msgid "Invalid table name" msgstr "Некарэктнае імя табліцы" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16679,7 +16681,7 @@ msgid "at beginning of table" msgstr "У пачатку табліцы" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16728,7 +16730,7 @@ msgstr "падзеленая на сэкцыі" msgid "Edit partitioning" msgstr "Скасаваць падзел на часткі" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16863,12 +16865,12 @@ msgstr "Назва прагляду" msgid "Column names" msgstr "Назвы калёнак" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Перайменаваць табліцу ў" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Базы дадзеных адсутнічаюць" diff --git a/po/be@latin.po b/po/be@latin.po index 62d8ef28ca..535a44c871 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Belarusian (latin) %s:" msgstr "tečka web-servera dla zahruzki fajłaŭ" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Ačyścić" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 #, fuzzy #| msgid "User" msgid "Users" @@ -5424,48 +5429,48 @@ msgstr "Dadać %s novyja pali" msgid "Attributes" msgstr "Atrybuty" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file!" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Niekarektny indeks servera: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Niapravilnaje imia chostu dla servera %1$s. Kali łaska, praviercie " "kanfihurycyju." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Server" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "U kanfihuracyi vyznačany niekarektny metad aŭtentyfikacyi:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5473,24 +5478,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format 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:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6202,7 +6207,7 @@ msgstr "Paznačyć nazvy paloŭ u pieršym radku" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6210,7 +6215,7 @@ msgstr "Pali ŭziatyja ŭ" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6232,14 +6237,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Radki padzielenyja" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8390,7 +8395,7 @@ msgid "Table %s has been emptied." msgstr "Tablica %s była ačyščanaja." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8533,8 +8538,8 @@ msgid "No data to display" msgstr "Bazy dadzienych adsutničajuć" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8585,57 +8590,57 @@ msgstr[2] "" msgid "No column selected." msgstr "Nivodny radok nia vybrany" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Typ zapytu" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Źmianić" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Poŭnatekstekstavaje" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8647,7 +8652,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Niama źmienaŭ" @@ -9524,57 +9529,57 @@ msgstr "MySQL viarnuła pusty vynik (to bok nul radkoŭ)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "Bazy dadzienych adsutničajuć" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "No tables" msgid "Go to table: %s" msgstr "Niama tablic" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tolki strukturu" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9625,51 +9630,51 @@ msgstr "Abo" msgid "web server upload directory:" msgstr "tečka web-servera dla zahruzki fajłaŭ" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Ustavić" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, 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:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "i paśla" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Ustavić jak novy radok" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Pierajści da papiaredniaj staronki" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Dadać jašče adzin radok" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Viarnucca da hetaj staronki" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Redagavać nastupny radok" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9679,7 +9684,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9691,11 +9696,11 @@ msgstr "" msgid "Value" msgstr "Značeńnie" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "U vyhladzie SQL-zapytu" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "ID ustaŭlenaha radku: %1$d" @@ -10591,7 +10596,7 @@ msgstr "Ramantavać tablicu" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10608,32 +10613,32 @@ msgid "Delete the table (DROP)" msgstr "Kapijavać bazu dadzienych u" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Praanalizavać" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Pravieryć" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Aptymizavać" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Pierabudavać" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Adramantavać" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10659,37 +10664,37 @@ msgstr "Skasavać padzieł na častki" msgid "Check referential integrity:" msgstr "Pravieryć cełasnaść dadzienych:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Niemahčyma pieranieści tablicu ŭ samu siabie!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Niemahčyma skapijavać tablicu ŭ samu siabie!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tablica %s była pieraniesienaja ŭ %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tablica %s była skapijavanaja ŭ %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Pustaja nazva tablicy!" @@ -10888,7 +10893,7 @@ msgstr "Nałady ekspartu bazy dadzienych" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Damp dadzienych tablicy" @@ -10914,21 +10919,21 @@ msgstr "Apisańnie" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struktura tablicy" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktura dla prahladu" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Zamianialnaja struktura dla prahladu" @@ -11046,7 +11051,7 @@ msgid "Database:" msgstr "Baza dadzienych" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11164,7 +11169,7 @@ msgid "Data creation options" msgstr "Opcyi pieraŭtvareńnia" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11233,7 +11238,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11285,61 +11290,61 @@ msgstr "vykarystoŭvajecca" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Abmiežavańni dla ekspartavanych tablic" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Abmiežavańni dla tablicy" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Abmiežavańni dla ekspartavanych tablic" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "U tablicy(ach):" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Dadać značeńnie AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Dadać značeńnie AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME-typy tablicy" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "Suviazi ŭ tablicy" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11395,34 +11400,34 @@ msgstr "" msgid "Column names: " msgstr "Nazvy kalonak" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Niedapuščalny paremetar dla impartu dadzienych u CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Niekarektny farmat CSV-dadzienych u radku %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Niapravilnaja kolkaść paloŭ u CSV-dadzienych u radku %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Hety płahin nie padtrymlivaje ścisnutyja dadzienyja!" @@ -11430,7 +11435,7 @@ msgstr "Hety płahin nie padtrymlivaje ścisnutyja dadzienyja!" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." @@ -11444,15 +11449,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11462,23 +11467,23 @@ msgstr "Specyfikacyja Open Document" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -14755,15 +14760,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14778,17 +14779,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14810,23 +14812,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Kolkaść adkrytych tablic." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Kolkaść adkrytych tablic." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14855,17 +14857,17 @@ msgstr "Tablica %1$s stvoranaja." msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "U pačatku tablicy" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14886,19 +14888,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15602,7 +15604,7 @@ msgstr "Prahladzieć damp (schiemu) tablicy" msgid "Invalid table name" msgstr "Niekarektnaje imia tablicy" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16746,7 +16748,7 @@ msgid "at beginning of table" msgstr "U pačatku tablicy" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16795,7 +16797,7 @@ msgstr "padzielenaja na sekcyi" msgid "Edit partitioning" msgstr "Skasavać padzieł na častki" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16931,11 +16933,11 @@ msgstr "Nazva prahladu" msgid "Column names" msgstr "Nazvy kalonak" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Copy database to" msgid "Delete the view (DROP)" diff --git a/po/bg.po b/po/bg.po index b77f1707d3..7f50e96f3a 100644 --- a/po/bg.po +++ b/po/bg.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-06-28 13:36+0200\n" "Last-Translator: Valter Georgiev \n" "Language-Team: Bulgarian %2$s" msgstr[0] "%1$s съвпадение в таблица %2$s" msgstr[1] "%1$s съвпадения в таблица %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3532,30 +3536,30 @@ msgstr "Филтри" msgid "Search this table" msgstr "Търсене в БД" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Начало" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Предна" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Следваща" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Последна" @@ -3632,7 +3636,7 @@ msgstr "Може да има приблизителна стойност. Виж #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3670,7 +3674,7 @@ msgid "Query took %01.4f seconds." msgstr "Заявката отне %01.4f секунди" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3678,7 +3682,7 @@ msgid "With selected:" msgstr "Когато има отметка:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3763,18 +3767,18 @@ msgstr "Качването на файлът беше спряно от разш msgid "Unknown error in file upload." msgstr "Неизвестна грешка при качване." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Грешка при преместване на качения файл, виж [doc@faq1-11]ЧЗВ 1.11[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Грешка при преместване на качения файл." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -3844,8 +3848,8 @@ msgid "Keyname" msgstr "Име на ключ" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3893,15 +3897,15 @@ msgstr "Главният ключ беше изтрит." msgid "Index %s has been dropped." msgstr "Индекс %s беше изтрит." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Изтриване" @@ -3914,7 +3918,7 @@ msgstr "" "Индексите %1$s и %2$s изглеждат равнозначни и един от двата вероятно може да " "бъде премахнат." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3964,8 +3968,8 @@ msgid "Table" msgstr "Таблица" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3973,25 +3977,25 @@ msgstr "Таблица" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Търсене" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Вмъкване" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3999,24 +4003,24 @@ msgid "Privileges" msgstr "Права" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Операции" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Проследяване" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4027,16 +4031,16 @@ msgstr "Тригери" msgid "Database seems to be empty!" msgstr "БД изглежда празна!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Заявка по пример" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Процедури" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4044,18 +4048,18 @@ msgstr "Процедури" msgid "Events" msgstr "Събития" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Строител" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "Колони в текство поле" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4070,34 +4074,34 @@ msgid "User accounts" msgstr "Потребители" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Двоичен дневник" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Репликация" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Променливи" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Знакови набори" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Хранилища" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Добавки" @@ -4699,18 +4703,18 @@ msgstr "Пространствен" msgid "Max: %s%s" msgstr "Максимум: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Статична информация" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4721,38 +4725,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL отговори: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Обяснение на SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Пропусни Explain SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Без PHP код" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Изпълни заявката" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Създаване на PHP код" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -4760,69 +4764,69 @@ msgid "Edit inline" msgstr "Редактиране" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "нд" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%e %B %Y в %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дена, %s часа, %s минути и %s секунди" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Липсващ параметър:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Показване БД \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Функционалността %s се влияе от известен дефект, виж %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Щракване за превключване" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Разглеждане на компютъра:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Избор от директорията за качване %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Папката, която сте указали за качване е недостъпна." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "Няма файлве за качване" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Изчистване" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Изпълнение" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Потребители" @@ -4962,13 +4966,13 @@ msgstr "Добавяне колона" msgid "Attributes" msgstr "Атрибути" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to read configuration file!" msgstr "Неуспешно прочитане на конфигурацията" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4976,32 +4980,32 @@ msgstr "" "Това обикновено означава, че има синтактична грешка в него, моля, проверете " "всички грешки, показани по-долу." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Конфигурацията по подразбиране не може да бъде заредена от: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Невалиден индекс на сървър: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Невалиден хост за сървър %1$s. Прегледайте конфигурацията." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Сървър" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Невалиден метод за удостоверяване в конфогурацията:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5009,24 +5013,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Осъвременете до %s %s или по-нова." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "възможен пробив в сигурността" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "цифров ключ открит" @@ -5825,7 +5829,7 @@ msgstr "Поставяне имената на полетата в първи р #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Columns enclosed with:" msgid "Columns enclosed with" @@ -5833,7 +5837,7 @@ msgstr "Колоните са оградени от:" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Columns escaped with:" msgid "Columns escaped with" @@ -5855,14 +5859,14 @@ msgstr "Премахване CRLF знаци от колони" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "Колоните завършват с" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated with:" msgid "Lines terminated with" @@ -8189,7 +8193,7 @@ msgid "Table %s has been emptied." msgstr "Таблицата %s беше изчистена." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8328,8 +8332,8 @@ msgid "No data to display" msgstr "Няма данни" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8377,53 +8381,53 @@ msgstr[1] "" msgid "No column selected." msgstr "Няма избрана колона." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Колоните бяха преместени упешно." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Грешка в заявката" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Промяна" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Индекс" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Пространствен" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Пълнотекстово" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Уникални стойности" @@ -8433,7 +8437,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Разширението %s липсва. Проверете конфигурацията на PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Няма промяна" @@ -9208,54 +9212,54 @@ msgstr "MySQL върна празен резултат (т.е. нула редо msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Към БД: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Редактиране настройките на %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Към таблица: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Структурата на %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9305,48 +9309,48 @@ msgstr "Или" msgid "web server upload directory:" msgstr "директорията за upload на web сървъра" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Редакция/Вмъкване" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "и след това" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Вмъкване като нов ред" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Показване заявка за вмъкване" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Обратно към предната страница" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Вмъкване нов ред" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Връщане към тази страница" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Редакция на следващия ред" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9356,7 +9360,7 @@ msgstr "" "Използвайте клавиша TAB, за да премествате крурсора от стойност на стойност " "или CTRL+стрелка, за да премествате курсора в съответната посока" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9368,11 +9372,11 @@ msgstr "" msgid "Value" msgstr "Стойност" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10270,7 +10274,7 @@ msgstr "Поправяне на таблицата" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -10283,32 +10287,32 @@ msgid "Delete the table (DROP)" msgstr "Изтриване на таблицата (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Анализиране" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Проверка" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Оптимизиране" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Поправяне" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10336,37 +10340,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Проверка на интегритета на връзките:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Не може да се премести таблицата към себе си!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Не може да се копира таблицата към себе си!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Таблицата %s беше преместена към %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Таблица %s беше копирана в %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Името на таблицата е празно!" @@ -10545,7 +10549,7 @@ msgstr "Опции при експортиране на данните" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Схема на данните от таблица" @@ -10569,21 +10573,21 @@ msgstr "Описание" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Структура на таблица" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10689,7 +10693,7 @@ msgid "Database:" msgstr "БД" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10796,7 +10800,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10885,7 +10889,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10931,60 +10935,60 @@ msgstr "ползва се в момента" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Ограничения за дъмпнати таблици" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Ограничения за таблица" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ограничения за дъмпнати таблици" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "В таблици:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Да не се използва AUTO_INCREMENT за нулеви стойности" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Добавяне AUTO_INCREMENT стойност" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВЕ ЗА ТАБЛИЦА" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИИ ЗА ТАБЛИЦА" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Грешка при четене на данни:" @@ -11036,33 +11040,33 @@ msgstr "" msgid "Column names: " msgstr "Имена на колони: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11070,7 +11074,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -11083,15 +11087,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11101,23 +11105,23 @@ msgstr "Open Document Spreadsheet" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "The imported file does not contain any data" msgid "The imported file does not contain any data!" @@ -14153,15 +14157,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14176,17 +14176,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14208,23 +14209,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Броят отворени таблици." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Броят отворени таблици." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14257,17 +14258,17 @@ msgstr "Събитието %1$s беше създадено." msgid "Variable name was expected." msgstr "Шаблон за име на таблица" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "В началото на таблицата" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14290,19 +14291,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Редът беше изтрит" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15008,7 +15009,7 @@ msgstr "Схема (дъмп) на таблицата" msgid "Invalid table name" msgstr "Невалидно име на таблица" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16081,7 +16082,7 @@ msgid "at beginning of table" msgstr "В началото на таблицата" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16126,7 +16127,7 @@ msgstr "Положение" msgid "Edit partitioning" msgstr "Редактиране" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Изглед за редакция" @@ -16253,11 +16254,11 @@ msgstr "Име на ИЗГЛЕД" msgid "Column names" msgstr "Име на колона" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Преименуване на изгледа на" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Delete the table (DROP)" msgid "Delete the view (DROP)" diff --git a/po/bn.po b/po/bn.po index 18fe34ab53..88dfbb11bc 100644 --- a/po/bn.po +++ b/po/bn.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:44+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bengali %2$s" msgstr[0] "%2$s মধ্যে %1$s মিল" msgstr[1] "%2$s মধ্যে %1$s গুলো মিল" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3745,30 +3749,30 @@ msgstr "ফিল্টারসমূহ" msgid "Search this table" msgstr "ডাটাবেইজে খোঁজ" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "আরম্ভ" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "পূর্ববর্তী" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "পরবর্তী" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "শেষ" @@ -3841,7 +3845,7 @@ msgstr "সম্ভবত আনুমানিক। [doc@faq3-11]FAQ 3.11[/do #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "আপনার SQL অনুসন্ধানটি সফলভাবে কাজ করেছে." @@ -3875,7 +3879,7 @@ msgid "Query took %01.4f seconds." msgstr "অনুসন্ধানে %01.4f সেঃ লেগেছ." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3883,7 +3887,7 @@ msgid "With selected:" msgstr "নিবার্চিত গুলো নিয়ে:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3963,15 +3967,15 @@ msgstr "ফাইল আপলোড সংযোজক দ্বারা ব msgid "Unknown error in file upload." msgstr "ফাইল আপলোডের সময় অজ্ঞাত ভুল।" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "আপলোডকৃত ফাইলটি সরাতে সমস্যা হয়েছে, [doc@faq1-11]FAQ 1.11[/doc] দেখুন।" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "আপলোডকৃত ফাইলটি সরানোর সময় সমস্যা হয়েছে।" -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -4037,8 +4041,8 @@ msgid "Keyname" msgstr "কী'র নাম" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4086,15 +4090,15 @@ msgstr "প্রাথমিক কী মুছা হয়েছে।" msgid "Index %s has been dropped." msgstr "ইনডেক্স %s মুছা হয়েছে।" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "মুছ" @@ -4105,7 +4109,7 @@ msgid "" "removed." msgstr "ইনডেক্স %1$s এবং %2$s এক সমান মনে হয় এবং যে কোন একটি মুছে ফেলুন।" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4155,8 +4159,8 @@ msgid "Table" msgstr "টেবল" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4164,25 +4168,25 @@ msgstr "টেবল" msgid "SQL" msgstr "এসকিউএল" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "খোঁজা" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "ইনর্সাট" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4190,24 +4194,24 @@ msgid "Privileges" msgstr "অধিকারসমূহ" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "কাজসমূহ" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "ট্রেকিং" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4218,16 +4222,16 @@ msgstr "ট্রিগারসমূহ" msgid "Database seems to be empty!" msgstr "ডাটাবেইজটি খালি মনে হয়!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "অনুসন্ধান" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "রুটিনসমূহ" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4235,18 +4239,18 @@ msgstr "রুটিনসমূহ" msgid "Events" msgstr "ইভেন্টসমূহ" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "নকশাকারী" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "টেক্সএরিয়া স্তম্ভ" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4261,34 +4265,34 @@ msgid "User accounts" msgstr "ব্যবহারকারীর দল" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "বাইনারী লগ" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "অনুলিপি" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "চলকসমূহ" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "বর্ণরাশী" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "ব্যবস্থাসমূহ" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "প্লাগইন" @@ -4923,18 +4927,18 @@ msgstr "স্পাটিয়াল" msgid "Max: %s%s" msgstr "সবোর্চ্চ: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "স্থিত তথ্য" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4945,38 +4949,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL বলেছে: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL এর ব্যাখা" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "SQL এর ব্যাখা এড়িয়ে যাও" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "পিএইছপি কোড ছাড়া" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "অনুসন্ধান পেশ কর" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "পিএইছপি কোড তৈরী কর" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -4984,69 +4988,69 @@ msgid "Edit inline" msgstr "ইনডেক্স সম্পাদনা" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "রবিবার" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s দিন, %s ঘন্টা, %s মিনিট এবং %s সেকেন্ড" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "parameter নাই:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "ডাটাবেইজ \"%s\" যাও।" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s কার্যকারিতা একটি চিহ্নিত সমস্যা, %s দেখুন" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "টোগল ক্লীক করুন" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "আপনার কম্পিউটারে দেখুন:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ওয়েভ সার্ভারের আপলোড ডিরেক্টরি থেকে নির্বাচন করুন %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "আপলোড করার জন্য নির্ধারিত ডিরেক্টরীটি পাওয়া যাচ্ছে না।" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "আপলোড করার জন্য কোন ফাইল নাই" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "খালি" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "কর" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "ব্যবহারকারী" @@ -5184,43 +5188,43 @@ msgstr "স্বম্ভ যোগ করা" msgid "Attributes" msgstr "গুনাবলী" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to read configuration file!" msgstr "কনফিগারেশন ফাইল পড়া যায়নি" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "ইহা সাধারনত বাক্যে ভুল বোঝায়, কোন ভুল আছে কিনা পরীক্ষা করুন।" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "স্বাভাবিক কনফিগারেশন লোড করা যাচ্ছে না:%1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "অকার্যকর সার্ভার ইনডেক্স:%s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "অকার্যকর হোষ্টের নাম %1$s। কনফিগারেশন আবার দেখুন।" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "সার্ভার %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "কনফিগারেশনে অকার্যকর প্রমাণীকরন পদ্ধতি:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5228,24 +5232,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "আপনি অবশ্যই %s %s বা পরের কোন সংস্করনে আপগ্রেড করবেন।" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "ভুল: টোকেন মিলে নাই" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS পুন লিখনের চেষ্টা" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "সাম্ভাব্য বিপদের সুযোগ" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "সংখ্যা কী সনাক্ত করা গেছে" @@ -6015,13 +6019,13 @@ msgstr "স্তম্ভের নাম প্রথম রোতে দা #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "স্তম্ভ ঘেরার জন্য" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "স্তম্ভ এস্কেপডের উপকরণ" @@ -6039,12 +6043,12 @@ msgstr "স্তম্ভের CRLF বর্ণ মুছ" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "স্তম্ভ শেষ হবে" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "লাইন শেষ হবে" @@ -8230,7 +8234,7 @@ msgid "Table %s has been emptied." msgstr "টেবিল %s খালি করা হয়েছে।" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "ভিউ %s মুছা হয়েছে।" @@ -8365,8 +8369,8 @@ msgid "No data to display" msgstr "প্রর্দশনের কোন তথ্য নাই" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8415,53 +8419,53 @@ msgstr[1] "স্তম্ভের নাম '%s'টি MySQL'র সংরক msgid "No column selected." msgstr "কোন স্তম্ভ নির্বাচন করা হয় নাই।" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "স্তম্ভগুলো সফলভাবে সরানো হয়েছে।" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "অনুসন্ধানে ভুল" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "পরিবর্তন" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "ইনডেক্স" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "স্পাটিয়াল" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "ফুলটেক্সট" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "স্বতন্ত্র মানগুলো" @@ -8471,7 +8475,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s সংযোজনক পাওয়া যাচ্ছে না। পিএইছপি কনফিগারেশন দেখুন।" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "পরিবর্তন নয়" @@ -9286,18 +9290,18 @@ msgstr "মাইএসকিউএল কিছু পায়নি। (শু msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "এই আকৃতিটি তৈরী করা বা পরিবর্তন করা হয়েছে। এখানে আপনি:" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 #, 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:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9305,42 +9309,42 @@ msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "\"Options\" এ ক্লীক করে যে কোন সেটিংস পরিবর্তন করুন" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 #, fuzzy #| msgid "Edit structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "আকৃতি সম্পাদনা কর এই \"Structure\" সংযোগের দ্বারা" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "ডাটাবেইজ এ যাও: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "%s এর সেটিংস সম্পাদনা" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "টেবল এ যাও: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s এর আকৃতি" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "ভিউ এ যাও : %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9388,48 +9392,48 @@ msgstr "অথবা" msgid "web server upload directory:" msgstr "ওয়েব সার্ভারের আপলোড ডিরেক্টরি:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "সম্পাদন/নতুন" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "%s রোতে প্রবেশ করানো চলতে থাকবে" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "এবং তারপর" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "নতুন রো হিসাবে প্রবেশ করাও" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "নতুন রো হিসাবে প্রবেশ করাও এবং ভুলসমূহ উপেক্ষা কর" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "প্রবেশ করানোর অনুসন্ধান দেখাও" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "পূর্ববর্তী পাতায় যাও" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "অন্য আরেকটি নতুন রো প্রবেশ করাও" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "এই পাতাতেই ফিরে আস" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "পরবর্তী রো সম্পাদনা" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9439,7 +9443,7 @@ msgstr "" "ট্যাব কি দিয়ে মান থেকে মানে যাওয়া যাবে বা CTRL+arrows দিয়ে যে কোন জায়গায় " "যাওয়া যাবে।" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9451,11 +9455,11 @@ msgstr "" msgid "Value" msgstr "মান" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "এসকিউএল অনুসন্ধান দেখাচ্ছে" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "প্রবেশকৃত রো আইডি: %1$d" @@ -10318,7 +10322,7 @@ msgstr "টেবিল মেরামত" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "তথ্য বা টেবিল মুছ" @@ -10331,32 +10335,32 @@ msgid "Delete the table (DROP)" msgstr "টেবিলটি মুছ (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "নিরীক্ষা" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "পরীক্ষা" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "অপটিমাইজ" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "পুননির্মাণ" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "মেরামত" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10384,37 +10388,37 @@ msgstr "খন্ড মুছ" msgid "Check referential integrity:" msgstr "রেফারেনসিয়াল ইন্টিগ্রিটি পরীক্ষা কর:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "একই ক্ষেত্রে টেবলটি সরানো যাবে না!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "একই ক্ষেত্রে টেবলটির অনুলিপি করা যাবে না!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "%s টেবিলটি %s এ সরানো হয়েছে।" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "%s টেবিল টি %s এ প্রতিলিপি করা হয়েছে।" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "টেবিলের নামটি খালি!" @@ -10590,7 +10594,7 @@ msgstr "তথ্য স্তুপের অপশন" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "টেবলের জন্য তথ্য স্তুপ করছি" @@ -10614,21 +10618,21 @@ msgstr "সংজ্ঞা" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "টেবলের জন্য টেবলের গঠন" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "ভিউ এর গঠন" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "দর্শনের বর্তমান গঠন" @@ -10718,7 +10722,7 @@ msgid "Database:" msgstr "ডাটাবেইজ:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "ডাটা:" @@ -10822,7 +10826,7 @@ msgid "Data creation options" msgstr "তথ্য তৈরীর অপশন" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "ইনার্সটের পুর্বে টেবল খালি কর" @@ -10907,7 +10911,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10953,52 +10957,52 @@ msgstr "ব্যবহৃত" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "স্তুপকৃত টেবলের সীমবদ্ধতা" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "টেবলের সীমবদ্ধতা" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "স্তুপকৃত টেবলের ইনডেক্স" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "টেবিলের ইনডেক্সসমুহ" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "স্তুপকৃত টেবলের জন্য স্বয়ক্রীয় বর্দ্ধিত মান (AUTO_INCREMENT)" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "টেবলের জন্য স্বয়ক্রীয় বর্দ্ধিত মান (AUTO_INCREMENT)" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "টেবিলের মাইমের ধরন" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "টেবিলের সর্ম্পক" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "ভিউ এর গঠন %s টেবলে রফতানী করা হয়েছে" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "তথ্য পড়ার ভুল:" @@ -11052,15 +11056,15 @@ msgstr "" msgid "Column names: " msgstr "স্তম্ভের নাম: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV আমদানীর প্যারামিটার ঠিক নাই:%s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -11069,18 +11073,18 @@ msgstr "" "অযোগ্য স্তম্ভের নাম (%s) দেয়া হয়েছে! স্তম্ভের নামটি সঠিক ভাবে বানান করা হয়েছে " "কিনা, কমা দ্বারা আলাদ করা এবং কোঔট দ্বারা সীমিত নয় তা নিশ্চিন্ত করুন।" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "CSV ফাইলের গঠন অযোগ্য %d লাইনে।" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "অযোগ্য স্তম্ভ্ সংখ্যা CSV ফাইলের %d লাইনে।" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "এই সংযোজকটি সংকোচিত আমদানি সমর্থন করে না!" @@ -11088,7 +11092,7 @@ msgstr "এই সংযোজকটি সংকোচিত আমদানি msgid "MediaWiki Table" msgstr "MediaWiki টেবল" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "মিডিয়া উইকির গঠন ঠিক নাই, লাইন:
%s।" @@ -11101,9 +11105,9 @@ msgstr "সঠিক দশমিকে শতকরা আমদানি (e msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "মুদ্রা আমদানি কর (যেমন $5.00 to 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -11111,7 +11115,7 @@ msgstr "" "দেয়া XML ফাইলটি হয় গঠনগত সমস্যা আছে বা সম্পুর্ন নয়। সমস্যাটি ঠিক করে আবার চেষ্টা " "করুন।" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "ওপেন অফিসের স্প্রেডসীট পড়া যায় নি" @@ -11119,12 +11123,12 @@ msgstr "ওপেন অফিসের স্প্রেডসীট পড়া msgid "ESRI Shape File" msgstr "ESRI গঠন ফাইল" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "ESRI ফাইল আমদানিতে ভুল:\"%s\"।" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 #, fuzzy #| msgid "" #| "You tried to import an invalid file or the imported file contains invalid " @@ -11134,12 +11138,12 @@ msgid "" "data!" msgstr "আপনি একটি অযোগ্য ফাইল আমদানির চেষ্টা করছেন বা ফাইলটিতে অযোগ্য তথ্য আছে" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Spatial সংযোজক ESRI type \"%s\" সমর্থন করে না।" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "The imported file does not contain any data" msgid "The imported file does not contain any data!" @@ -14200,15 +14204,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14223,17 +14223,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14255,23 +14256,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "খোলা টেবিলের সংখ্যা।" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "খোলা টেবিলের সংখ্যা।" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14304,17 +14305,17 @@ msgstr "ইভেন্ট %1$s তৈরী হয়েছে।" msgid "Variable name was expected." msgstr "টেবলের নামের নকশা" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "টেবিলের শুরুতে" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14337,19 +14338,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "রো টি মুছা হয়েছে।" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15054,7 +15055,7 @@ msgstr "টেবিলের স্তুপ (গঠন) দেখাও" msgid "Invalid table name" msgstr "টেবিলের নামটি অকার্যকর" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16095,7 +16096,7 @@ msgid "at beginning of table" msgstr "টেবিলের শুরুতে" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16144,7 +16145,7 @@ msgstr "খন্ড করা হয়েছে" msgid "Edit partitioning" msgstr "খন্ড মুছ" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "সম্পাদনা ভিউ" @@ -16271,11 +16272,11 @@ msgstr "ভিউ এর নাম" msgid "Column names" msgstr "স্তম্ভের নাম" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "ভিউ এর নাম পরিবর্তন কর" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "ভিউটি মুছ (DROP)" diff --git a/po/br.po b/po/br.po index 5391ed2ff8..4ea871cab5 100644 --- a/po/br.po +++ b/po/br.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2014-03-28 11:07+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Breton %2$s" msgstr[0] "%s glotadenn en daolenn %s" msgstr[1] "%s klotadenn en daolenn %s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3780,16 +3784,16 @@ msgstr "Silañ" msgid "Search this table" msgstr "Klask en diaz roadennoù" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Kregiñ" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3798,8 +3802,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Kent" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -3808,8 +3812,8 @@ msgctxt "Next page" msgid "Next" msgstr "War-lerc'h" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3889,7 +3893,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3928,7 +3932,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3936,7 +3940,7 @@ msgid "With selected:" msgstr "Evit ar re zo diuzet :" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4022,18 +4026,18 @@ msgstr "Harzet eo bet ar pellgargañ gant an astenn." msgid "Unknown error in file upload." msgstr "Fazi dianav en ur bellgargañ ar restr." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Fazi en ur zilec'hiañ ar restr pellgarget; gwelet [doc@faq1-11]FAQ 1.11[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4099,8 +4103,8 @@ msgid "Keyname" msgstr "Anv ar meneger" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4148,15 +4152,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Dilezel" @@ -4169,7 +4173,7 @@ msgstr "" "Evit doare eo kevatal an menegerioù %1$s ha %2$s hag unan anezho a c'hallfe " "bezañ dilamet." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4219,8 +4223,8 @@ msgid "Table" msgstr "Taolenn" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4228,25 +4232,25 @@ msgstr "Taolenn" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Klask" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Ensoc'hañ" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4254,24 +4258,24 @@ msgid "Privileges" msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Oberiadennoù" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4282,16 +4286,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4299,18 +4303,18 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "CHAR textarea columns" msgid "Central columns" msgstr "Bannoù evit an takadoù skrid CHAR" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4323,34 +4327,34 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Eilañ" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4954,18 +4958,18 @@ msgstr "" msgid "Max: %s%s" msgstr "Ment vrasañ : %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Roadennoù stadegel" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4976,38 +4980,38 @@ msgstr "" msgid "MySQL said: " msgstr "respontet eo bet gant MySQL : " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Displegañ SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "N'eo ket dav displegañ SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Hep kod PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Kas ar reked" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Krouiñ kod PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5015,69 +5019,69 @@ msgid "Edit inline" msgstr "Mod aozañ" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Sul" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%A %d %B %Y da %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s deiz, %s eur, %s munut ha %s eilenn" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Mont d'an diaz roadennoù \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Direizhet eo an arc'hwel %s gant un draen anavezet, sellit ouzh %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Klikañ evit gwintañ" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Furchal en hoc'h urzhiataer :" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, 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:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 #, 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:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Goullonderiñ" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Seveniñ" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "" @@ -5215,13 +5219,13 @@ msgstr "Ouzhpennañ/Diverkañ bannoù" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to read configuration file!" msgstr "Dibosupl lenn ar restr keluniañ" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -5229,32 +5233,32 @@ msgstr "" "Peurliesañ e talvez ez eus ur fazi ereadurezh enni. Gwiriit ha n'eus ket ur " "fazi o tont war wel a-is." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "N'eus ket bet gallet kargañ ar c'hefluniadur dre ziouer adalek %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Meneger servijer faziek : %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Anv ostiz direizh evit ar servijer %1$s. Gwiriit ar c'hefluniadur." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Servijer" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Termenet ez eus bet c'hefluniadur un hentenn dilesa direizh :" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5262,24 +5266,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format 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:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6058,7 +6062,7 @@ msgstr "Diskouez anvioù ar bannoù diouzhtu el linenn gentañ" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Columns enclosed by" msgid "Columns enclosed with" @@ -6066,7 +6070,7 @@ msgstr "Bannoù gronnet gant" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Columns escaped by" msgid "Columns escaped with" @@ -6088,14 +6092,14 @@ msgstr "Tennañ an arouezennoù dibenn linenn e dibarzh ar bannoù" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "Bannoù a echu gant" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8274,7 +8278,7 @@ msgid "Table %s has been emptied." msgstr "Goullonderet eo bet an daolenn %s." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8411,8 +8415,8 @@ msgid "No data to display" msgstr "Dibab ar bann da ziskouez" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8460,55 +8464,55 @@ msgstr[1] "" msgid "No column selected." msgstr "N'eus bet diuzet linenn ebet" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Kemmañ" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -8520,7 +8524,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -9297,58 +9301,58 @@ msgstr "Distroet ez eus un disoc'h goullo gant MySQL (linenn ebet)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Jump to database" msgid "Go to database: %s" msgstr "Mont d'an diaz roadennoù" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Roadennoù a vank evit %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "Set value: %s" msgid "Go to table: %s" msgstr "Lakaat an talvoud da %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Ar framm hepken" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9396,55 +9400,55 @@ msgstr "Pe" msgid "web server upload directory:" msgstr "Diuzit e-mesk kavlec'h pellgargañ ar servijer web %s :" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Ensoc'hañ" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9456,11 +9460,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10331,7 +10335,7 @@ msgstr "Dresañ an daolenn" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -10344,32 +10348,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10397,37 +10401,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -10610,7 +10614,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10634,21 +10638,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10752,7 +10756,7 @@ msgid "Database:" msgstr "Diaz roadennoù" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10861,7 +10865,7 @@ msgid "Data creation options" msgstr "Dibarzhioù diskwel an diazoù roadennoù" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10930,7 +10934,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10976,60 +10980,60 @@ msgstr "en implij" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for dumped tables" msgstr "E diabarzh an taolennoù :" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "E diabarzh an taolennoù :" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Ouzhpennañ talvoud an AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -11081,33 +11085,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11115,7 +11119,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -11128,15 +11132,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11146,23 +11150,23 @@ msgstr "Testenn Open Document" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -14079,15 +14083,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No rows selected" @@ -14102,17 +14102,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No rows selected" msgid "An alias was expected." @@ -14134,19 +14135,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The bookmark has been deleted." msgid "A rename operation was expected." @@ -14177,17 +14178,17 @@ msgstr "Krouet eo bet an argerzh %1s." msgid "Variable name was expected." msgstr "Patrom anv taolenn" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "Number of inserted rows" msgid "Unexpected beginning of statement." msgstr "Niver a linennoù da ensoc'hañ" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14208,17 +14209,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14906,7 +14907,7 @@ msgstr "" msgid "Invalid table name" msgstr "Anv taolenn direizh" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15964,7 +15965,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:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -16009,7 +16010,7 @@ msgstr "Darempredoù" msgid "Edit partitioning" msgstr "Mod aozañ" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16140,11 +16141,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Drop the database (DROP)" msgid "Delete the view (DROP)" diff --git a/po/brx.po b/po/brx.po index 2e4ecd941c..2628df9dd5 100644 --- a/po/brx.po +++ b/po/brx.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-09-04 09:33+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bodo %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3315,30 +3318,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "" @@ -3409,7 +3412,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3442,7 +3445,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3450,7 +3453,7 @@ msgid "With selected:" msgstr "" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3526,15 +3529,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3598,8 +3601,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3647,15 +3650,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -3666,7 +3669,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3716,8 +3719,8 @@ msgid "Table" msgstr "" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3725,25 +3728,25 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3751,24 +3754,24 @@ msgid "Privileges" msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3779,16 +3782,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3796,16 +3799,16 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3818,34 +3821,34 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4411,16 +4414,16 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4431,98 +4434,98 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "" @@ -4648,41 +4651,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4690,24 +4693,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5364,13 +5367,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5388,12 +5391,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -7332,7 +7335,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "" @@ -7462,8 +7465,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7501,52 +7504,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7556,7 +7559,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8275,54 +8278,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8368,53 +8371,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8426,11 +8429,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9250,7 +9253,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9263,32 +9266,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9314,35 +9317,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9511,7 +9514,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9535,21 +9538,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9639,7 +9642,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9731,7 +9734,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9800,7 +9803,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9842,52 +9845,52 @@ msgstr "" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -9935,33 +9938,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -9969,7 +9972,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -9982,15 +9985,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -9998,23 +10001,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -12727,15 +12730,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "" @@ -12748,17 +12747,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "" @@ -12776,19 +12776,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "" @@ -12814,15 +12814,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12843,15 +12843,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13509,7 +13509,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14405,7 +14405,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14438,7 +14438,7 @@ msgstr "" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14553,11 +14553,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/bs.po b/po/bs.po index 30ad75561b..776ac492df 100644 --- a/po/bs.po +++ b/po/bs.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:31+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bosnian %2$s" msgstr[0] "%s pogodaka unutar tabele %s" msgstr[1] "%s pogodaka unutar tabele %s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3790,16 +3794,16 @@ msgstr "Polja" msgid "Search this table" msgstr "Pretraživanje baze" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Početak" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3808,8 +3812,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Prethodna" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -3818,8 +3822,8 @@ msgctxt "Next page" msgid "Next" msgstr "Slijedeći" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3905,7 +3909,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3943,7 +3947,7 @@ msgid "Query took %01.4f seconds." msgstr "Upit je trajao %01.4f sekundi" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3951,7 +3955,7 @@ msgid "With selected:" msgstr "Označeno:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4035,15 +4039,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4110,8 +4114,8 @@ msgid "Keyname" msgstr "Ime ključa" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4160,15 +4164,15 @@ msgstr "Primarni ključ je obrisan." msgid "Index %s has been dropped." msgstr "Ključ %s je obrisan." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Odbaci" @@ -4179,7 +4183,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4229,8 +4233,8 @@ msgid "Table" msgstr "Tabela" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4238,25 +4242,25 @@ msgstr "Tabela" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Pretraživanje" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Novi zapis" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4264,24 +4268,24 @@ msgid "Privileges" msgstr "Privilegije" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operacije" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4292,16 +4296,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Upit po primeru" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4309,18 +4313,18 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Dodaj/obriši kolonu" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4335,13 +4339,13 @@ msgid "User accounts" msgstr "Korisnik" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 #, fuzzy msgid "Binary log" msgstr "Binarni" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 #, fuzzy @@ -4349,22 +4353,22 @@ msgid "Replication" msgstr "Relacije" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Promjenljive" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Kodne strane" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4970,16 +4974,16 @@ msgstr "Ukupno" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4990,38 +4994,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL kaže: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Preskoči objašnjavanje SQL-a" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "bez PHP koda" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Izvrši SQL upit" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Napravi PHP kod" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5029,70 +5033,70 @@ msgid "Edit inline" msgstr "Dodaj novo polje" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Ned" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. u %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekundi" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "Dodaj novo polje" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Pređi na bazu \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, 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:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Direkcija koju ste izabrali za slanje nije dostupna." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Isprazni" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 #, fuzzy #| msgid "User" msgid "Users" @@ -5233,42 +5237,42 @@ msgstr "Dodaj novo polje" msgid "Attributes" msgstr "Atributi" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Server" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5276,24 +5280,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5997,7 +6001,7 @@ msgstr "Stavi imena polja u prvi red" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6005,7 +6009,7 @@ msgstr "Polja ograničena sa" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6027,14 +6031,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Linije se završavaju sa" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8138,7 +8142,7 @@ msgid "Table %s has been emptied." msgstr "Tabela %s je ispražnjena." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format msgid "View %s has been dropped." msgstr "Polje %s je obrisano" @@ -8281,8 +8285,8 @@ msgid "No data to display" msgstr "Baza ne postoji" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." @@ -8331,56 +8335,56 @@ msgstr[2] "" msgid "No column selected." msgstr "Nije izabrana ni jedna baza." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Vrsta upita" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Promijeni" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Ključ" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Tekst ključ" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy msgid "Distinct values" msgstr "Pregledaj strane vrijednosti" @@ -8391,7 +8395,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nema izmjena" @@ -9187,55 +9191,55 @@ msgstr "MySQL je vratio prazan rezultat (nula redova)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Samo struktura" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9286,56 +9290,56 @@ msgstr "ili" msgid "web server upload directory:" msgstr "direkcija za slanje web servera" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Novi zapis" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 #, fuzzy msgid "Go back to this page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9347,11 +9351,11 @@ msgstr "" msgid "Value" msgstr "Vrijednost" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10235,7 +10239,7 @@ msgstr "Popravi tabelu" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10251,34 +10255,34 @@ msgid "Delete the table (DROP)" msgstr "Baza ne postoji" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 #, fuzzy msgid "Check" msgstr "Češki" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 #, fuzzy msgid "Repair" msgstr "Popravi tabelu" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10306,37 +10310,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Proveri referencijalni integritet:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Ne mogu da premjestim tabelu u samu sebe!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Ne mogu da kopiram tabelu u samu sebe!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s je pomjerena u %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s je kopirana u %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Ima tabele je prazno!" @@ -10526,7 +10530,7 @@ msgstr "Opcije za izvoz baze" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Prikaz podataka tabele" @@ -10553,14 +10557,14 @@ msgstr "Opis" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struktura tabele" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10568,7 +10572,7 @@ msgstr "Samo struktura" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10680,7 +10684,7 @@ msgid "Database:" msgstr "Baza podataka" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10793,7 +10797,7 @@ msgid "Data creation options" msgstr "Opcije transformacije" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10862,7 +10866,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10914,60 +10918,60 @@ msgstr "se koristi" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "Unutar tabela:" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Unutar tabela:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Dodaj AUTO_INCREMENT vrijednost" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Dodaj AUTO_INCREMENT vrijednost" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Samo struktura" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11023,33 +11027,33 @@ msgstr "" msgid "Column names: " msgstr "Imena kolona" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11057,7 +11061,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -11070,15 +11074,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11088,23 +11092,23 @@ msgstr "Dokumentacija" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -14137,15 +14141,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14160,17 +14160,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14192,19 +14193,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14233,17 +14234,17 @@ msgstr "Tabela %s je odbačena" msgid "Variable name was expected." msgstr "Šablon imena datoteke" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Na početku tabele" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14264,17 +14265,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14977,7 +14978,7 @@ msgstr "Prikaži sadržaj (shemu) tabele" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16085,7 +16086,7 @@ msgid "at beginning of table" msgstr "Na početku tabele" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -16130,7 +16131,7 @@ msgstr "Relacije" msgid "Edit partitioning" msgstr "Dodaj novo polje" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16264,12 +16265,12 @@ msgstr "" msgid "Column names" msgstr "Imena kolona" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Promjeni ime tabele u " -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Baza ne postoji" diff --git a/po/ca.po b/po/ca.po index 610916b5dd..6df3ec05fb 100644 --- a/po/ca.po +++ b/po/ca.po @@ -1,13 +1,13 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-02-11 23:11+0000\n" "Last-Translator: Xavier Navarro \n" -"Language-Team: Catalan " -"\n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,7 +47,7 @@ msgid "Table comments:" msgstr "Comentaris de la taula:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -101,7 +101,7 @@ msgstr "Tipus" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -163,12 +163,12 @@ msgid "Comments" msgstr "Comentaris" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Principal" @@ -201,12 +201,12 @@ msgstr "No" #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -251,8 +251,8 @@ msgid "Tables" msgstr "Taules" #: db_export.php:66 libraries/Menu.php:323 libraries/Menu.php:430 -#: libraries/Util.php:3402 libraries/Util.php:3412 libraries/Util.php:3418 -#: libraries/Util.php:3698 libraries/Util.php:4335 libraries/Util.php:4352 +#: libraries/Util.php:3409 libraries/Util.php:3419 libraries/Util.php:3425 +#: libraries/Util.php:3705 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/central_columns.lib.php:725 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,7 +260,7 @@ msgstr "Taules" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -471,7 +471,7 @@ msgstr "Afegir geometria" #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -501,7 +501,7 @@ msgstr "Afegir geometria" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Executa" @@ -529,7 +529,7 @@ msgstr "Fallit" msgid "Incomplete params" msgstr "Paràmetres incomplets" -#: import.php:184 +#: import.php:186 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -538,15 +538,15 @@ msgstr "" "Probablement has triat d'enviar un arxiu que és massa gran. Consulta la " "%sdocumentació%s per trobar formes de modificar aquest límit." -#: import.php:360 import.php:665 +#: import.php:362 import.php:667 msgid "Showing bookmark" msgstr "Mostrant consultes desades" -#: import.php:376 import.php:661 +#: import.php:378 import.php:663 msgid "The bookmark has been deleted." msgstr "S'ha esborrat la consulta desada." -#: import.php:474 +#: import.php:476 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -555,12 +555,12 @@ msgstr "" "L'arxiu carregat no es pot moure,donat que el servidor ha activat " "«open_basedir» treient l'accés al directori %s (pels arxius temporals)." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:492 import.php:569 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "No es pot llegir l'arxiu!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:503 import.php:518 import.php:543 import.php:558 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -569,7 +569,7 @@ msgstr "" "S'intenta carregar un arxiu amb una compresió no suportada (%s). O bé aquest " "suport no s'ha implementat encara o bé el teniu desactivat a la configuració." -#: import.php:574 +#: import.php:576 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -579,22 +579,25 @@ msgstr "" "o el tamany de l'arxiu es més gran que el permès per la configuració del " "vostre PHP. Veieu [doc@faq1-16]PFC(FAQ) 1.16[/doc]." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:628 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "" "No es poden carregar les extensions d'importació, comprova l'instal.lació!" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:670 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "%s creat com a Consulta desada." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "Importació finalitzada correctament, %d consultes executades." +#: import.php:680 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "Importació finalitzada correctament, %d consultes executades." +msgstr[1] "Importació finalitzada correctament, %d consultes executades." -#: import.php:705 +#: import.php:711 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -604,7 +607,7 @@ msgstr "" "l'importació %storneu a enviar el mateix arxiu%s a importar i el procés " "continuarà." -#: import.php:715 +#: import.php:721 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -618,7 +621,7 @@ msgid "Could not load the progress of the import." msgstr "No es pot carregar la progressió en la importació." #: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: libraries/Util.php:802 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Enrere" @@ -714,10 +717,11 @@ msgstr "Mostra informació de PHP" msgid "Version information:" msgstr "Informació de la versió:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:449 libraries/Util.php:516 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Documentació" @@ -1010,7 +1014,7 @@ msgid "Save & close" msgstr "Desa i tanca" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Reinicia" @@ -1067,7 +1071,7 @@ msgstr "Tria columna(es) per a l'índex." msgid "You have to add at least one column." msgstr "Has d'afegir al menys una columna." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:132 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 @@ -1082,7 +1086,7 @@ msgstr "Simulació de consulta" msgid "Matched rows:" msgstr "Files coincidents:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:137 libraries/Util.php:703 msgid "SQL query:" msgstr "Consulta SQL:" @@ -1141,12 +1145,12 @@ msgid "Other" msgstr "Altre" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:160 libraries/Util.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:162 libraries/Util.php:1500 msgid "." msgstr "." @@ -1253,40 +1257,40 @@ msgid "Processes" msgstr "Processos" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:202 libraries/Util.php:1442 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:203 libraries/Util.php:1444 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:204 libraries/Util.php:1446 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:205 libraries/Util.php:1448 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:206 libraries/Util.php:1450 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:207 libraries/Util.php:1452 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:208 libraries/Util.php:1454 msgid "EiB" msgstr "EB" @@ -1304,7 +1308,7 @@ msgstr "Consultes" msgid "Traffic" msgstr "Tràfic" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4333 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Configuració" @@ -1319,7 +1323,7 @@ msgstr "Afegeix al menys una variable a les series!" #: js/messages.php:219 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1526,7 +1530,7 @@ msgstr "Analitzant…" msgid "Explain output" msgstr "Explicar sortida" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4329 #: 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:91 libraries/tracking.lib.php:284 @@ -1627,8 +1631,8 @@ msgstr "" "Restablint la configuració per defecte…" #: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 -#: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 -#: libraries/Util.php:4357 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:581 libraries/Util.php:4332 libraries/Util.php:4347 +#: libraries/Util.php:4364 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 #: libraries/server_status_monitor.lib.php:313 prefs_manage.php:237 #: setup/frames/menu.inc.php:26 @@ -1782,7 +1786,7 @@ msgstr "Copiant base de dades" msgid "Changing charset" msgstr "Canviant de joc de caràcters" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:377 libraries/Util.php:3291 msgid "Enable foreign key checks" msgstr "Activa les comprovacions de claus externes" @@ -1817,9 +1821,9 @@ msgstr "" #: js/messages.php:392 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 -#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 -#: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 -#: libraries/Util.php:4356 libraries/config/messages.inc.php:255 +#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3712 +#: libraries/Util.php:3713 libraries/Util.php:4331 libraries/Util.php:4346 +#: libraries/Util.php:4363 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:168 libraries/rte/rte_list.lib.php:149 #: libraries/server_privileges.lib.php:2513 #: libraries/server_privileges.lib.php:2592 @@ -1868,8 +1872,8 @@ msgstr "Mostrar quadre de consultes" #: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 -#: libraries/Util.php:3703 libraries/Util.php:3704 +#: libraries/Index.php:721 libraries/Util.php:732 libraries/Util.php:1242 +#: libraries/Util.php:3710 libraries/Util.php:3711 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 #: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:182 @@ -2056,7 +2060,7 @@ msgid "No dependencies selected!" msgstr "No s'han triat dependències!" #: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2141,7 +2145,7 @@ msgid "Data point content" msgstr "Contingut del punter de dades" #: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignora" @@ -2385,7 +2389,7 @@ msgid "Select database first" msgstr "Tria primer la base de dades" #: js/messages.php:599 libraries/DisplayResults.php:5029 -#: libraries/Util.php:4217 +#: libraries/Util.php:4224 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" @@ -2586,12 +2590,10 @@ msgid "Copy tables to" msgstr "Còpia taules a" #: js/messages.php:712 -#| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Afegir prefix de taula" #: js/messages.php:713 -#| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Reemplaçar taula amb prefix" @@ -2663,63 +2665,63 @@ msgid "December" msgstr "Desembre" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:773 libraries/Util.php:1664 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:775 libraries/Util.php:1666 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:777 libraries/Util.php:1668 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:779 libraries/Util.php:1670 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:781 libraries/Util.php:1672 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:783 libraries/Util.php:1674 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:785 libraries/Util.php:1676 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:787 libraries/Util.php:1678 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:789 libraries/Util.php:1680 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:791 libraries/Util.php:1682 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:793 libraries/Util.php:1684 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:795 libraries/Util.php:1686 msgid "Dec" msgstr "Des" @@ -2757,32 +2759,32 @@ msgid "Sun" msgstr "Diu" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:816 libraries/Util.php:1691 msgid "Mon" msgstr "Dll" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:818 libraries/Util.php:1693 msgid "Tue" msgstr "Dma" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:820 libraries/Util.php:1695 msgid "Wed" msgstr "Dcr" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:822 libraries/Util.php:1697 msgid "Thu" msgstr "Dij" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:824 libraries/Util.php:1699 msgid "Fri" msgstr "Div" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:826 libraries/Util.php:1701 msgid "Sat" msgstr "Dis" @@ -2923,9 +2925,9 @@ msgstr "Entra una hora o data vàlida" msgid "Please enter a valid HEX input" msgstr "Entra valor HEX correcte" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:679 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Error" @@ -2979,18 +2981,18 @@ msgstr "" "Caràcter inesperat en la línia %1$s. S'esperava una tabulació, però s'ha " "trobat \"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "No es pot llegir l'arxiu de configuració existent (%s)." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permisos incorrectes a l'arxiu de configuració, no pot ser modificable per " "tothom!" -#: libraries/Config.php:1519 +#: libraries/Config.php:1528 msgid "Font size" msgstr "Tamany de lletra" @@ -3060,7 +3062,7 @@ msgstr "Durant la sessió actual" msgid "Explain" msgstr "Explica" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1328 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Perfils" @@ -3094,8 +3096,8 @@ msgid "History" msgstr "Historial" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3188,7 +3190,7 @@ msgstr "Amaga la traça" msgid "Count:" msgstr "Recompte:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:339 libraries/Util.php:1298 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 @@ -3244,7 +3246,6 @@ msgid "Switch to dark theme" msgstr "Canvia al tema <>" #: libraries/DatabaseInterface.php:1528 -#| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "No es pot establir el joc de caracters de connexió configurat!" @@ -3428,9 +3429,9 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s resultat a %2$s" msgstr[1] "%1$s resultats a %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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,30 +3488,30 @@ msgstr "Filtrar files" msgid "Search this table" msgstr "Cerca aquesta taula" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Inici" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Pàgina anterior" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Pàgina següent" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Darrera pàgina" @@ -3581,7 +3582,7 @@ msgstr "Pot ser aproximat. Veieu [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "La vostra comanda SQL ha estat executada amb èxit." @@ -3615,7 +3616,7 @@ msgid "Query took %01.4f seconds." msgstr "La consulta tarda %01.4f segons." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3623,7 +3624,7 @@ msgid "With selected:" msgstr "Amb marca:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3702,15 +3703,15 @@ msgstr "Pujada de l'arxiu aturada per l'extensió." msgid "Unknown error in file upload." msgstr "Error desconegut al pujar l'arxiu." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Error movent l'arxiu pujat, consulta la [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Error moven l'arxiu pujat." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "No es pot llegir l'arxiu pujat." @@ -3774,8 +3775,8 @@ msgid "Keyname" msgstr "Nom de clau" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3823,15 +3824,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Elimina" @@ -3844,7 +3845,7 @@ msgstr "" "Els indexos %1$s i %2$s semblen iguals i un d'ells possiblement es podria " "esborrar." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3896,8 +3897,8 @@ msgid "Table" msgstr "Taula" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3905,25 +3906,25 @@ msgstr "Taula" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Cerca" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Insereix" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3931,24 +3932,24 @@ msgid "Privileges" msgstr "Permisos" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operacions" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Seguiment" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3959,16 +3960,16 @@ msgstr "Disparadors" msgid "Database seems to be empty!" msgstr "La base de dades sembla buida!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Consulta segons exemple" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutines" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3976,16 +3977,16 @@ msgstr "Rutines" msgid "Events" msgstr "Esdeveniments" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Dissenyador" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Columnes centrals" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3998,34 +3999,34 @@ msgid "User accounts" msgstr "Comptes d'usuaris" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Registre binari" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicació" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variables" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Jocs de caràcters" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Motors" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Complements" @@ -4661,16 +4662,16 @@ msgstr "Espacial" msgid "Max: %s%s" msgstr "Màx: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Anàlisi estàtica:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "s'han trobat %d errors durant l'anàlisi." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4681,99 +4682,99 @@ msgstr "s'han trobat %d errors durant l'anàlisi." msgid "MySQL said: " msgstr "MySQL diu: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Explica SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Salta l'explicació de l'SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "Analitzar Explain a %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "Sense codi PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "Executa consulta" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Crea codi PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Editar línia" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Diu" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a les %H:%M:%S" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dies, %s hores, %s minuts i %s segons" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Falta paràmetre:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Vés a la base de dades \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La funcionalitat %s es veu afectada per un error conegut, veieu %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Prem per canviar" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Navega al teu ordinador:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, 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:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "No està disponible el directori indicat per pujar arxius." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "No hi ha files per pujar!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Buida" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Executar" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Usuaris" @@ -4903,11 +4904,11 @@ msgstr "Afegir una nova columna" msgid "Attributes" msgstr "Atributs" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "No es pot llegir l'arxiu de configuració!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4915,32 +4916,32 @@ msgstr "" "Això generalment significa que té un error de sintaxi, revisa els errors que " "es mostren a continuació." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "No es pot carregar la configuració per defecte des de: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Index de servidor invàlid: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nom de host invàlid pel servidor %1$s. Si us plau, reviseu la configuració." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Servidor %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Mètode d'identificació incorrecte establert a la configuració:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4952,24 +4953,24 @@ msgstr "" "phpMyAdmin fa servir actualment el fus horari per defecte del servidor de " "base de dades." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Es necessari actualitzar a %s %s o posterior." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Error: No coincideix un «token»" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "intent de sobreescriure la variable GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "possible aprofitament" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "detectat teclat numéric" @@ -5706,13 +5707,13 @@ msgstr "Posa els noms de columnes a la primera fila" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Columnes delimitades amb" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Fi de columna amb" @@ -5730,12 +5731,12 @@ msgstr "Treu caràcters CRLF de dins les columnes" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Columnes acabades amb" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Línies acabades amb" @@ -7895,7 +7896,7 @@ msgid "Table %s has been emptied." msgstr "S'ha buidat la taula %s." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Vista %s esborrada." @@ -8028,8 +8029,8 @@ msgid "No data to display" msgstr "No hi ha dades per mostrar" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8067,52 +8068,52 @@ msgstr[1] "Els noms '%s' són paraules clau reservades de MySQL." msgid "No column selected." msgstr "No s'han triat columnes." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Les columnes s'han mogut correctament." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Error de consulta" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Canvi" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Índex" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Espacial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Text sencer" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Valors diferents" @@ -8122,7 +8123,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "No es troba l'extensió %s. Comprova la configuració de PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Sense canvis" @@ -8920,56 +8921,56 @@ msgstr "MySQL ha retornat un conjunt buit (p.e. cap fila)." msgid "[ROLLBACK occurred.]" msgstr "[S'ha produït un ROLLBACK.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Editar estructura seguint l'enllaç \"Estructura\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Anar a la base de dades %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Editar configuració de %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Anar a la taula: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Estructura de %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Anar a la vista: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9018,55 +9019,55 @@ msgstr "O" msgid "web server upload directory:" msgstr "directori de pujada d'arxius del servidor web:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Edita/Insereix" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Continua l'inserció amb %s files" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "i llavors" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Insereix com a nova fila" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Insereix com a nova fila i ignora els errors" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Mostra la consulta d'inserció" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Torna" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Insereix un nou registre" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Torna a aquesta pàgina" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Edita el següent registre" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." 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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9078,11 +9079,11 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Mostrant consulta SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Id de la fila inserida: %1$d" @@ -9118,7 +9119,6 @@ msgid "Data only" msgstr "Només dades" #: libraries/mult_submits.lib.php:349 -#| msgid "Add AUTO_INCREMENT value" msgid "Add AUTO INCREMENT value" msgstr "Afegeix valor AUTO INCREMENT" @@ -9956,7 +9956,7 @@ msgstr "Repara la taula" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Esborra les dades o la taula" @@ -9969,32 +9969,32 @@ msgid "Delete the table (DROP)" msgstr "Esborra la taula (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analitza" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Comprova" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimitza" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Reconstrueix" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Repara" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Truncar" @@ -10020,35 +10020,35 @@ msgstr "Elimina particionament" msgid "Check referential integrity:" msgstr "Comprova la integritat referencial:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "No es pot moure la taula sobre ella mateixa!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "No es pot copiar la taula sobre ella mateixa!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Taula %s moguda a %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "La taula %s s'ha copiat a %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "El nom de la taula és buit!" @@ -10225,7 +10225,7 @@ msgstr "Opcions de bolcat de dades" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Bolcant dades de la taula" @@ -10249,21 +10249,21 @@ msgstr "Definició" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Estructura de la taula" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Estructura per a vista" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Estructura de suport per a vistes" @@ -10354,7 +10354,7 @@ msgid "Database:" msgstr "Base de dades:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Dades:" @@ -10455,7 +10455,7 @@ msgid "Data creation options" msgstr "Opcions de creació de dades" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Truncar taula abans d'inserir" @@ -10533,13 +10533,12 @@ msgstr "" "bolquin i recarreguin entre servidors de diferents zones horàries)
" #: libraries/plugins/export/ExportSql.php:508 -#| msgid "It appears your database uses functions;" msgid "It appears your database uses routines;" msgstr "Sembla que la teva base de dades fa servir rutines;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "exportar els àlies podria no funcionar correctament en tots els casos." @@ -10581,52 +10580,52 @@ msgstr "en ús" msgid "It appears your database uses views;" msgstr "Sembla que la teva base de dades fa servir vistes;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Restriccions per taules bolcades" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Restriccions per la taula" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indexos per taules bolcades" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Index de la taula" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT per les taules bolcades" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT per la taula" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "TIPUS MIME PER LA TAULA" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELACIONS DE LA TAULA" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Sembla que la teva base de dades fa servir disparadors (-triggers-);" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "(Veure a sota per a la visualització actual)" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Error llegint dades:" @@ -10681,15 +10680,15 @@ msgstr "" msgid "Column names: " msgstr "Nom de les columnes: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Paràmetre incorrecte per importació CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10699,18 +10698,18 @@ msgstr "" "s'han escrit correctament, separats per comes i sense incloure'ls entre " "cometes." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Format incorrecte a l'entrada CSV a la línia %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Comptador de columnes incorrecte en l'entrada CSV a la línia %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Aquesta extensió no suporta importacions comprimides!" @@ -10718,7 +10717,7 @@ msgstr "Aquesta extensió no suporta importacions comprimides!" msgid "MediaWiki Table" msgstr "Taula MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Format incorrecte d'entrada mediawiki a la línia:
%s." @@ -10732,9 +10731,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importar moneda (ex. $5.00 a 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10742,7 +10741,7 @@ msgstr "" "El fitxer XML especificat era incorrecte o incomplet. Si us plau, arreglar-" "lo i torna a intentar-ho." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "No es pot interpretar el full de càlcul OpenDocument!" @@ -10750,23 +10749,23 @@ msgstr "No es pot interpretar el full de càlcul OpenDocument!" msgid "ESRI Shape File" msgstr "Arxiu de tipus ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Hi va haver un error en importar el fitxer de tipus ESRI: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "Has intentat importar un arxiu no vàlid o conté dades no vàlides!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "La extensió espacial MySQL no és compatible amb el tipus ESRI \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "L'arxiu importat no té dades!" @@ -13792,15 +13791,11 @@ msgstr "S'esperaven %1$d valors, però s'han trobat %2$d." msgid "An opening bracket followed by a set of values was expected." msgstr "S'esperava un claudàtor d'obertura seguit per un conjunt de valors." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "S'esperava un claudàtor d'obertura." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "S'esperava una coma o un claudàtor de tancament" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "S'esperava una coma o un claudàtor de tancament." @@ -13813,17 +13808,18 @@ msgstr "S'esperava un claudàtor de tancament." msgid "Unrecognized data type." msgstr "Tipus de dades desconegut." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "S'ha trobat un àlies anteriorment." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Punt inesperat." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "S'esperava un àlies." @@ -13841,19 +13837,19 @@ msgstr "S'esperava un desplaçament." msgid "This option conflicts with \"%1$s\"." msgstr "Aquesta opció està en conflicte amb \"%1$s\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "S'esperava el nom antic de la taula." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "S'esperava la paraula clau \"TO\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "S'esperava el nou nom de la taula." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "S'esperava una operació de canvi de nom." @@ -13879,15 +13875,15 @@ 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:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Inici no esperat de declaració." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Tipus de declaració no reconegut." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "No s'ha iniciat cap transacció anteriorment." @@ -13910,15 +13906,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Paraula clau no reconeguda." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "S'esperava el nom de l'entitat." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "S'esperava una paraula clau \"RETURNS\"." @@ -14610,7 +14606,7 @@ msgstr "Veure un bolcat (esquema) de la taula" msgid "Invalid table name" msgstr "Nom de taula incorrecte" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Fila: %1$s, Columna: %2$s, Error: %3$s" @@ -15530,7 +15526,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:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Particions" @@ -15563,7 +15559,7 @@ msgstr "Taula de partició" msgid "Edit partitioning" msgstr "Edita particionament" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Editar vista" @@ -15678,11 +15674,11 @@ msgstr "Nom de VISTA" msgid "Column names" msgstr "Nom de les columnes" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Reanomena la vista a" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Esborrar la vista (DROP)" @@ -16983,6 +16979,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "{concurrent_insert} està establert a 0" +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "S'esperava una coma o un claudàtor de tancament" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/ckb.po b/po/ckb.po index 9edc531312..d8dac981ab 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-11-20 15:47+0000\n" "Last-Translator: Dana Akram \n" "Language-Team: Kurdish Sorani %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3606,30 +3612,30 @@ msgstr "پاڵێو" msgid "Search this table" msgstr "گەڕان لە بنکەی دراو" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "دەسپێکردن" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "پێشتر" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "دواتر" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "کۆتایی" @@ -3704,7 +3710,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3744,7 +3750,7 @@ msgid "Query took %01.4f seconds." msgstr "داواکاریەکە %01.4f چرکەی خایاند" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3752,7 +3758,7 @@ msgid "With selected:" msgstr "لەگەڵ پەڕگەی دەستنیشانکراو:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3834,15 +3840,15 @@ msgstr "بارکردنی فایل ڕاگیرا بەهۆی پاشگرەوە." msgid "Unknown error in file upload." msgstr "هەڵەیەکی نەزانراو لە بارکردنی فایل." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "هەڵەیەک لەکاتی گواستنەوەی فایلی بارکراو." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "File was not an uploaded file." msgid "Cannot read uploaded file." @@ -3910,8 +3916,8 @@ msgid "Keyname" msgstr "کلیلەناو" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3959,15 +3965,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "فڕیدان" @@ -3978,7 +3984,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4028,8 +4034,8 @@ msgid "Table" msgstr "خشتە" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4037,25 +4043,25 @@ msgstr "خشتە" msgid "SQL" msgstr "سیكوێڵ" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "گەڕان" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "تێخستن" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4063,24 +4069,24 @@ msgid "Privileges" msgstr "تایبەتمەندێتیەکان" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "کارەکان" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4091,16 +4097,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "پێدەچێت بنکە زانیاریەکە بەتاڵ بێت!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "داواکاری" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "ڕۆتینەکان" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4108,18 +4114,18 @@ msgstr "ڕۆتینەکان" msgid "Events" msgstr "چالاکیەکان" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "شێوەساز" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add columns" msgid "Central columns" msgstr "ستونەکان زیادبکە" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4134,34 +4140,34 @@ msgid "User accounts" msgstr "بەکارهێنەرەکان" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "تۆماری دوودانەیی" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "دووپاتکاری" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "گۆڕاوەکان" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "گورزەپیتەکان" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "بزوێنەرەکان" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "پێوەکراوەکان" @@ -4754,16 +4760,16 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4774,38 +4780,38 @@ msgstr "" msgid "MySQL said: " msgstr "مای‌ئێس‌كیو‌ئێڵ دەڵێت: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "ڕوونکردنەوەی سیكوێڵ" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "پشتگوێخستنی ڕوونکردنەوەی سیكوێڵ" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "بەبێ پی ئێچ پی کۆد" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "ناردنی داواکاری" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "پی ئێچ پی کۆد دروست بکە" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit Index" msgctxt "Inline edit query" @@ -4813,69 +4819,69 @@ msgid "Edit inline" msgstr "چاکردنی نیشاندەر" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "ڕادەی لەدەستچوو:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 #, fuzzy #| msgid "There are no recent tables" msgid "There are no files to upload!" msgstr "هیچ خشتەیەکی تازە نیە" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "بەتاڵ" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "بەکارهێنەرەکان" @@ -5013,44 +5019,44 @@ msgstr "زیادکردن/سڕینەوەی ستونەکان" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Failed to read configuration file!" msgstr "چاودێری شێوه‌پێدانی ناوخۆیی نەگونجاوە" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "سێرڤەر" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5058,24 +5064,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5754,13 +5760,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5778,12 +5784,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -7797,7 +7803,7 @@ msgid "Table %s has been emptied." msgstr "خشتەی %s خاڵی کرا." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -7933,8 +7939,8 @@ msgid "No data to display" msgstr "هیچ زانیاریەک نەدۆزراوە" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7982,52 +7988,52 @@ msgstr[1] "" msgid "No column selected." msgstr "هیچ ڕیزێک هەڵنەبژێراوە" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "گۆڕین" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -8037,7 +8043,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8796,54 +8802,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8889,53 +8895,53 @@ msgstr "یان" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "گۆڕین/تێخستن" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8947,11 +8953,11 @@ msgstr "" msgid "Value" msgstr "نرخ" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9816,7 +9822,7 @@ msgstr "چاکردنی خشتە" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9829,32 +9835,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9882,35 +9888,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -10083,7 +10089,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10107,21 +10113,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10219,7 +10225,7 @@ msgid "Database:" msgstr "بنکەی دراو" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Database" msgid "Data:" @@ -10320,7 +10326,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10389,7 +10395,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10435,58 +10441,58 @@ msgstr "بەکار دەبرێت" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy msgid "Indexes for dumped tables" msgstr "لەناو خشتە:\n" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy msgid "Indexes for table" msgstr "لەناو خشتە:\n" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "زۆرکردنی نرخی زۆربوونی خۆکارانە" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "زۆرکردنی نرخی زۆربوونی خۆکارانە" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10536,33 +10542,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10570,7 +10576,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -10583,15 +10589,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Could not save recent table" msgid "Could not parse OpenDocument Spreadsheet!" @@ -10601,23 +10607,23 @@ msgstr "نەتوانرا خشتە تازەکە پاشەکەوت بکرێت" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -13435,15 +13441,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -13458,17 +13460,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -13490,19 +13493,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -13530,17 +13533,17 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "Number of rows" msgid "Unexpected beginning of statement." msgstr "ژمارەی ڕیزەکان" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13561,17 +13564,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "ڕیزەکە سڕایەوە" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14249,7 +14252,7 @@ msgstr "" msgid "Invalid table name" msgstr "ناوی خشتەی نادروست" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15269,7 +15272,7 @@ msgid "at beginning of table" msgstr "ژمارەی ڕیزەکان" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partial texts" msgid "Partitions" @@ -15314,7 +15317,7 @@ msgstr "تێکستە لاوەکیەکان" msgid "Edit partitioning" msgstr "چاکردنی نیشاندەر" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -15439,11 +15442,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Drop the database (DROP)" msgid "Delete the view (DROP)" diff --git a/po/cs.po b/po/cs.po index 348c2ee938..6fd6b143c6 100644 --- a/po/cs.po +++ b/po/cs.po @@ -3,13 +3,13 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-02-16 10:08+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" @@ -49,7 +49,7 @@ msgid "Table comments:" msgstr "Komentář k tabulce:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -103,7 +103,7 @@ msgstr "Typ" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -165,12 +165,12 @@ msgid "Comments" msgstr "Komentáře" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Primární" @@ -203,12 +203,12 @@ msgstr "Ne" #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -253,8 +253,8 @@ msgid "Tables" msgstr "Tabulky" #: db_export.php:66 libraries/Menu.php:323 libraries/Menu.php:430 -#: libraries/Util.php:3402 libraries/Util.php:3412 libraries/Util.php:3418 -#: libraries/Util.php:3698 libraries/Util.php:4335 libraries/Util.php:4352 +#: libraries/Util.php:3409 libraries/Util.php:3419 libraries/Util.php:3425 +#: libraries/Util.php:3705 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/central_columns.lib.php:725 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,7 +262,7 @@ msgstr "Tabulky" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -468,7 +468,7 @@ msgstr "Přidat geometrii" #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -498,7 +498,7 @@ msgstr "Přidat geometrii" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Proveď" @@ -525,7 +525,7 @@ msgstr "Chyba" msgid "Incomplete params" msgstr "Chybí parametry" -#: import.php:184 +#: import.php:186 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -534,15 +534,15 @@ msgstr "" "Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si " "prosím %sdokumentaci%s, jak toto omezení obejít." -#: import.php:360 import.php:665 +#: import.php:362 import.php:667 msgid "Showing bookmark" msgstr "Zobrazuji oblíbený dotaz" -#: import.php:376 import.php:661 +#: import.php:378 import.php:663 msgid "The bookmark has been deleted." msgstr "Položka byla smazána z oblíbených." -#: import.php:474 +#: import.php:476 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -551,12 +551,12 @@ msgstr "" "Nahraný soubor nemohl být přesunut, protože na serveru je nastaveno " "open_basedir bez přístupu k adresáři %s (nutné pro dočasné soubory)." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:492 import.php:569 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "Soubor nelze přečíst!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:503 import.php:518 import.php:543 import.php:558 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -565,7 +565,7 @@ msgstr "" "Pokusili jste se importovat soubor s nepodporovanou kompresí (%s). Buďto " "podpora není implementována nebo je vypnuta ve vašem nastavení." -#: import.php:574 +#: import.php:576 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -575,22 +575,26 @@ msgstr "" "nebo jeho velikost překročila velikost povolenou v nastavení PHP. Viz " "[doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:628 libraries/display_import.lib.php:662 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:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:670 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "Byl vytvořen oblíbený dotaz %s." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "Import byl úspěšně dokončen, bylo provedeno %d dotazů." +#: import.php:680 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "Import byl úspěšně dokončen, bylo provedeno %d dotazů." +msgstr[1] "Import byl úspěšně dokončen, bylo provedeno %d dotazů." +msgstr[2] "Import byl úspěšně dokončen, bylo provedeno %d dotazů." -#: import.php:705 +#: import.php:711 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -599,7 +603,7 @@ msgstr "" "Limit pro běh importu vypršel, prosím %sodešlete formulář%s znovu se stejným " "souborem a import bude pokračovat." -#: import.php:715 +#: import.php:721 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -613,7 +617,7 @@ msgid "Could not load the progress of the import." msgstr "Nelze zjistit průběh importu." #: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: libraries/Util.php:802 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Zpět" @@ -708,10 +712,11 @@ msgstr "Zobrazit informace o PHP" msgid "Version information:" msgstr "Informace o verzi:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:449 libraries/Util.php:516 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentace" @@ -988,7 +993,7 @@ msgid "Save & close" msgstr "Uložit a zavřít" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Původní" @@ -1045,7 +1050,7 @@ 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:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:132 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 @@ -1060,7 +1065,7 @@ msgstr "Simulovat dotaz" msgid "Matched rows:" msgstr "Odpovídající záznamy:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:137 libraries/Util.php:703 msgid "SQL query:" msgstr "SQL dotaz:" @@ -1119,12 +1124,12 @@ msgid "Other" msgstr "Ostatní" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:160 libraries/Util.php:1498 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:162 libraries/Util.php:1500 msgid "." msgstr "," @@ -1229,40 +1234,40 @@ msgid "Processes" msgstr "Procesy" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:202 libraries/Util.php:1442 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:203 libraries/Util.php:1444 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:204 libraries/Util.php:1446 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:205 libraries/Util.php:1448 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:206 libraries/Util.php:1450 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:207 libraries/Util.php:1452 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:208 libraries/Util.php:1454 msgid "EiB" msgstr "EiB" @@ -1280,7 +1285,7 @@ msgstr "Dotazy" msgid "Traffic" msgstr "Provoz" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4333 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Nastavení" @@ -1295,7 +1300,7 @@ msgstr "Prosím přidejte do série alespoň jednu hodnotu!" #: js/messages.php:219 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1499,7 +1504,7 @@ msgstr "Analyzuji…" msgid "Explain output" msgstr "Vysvětlení dotazu" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4329 #: 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:91 libraries/tracking.lib.php:284 @@ -1599,8 +1604,8 @@ msgstr "" "nastavení…" #: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 -#: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 -#: libraries/Util.php:4357 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:581 libraries/Util.php:4332 libraries/Util.php:4347 +#: libraries/Util.php:4364 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 #: libraries/server_status_monitor.lib.php:313 prefs_manage.php:237 #: setup/frames/menu.inc.php:26 @@ -1754,7 +1759,7 @@ msgstr "Kopíruji databázi" msgid "Changing charset" msgstr "Měním znakovou sadu" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:377 libraries/Util.php:3291 msgid "Enable foreign key checks" msgstr "Zapnout kontrolu cizích klíčů" @@ -1788,9 +1793,9 @@ msgstr "Definice uložené funkce musí obsahovat příkaz RETURN!" #: js/messages.php:392 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 -#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 -#: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 -#: libraries/Util.php:4356 libraries/config/messages.inc.php:255 +#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3712 +#: libraries/Util.php:3713 libraries/Util.php:4331 libraries/Util.php:4346 +#: libraries/Util.php:4363 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:168 libraries/rte/rte_list.lib.php:149 #: libraries/server_privileges.lib.php:2513 #: libraries/server_privileges.lib.php:2592 @@ -1839,8 +1844,8 @@ msgstr "Zobrazit pole pro dotaz" #: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 -#: libraries/Util.php:3703 libraries/Util.php:3704 +#: libraries/Index.php:721 libraries/Util.php:732 libraries/Util.php:1242 +#: libraries/Util.php:3710 libraries/Util.php:3711 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 #: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:182 @@ -2025,7 +2030,7 @@ msgid "No dependencies selected!" msgstr "Nebyly vybrány žádné závislosti!" #: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2108,7 +2113,7 @@ msgid "Data point content" msgstr "Obsah datového bodu" #: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignorovat" @@ -2346,7 +2351,7 @@ msgid "Select database first" msgstr "Nejdříve zvolte databázi" #: js/messages.php:599 libraries/DisplayResults.php:5029 -#: libraries/Util.php:4217 +#: libraries/Util.php:4224 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" @@ -2611,63 +2616,63 @@ msgid "December" msgstr "prosinec" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:773 libraries/Util.php:1664 msgid "Jan" msgstr "led" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:775 libraries/Util.php:1666 msgid "Feb" msgstr "úno" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:777 libraries/Util.php:1668 msgid "Mar" msgstr "bře" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:779 libraries/Util.php:1670 msgid "Apr" msgstr "dub" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:781 libraries/Util.php:1672 msgctxt "Short month name" msgid "May" msgstr "kvě" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:783 libraries/Util.php:1674 msgid "Jun" msgstr "čen" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:785 libraries/Util.php:1676 msgid "Jul" msgstr "čec" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:787 libraries/Util.php:1678 msgid "Aug" msgstr "srp" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:789 libraries/Util.php:1680 msgid "Sep" msgstr "zář" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:791 libraries/Util.php:1682 msgid "Oct" msgstr "říj" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:793 libraries/Util.php:1684 msgid "Nov" msgstr "lis" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:795 libraries/Util.php:1686 msgid "Dec" msgstr "pro" @@ -2705,32 +2710,32 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:816 libraries/Util.php:1691 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:818 libraries/Util.php:1693 msgid "Tue" msgstr "Úte" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:820 libraries/Util.php:1695 msgid "Wed" msgstr "Stř" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:822 libraries/Util.php:1697 msgid "Thu" msgstr "Čtv" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:824 libraries/Util.php:1699 msgid "Fri" msgstr "Pát" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:826 libraries/Util.php:1701 msgid "Sat" msgstr "Sob" @@ -2871,9 +2876,9 @@ msgstr "Prosím zadejte platné datum nebo čas" msgid "Please enter a valid HEX input" msgstr "Prosím zadejte platné hexadecimalní číslo" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:679 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Chyba" @@ -2926,18 +2931,18 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" "Neočekávaný znak na řádku %1$s. Očekáván tabelátor, ale nalezeno „%2$s“." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Nepodařilo se přečíst existující konfigurační soubor (%s)." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Chybná přístupová práva konfiguračního souboru, neměl by být zapisovatelný " "pro všechny!" -#: libraries/Config.php:1519 +#: libraries/Config.php:1528 msgid "Font size" msgstr "Velikost písma" @@ -3008,7 +3013,7 @@ msgstr "Během aktuální relace" msgid "Explain" msgstr "Vysvětlit" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1328 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profilování" @@ -3042,8 +3047,8 @@ msgid "History" msgstr "Historie" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3136,7 +3141,7 @@ msgstr "Skrýt trasovací informace" msgid "Count:" msgstr "Počet:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:339 libraries/Util.php:1298 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 @@ -3378,9 +3383,9 @@ msgstr[0] "%1$s odpovídající záznam v %2$s" 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:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3437,30 +3442,30 @@ msgstr "Filtrovat řádky" msgid "Search this table" msgstr "Vyhledávání v této tabulce" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "První" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Předchozí" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Následující" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Poslední" @@ -3531,7 +3536,7 @@ msgstr "Počet nemusí být přesný, viz [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Váš SQL-dotaz byl úspěšně vykonán." @@ -3565,7 +3570,7 @@ msgid "Query took %01.4f seconds." msgstr "Dotaz trval %01.4f sekund." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3573,7 +3578,7 @@ msgid "With selected:" msgstr "Zaškrtnuté:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3652,16 +3657,16 @@ msgstr "Nahrávání souboru zastaveno rozšířením." msgid "Unknown error in file upload." msgstr "Neznámá chyba při nahrávání souboru." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Chyba při přejmenování nahraného soubory, viz [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Chyba při přesouvání nahraného souboru." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Nahraný soubor nelze přečíst." @@ -3725,8 +3730,8 @@ msgid "Keyname" msgstr "Název klíče" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3774,15 +3779,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Odstranit" @@ -3795,7 +3800,7 @@ msgstr "" "Klíče %1$s a %2$s vypadají stejné a jeden z nich by pravděpodobně mohl být " "odstraněn." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3847,8 +3852,8 @@ msgid "Table" msgstr "Tabulka" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3856,25 +3861,25 @@ msgstr "Tabulka" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Vyhledávání" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Vložit" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3882,24 +3887,24 @@ msgid "Privileges" msgstr "Oprávnění" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Úpravy" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Sledování" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3910,16 +3915,16 @@ msgstr "Spouště" msgid "Database seems to be empty!" msgstr "Databáze se zdá být prázdná!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Dotaz" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutiny" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3927,16 +3932,16 @@ msgstr "Rutiny" msgid "Events" msgstr "Události" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Návrhář" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Centrální sloupce" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3949,34 +3954,34 @@ msgid "User accounts" msgstr "Uživatelské účty" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binární log" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikace" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Proměnné" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Znakové sady" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Úložiště" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Rozšíření" @@ -4596,16 +4601,16 @@ msgstr "Prostorové" msgid "Max: %s%s" msgstr "Maximální velikost: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Statická analýza:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "Při analýze bylo nalezeno %d chyb." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4616,98 +4621,98 @@ msgstr "Při analýze bylo nalezeno %d chyb." msgid "MySQL said: " msgstr "MySQL hlásí: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Vysvětlit SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Bez vysvětlení SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "Analyzovat výstup příkazu EXPLAIN na %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "Bez PHP kódu" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "Provést dotaz" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Vytvořit PHP kód" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Upravit zde v řádku" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Ned" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%a %d. %b %Y, %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dnů, %s hodin, %s minut a %s sekund" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Chybějící parametr:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Přejít na databázi „%s“." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkčnost %s je omezena známou chybou, viz %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Klikněte pro přepnutí" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Procházet váš počítač:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, 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:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Nebyl zvolen žádný soubor pro nahrání!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Vyprázdnit" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Spustit" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Uživatelé" @@ -4835,11 +4840,11 @@ msgstr "Přidat nový sloupec" msgid "Attributes" msgstr "Vlastnosti" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Nepodařilo se načíst konfigurační soubor!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4847,31 +4852,31 @@ msgstr "" "Obvykle to je způsobenou chybou v tomto souboru, prosím opravte jakékoliv " "chyby vypsané níže." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nepodařilo se nahrát výchozí nastavení ze souboru: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Chybné číslo serveru: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Chybné jméno serveru pro server %1$s. Prosím zkontrolujte nastavení." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "V nastavení máte špatnou přihlašovací metodu:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4882,24 +4887,24 @@ msgstr "" "nastavení pro [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em]. phpMyAdmin " "momentálně používá výchozí časové pásmo databázového serveru." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Měli byste aktualizovat %s na verzi %s nebo vyšší." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Chyba: neplatný token" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Pokus o přepsání GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "možný pokus o exploit" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "detekován číselný klíč" @@ -5629,13 +5634,13 @@ msgstr "Přidat jména polí na první řádek" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Pole uzavřené do" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Pole escapována" @@ -5653,12 +5658,12 @@ msgstr "Odstranit znaky konců řádek z polí" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Pole oddělené" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Řádky ukončené" @@ -7800,7 +7805,7 @@ msgid "Table %s has been emptied." msgstr "Tabulka %s byla vyprázdněna." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Pohled %s byl odstraněn." @@ -7934,8 +7939,8 @@ msgid "No data to display" msgstr "Nebyla nalezena žádná data" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7974,52 +7979,52 @@ msgstr[2] "Názvy \"%s\" jsou rezervovaným klíčovým slovem MySQL." msgid "No column selected." msgstr "Nebyl vybrán žádný sloupec." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Vybraná pole byla úspěšně přesunuta." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Chyba dotazu" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Změnit" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Klíč" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Prostorový" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Fulltext" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Odlišné hodnoty" @@ -8029,7 +8034,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Chybí rozšíření %s. Prosím zkontrolujte nastavení PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Žádná změna" @@ -8814,54 +8819,54 @@ msgstr "MySQL vrátil prázdný výsledek (tj. nulový počet řádků)." msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK nastal]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Strukturu upravíte kliknutím na odkaz „Struktura“." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Přejít na databázi: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Upravit nastavení pro %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Přejít na tabulku: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Přejít na pohled: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8909,48 +8914,48 @@ msgstr "Nebo" msgid "web server upload directory:" msgstr "soubor z adresáře pro upload:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Upravit/Vložit" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Pokračovat ve vkládání s %s řádky" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "a poté" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Vložit jako nový řádek" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Vložit jako nový řádek a ignorovat chyby" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Zobrazit dotaz pro vložení" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Návrat na předchozí stránku" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Vložit další řádek" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Návrat na tuto stránku" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Upravit následující řádek" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -8960,7 +8965,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8972,11 +8977,11 @@ msgstr "" msgid "Value" msgstr "Hodnota" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Zobrazuji SQL dotaz" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "ID vloženého řádku: %1$d" @@ -9838,7 +9843,7 @@ msgstr "Opravit tabulku" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Odstranit data nebo tabulku" @@ -9851,32 +9856,32 @@ msgid "Delete the table (DROP)" msgstr "Odstranit tabulku (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analyzovat" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Zkontrolovat" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimalizovat" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Přestavět" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Opravit" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Vyprázdnit" @@ -9904,35 +9909,35 @@ msgstr "Zrušit dělení" msgid "Check referential integrity:" msgstr "Zkontrolovat integritu odkazů:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Nelze přesunout tabulku na sebe samu!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Nelze kopírovat tabulku na sebe samu!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabulka %s byla přesunuta do %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabulka %s byla zkopírována do %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Jméno tabulky je prázdné!" @@ -10109,7 +10114,7 @@ msgstr "Nastavení výpisu dat" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Vypisuji data pro tabulku" @@ -10133,21 +10138,21 @@ msgstr "Definice" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struktura tabulky" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktura pro pohled" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Zástupná struktura pro pohled" @@ -10237,7 +10242,7 @@ msgid "Database:" msgstr "Databáze:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Data:" @@ -10338,7 +10343,7 @@ msgid "Data creation options" msgstr "Možnosti vytváření dat" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Vyprázdnit tabulku před vkládáním" @@ -10421,7 +10426,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10465,52 +10470,52 @@ msgstr "právě se používá" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Omezení pro exportované tabulky" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Omezení pro tabulku" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Klíče pro exportované tabulky" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Klíče pro tabulku" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT pro tabulky" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT pro tabulku" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPY PRO TABULKU" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELACE PRO TABULKU" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktura pro pohled %s exportovaná jako tabulka" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Chyba při čtení dat:" @@ -10563,15 +10568,15 @@ msgstr "" msgid "Column names: " msgstr "Názvy polí: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Neznámý parametr pro import CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10580,18 +10585,18 @@ msgstr "" "Zadán chybný název pole (%s)! Ujistěte se, že jsou jména polí zapsána " "správně, oddělena čárkami a nejsou uzavřena v uvozovkách." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Chybný formát CSV dat na řádku %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Chybný počet polí v CSV datech na řádku %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Tento plugin nepodporuje komprimované soubory!" @@ -10599,7 +10604,7 @@ msgstr "Tento plugin nepodporuje komprimované soubory!" msgid "MediaWiki Table" msgstr "Tabulka MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Chybný formát mediawiki dat na řádku:
%s." @@ -10613,9 +10618,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importovat měny (např. 5.00 místo $5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10623,7 +10628,7 @@ msgstr "" "Zadaný XML soubor je buď poškozený nebo nekompletní. Prosím opravte ho a " "zkuste to znovu." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Nepodařilo se otevřít Sešit OpenDocument!" @@ -10631,23 +10636,23 @@ msgstr "Nepodařilo se otevřít Sešit OpenDocument!" msgid "ESRI Shape File" msgstr "Soubor ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Při nahrávání souboru ESRI došlo k chybě: „%s“." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "Nahraný soubor je chybný nebo obsahuje chybná data!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "Prostorové rozšíření MySQL nepodporuje ESRI typ „%s“." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Nahraný soubor neobsahuje žádná data!" @@ -13651,15 +13656,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -13674,17 +13675,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -13706,23 +13708,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Počet aktuálně otevřených tabulek." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Počet aktuálně otevřených tabulek." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "Template was deleted." msgid "A rename operation was expected." @@ -13755,17 +13757,17 @@ 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:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "at beginning of table" msgid "Unexpected beginning of statement." msgstr "na začátku tabulky" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13788,19 +13790,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14489,7 +14491,7 @@ msgstr "Export tabulky" msgid "Invalid table name" msgstr "Chybné jméno tabulky" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Řádek: %1$s, Sloupec: %2$s, Chyba: %3$s" @@ -15467,7 +15469,7 @@ msgid "at beginning of table" msgstr "na začátku tabulky" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Oddíly" @@ -15510,7 +15512,7 @@ msgstr "používá oddíly" msgid "Edit partitioning" msgstr "Zrušit dělení" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Upravit pohled" @@ -15629,11 +15631,11 @@ msgstr "Jméno pohledu" msgid "Column names" msgstr "Názvy polí" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Přejmenovat pohled na" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Odstranit pohled (DROP)" diff --git a/po/cy.po b/po/cy.po index b8157896f5..68ee398f06 100644 --- a/po/cy.po +++ b/po/cy.po @@ -4,9 +4,9 @@ # FIRST AUTHOR , YEAR. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:04+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Welsh %2$s" msgstr[0] "%s ergyd mewn tabl %s" msgstr[1] "%s ergyd mewn tabl %s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3846,16 +3859,16 @@ msgstr "Hidlydd" msgid "Search this table" msgstr "Chwilio yn y gronfa ddata" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Dechrau" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3864,8 +3877,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Cynt" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -3874,8 +3887,8 @@ msgctxt "Next page" msgid "Next" msgstr "Nesaf" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3960,7 +3973,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3999,7 +4012,7 @@ msgid "Query took %01.4f seconds." msgstr "Cymerodd yr ymholiad %01.4f eiliad" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -4007,7 +4020,7 @@ msgid "With selected:" msgstr "Gyda'r dewis:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4091,15 +4104,15 @@ msgstr "Cafodd y lanlwythiad ei atal gan estyniad." msgid "Unknown error in file upload." msgstr "Gwall anhysbys wrth lanlwytho ffeil." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4167,8 +4180,8 @@ msgid "Keyname" msgstr "Enw allweddol" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4216,15 +4229,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Gollwng" @@ -4237,7 +4250,7 @@ msgstr "" "Mae'n edrych fel bod yr indecsau %1$s a %2$s yn hafal. Gallwch chi dynnu un " "ohonyn nhw." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4287,8 +4300,8 @@ msgid "Table" msgstr "Tabl" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4296,25 +4309,25 @@ msgstr "Tabl" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Chwilio" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Mewnosod" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4322,24 +4335,24 @@ msgid "Privileges" msgstr "Breintiau" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Gweithrediadau" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Tracio" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4350,16 +4363,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "Mae'r gronfa ddata yn ymddangos yn wag!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Ymholiad" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rheolweithiau" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4367,18 +4380,18 @@ msgstr "Rheolweithiau" msgid "Events" msgstr "Digwyddiadau" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Dyluniwr" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete columns" msgid "Central columns" msgstr "Ychwanegu/Dileu colofnau" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4393,34 +4406,34 @@ msgid "User accounts" msgstr "Defnyddiwr" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Log deuaidd" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Dyblygiad" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Newidynnau" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Setiau nod" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Peiriannau" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -5036,16 +5049,16 @@ msgstr "Cyfrif ffeiliau log" msgid "Max: %s%s" msgstr "Uchaf: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5056,38 +5069,38 @@ msgstr "" msgid "MySQL said: " msgstr "Dywedodd MySQL: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Esbonio SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Sgipio Esbonio SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Heb God PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Cyflwyno Ymholiad" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Creu Cod PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5095,76 +5108,76 @@ msgid "Edit inline" msgstr "Argraffu golwg" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Sul" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y am %I:%M %p" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s diwrnod, %s awr, %s munud a %s eiliad" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rheolweithiau" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Neidio i gronfa ddata \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Pwyso i ddewis" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, 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:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 #, fuzzy #| msgid "There are no configured servers" msgid "There are no files to upload!" msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Gwagu" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 #, fuzzy #| msgid "User" msgid "Users" @@ -5304,45 +5317,45 @@ msgstr "Ychwanegwch %s colofn" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to write file to disk." msgid "Failed to read configuration file!" msgstr "Methu ag ysgrifennu i'r ddisg." -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Indecs gweinydd annilys: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Enw gwesteiwr annilys ar gyfer gweinydd %1$s. Adolygwch eich ffurfwedd." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Gweinydd" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5350,24 +5363,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Dylech uwchraddio i %s %s neu'n well." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6089,7 +6102,7 @@ msgstr "Rhoi enwau colofnau yn y rhes gyntaf" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Columns enclosed by" msgid "Columns enclosed with" @@ -6097,7 +6110,7 @@ msgstr "Amgaewyd colofnau gan" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Columns escaped by" msgid "Columns escaped with" @@ -6121,14 +6134,14 @@ msgstr "Tynnu nodau CRLF tu fewn colofnau" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "Terfynwyd colofnau gan" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8277,7 +8290,7 @@ msgid "Table %s has been emptied." msgstr "Cafodd tabl %s ei wagu." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8416,8 +8429,8 @@ msgid "No data to display" msgstr "Dim cronfeydd data" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8469,57 +8482,57 @@ msgstr[5] "" msgid "No column selected." msgstr "Dim cronfeydd data wedi'u dewis." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query" msgid "Query error" msgstr "Ymholiad" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Newid" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indecs" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Testunllawn" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -8531,7 +8544,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Dim newid" @@ -9338,58 +9351,58 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "Dim cronfeydd data" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Data ar goll ar gyfer %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "Count tables" msgid "Go to table: %s" msgstr "Cyfrifwch y tablau" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Strwythur yn unig" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9437,50 +9450,50 @@ msgstr "" msgid "web server upload directory:" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Mewnosod" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "ac yna" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Mewnosod fel rhes newydd" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Dangos ymholiad mewnosod" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Dychwelyd i'r dudalen flaenorol" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Mewnosod rhes newydd arall" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Dychwelyd i'r dudalen hon" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Golygu'r rhes nesaf" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9490,7 +9503,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9502,11 +9515,11 @@ msgstr "" msgid "Value" msgstr "Gwerth" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10391,7 +10404,7 @@ msgstr "Trwsio tabl" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" @@ -10408,32 +10421,32 @@ msgid "Delete the table (DROP)" msgstr "Copïwch y gronfa ddata i" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Dadansoddi" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Gwirio" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimeiddio" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Ailadeiladu" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Trwsio" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10461,37 +10474,37 @@ msgstr "Tynnu'r ymraniadu" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -10690,7 +10703,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dadlwytho data ar gyfer y tabl" @@ -10716,21 +10729,21 @@ msgstr "Disgrifiad" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Strwythur y tabl ar gyfer y tabl" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10842,7 +10855,7 @@ msgid "Database:" msgstr "Cronfa ddata" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10957,7 +10970,7 @@ msgid "Data creation options" msgstr "Ystadegau cronfeydd data" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11026,7 +11039,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11078,60 +11091,60 @@ msgstr "ar ddefnydd" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "Tu fewn tabl(au):" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Tu fewn tabl(au):" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Ychwanegwch werth AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Ychwanegwch werth AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -11185,33 +11198,33 @@ msgstr "" msgid "Column names: " msgstr "Colofnau" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11219,7 +11232,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "Tabl MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -11232,15 +11245,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11250,23 +11263,23 @@ msgstr "Taenlen Open Document" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -14232,15 +14245,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14255,17 +14264,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14287,19 +14297,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14330,17 +14340,17 @@ msgstr "Cafodd y gronfa ddata %1$s ei chreu." msgid "Variable name was expected." msgstr "Templed enw tabl" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "Show dimension of tables" msgid "Unexpected beginning of statement." msgstr "Dangos dimensiynau'r tabl" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14361,17 +14371,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15079,7 +15089,7 @@ msgstr "" msgid "Invalid table name" msgstr "Enw tabl annilys" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16183,7 +16193,7 @@ msgid "at beginning of table" msgstr "Dangos dimensiynau'r tabl" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16230,7 +16240,7 @@ msgstr "Ymraniad %s" msgid "Edit partitioning" msgstr "Tynnu'r ymraniadu" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16363,11 +16373,11 @@ msgstr "Enw VIEW" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Ailenwch golwg i" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Copy database to" msgid "Delete the view (DROP)" diff --git a/po/da.po b/po/da.po index b40a5e5f43..71a5007a92 100644 --- a/po/da.po +++ b/po/da.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-09-16 14:31+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Danish %2$s" msgstr[0] "%1$s sammenfald i %2$s" msgstr[1] "%1$s sammenfald i %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3480,30 +3484,30 @@ msgstr "Filtrer rækker" msgid "Search this table" msgstr "Søg i denne tabel" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Start" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Forrige" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Næste" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Slut" @@ -3574,7 +3578,7 @@ msgstr "Kan være anslået. Se [doc@faq3-11] FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Din SQL-forespørgsel blev udført korrekt." @@ -3608,7 +3612,7 @@ msgid "Query took %01.4f seconds." msgstr "Forespørgsel tog %01.4f sekunder." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3616,7 +3620,7 @@ msgid "With selected:" msgstr "Med det markerede:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3694,16 +3698,16 @@ msgstr "Filupload stoppet af udvidelse." msgid "Unknown error in file upload." msgstr "Ukendt fejl i filupload." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Fejl ved flytning af den uploadede fil, se [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Fejl under flytning af uploaded fil." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Kan ikke læse uploaded fil." @@ -3767,8 +3771,8 @@ msgid "Keyname" msgstr "Nøglenavn" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3816,15 +3820,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Slet" @@ -3837,7 +3841,7 @@ msgstr "" "Indeks %1$s ser ud til at være identisk med indeks %2$s, så et af dem kan " "sikkert fjernes." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3889,8 +3893,8 @@ msgid "Table" msgstr "Tabel" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3898,25 +3902,25 @@ msgstr "Tabel" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Søg" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Indsæt" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3924,24 +3928,24 @@ msgid "Privileges" msgstr "Privilegier" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operationer" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Sporing" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3952,16 +3956,16 @@ msgstr "Triggers/udløsere" msgid "Database seems to be empty!" msgstr "Database ser ud til at være tom!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Foresp. via eks" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutiner" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3969,16 +3973,16 @@ msgstr "Rutiner" msgid "Events" msgstr "Hændelser" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Centerkolonner" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3991,34 +3995,34 @@ msgid "User accounts" msgstr "Brugerkonti" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binær log" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikation" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variable" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Tegnsæt" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Lagring" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Udvidelsesmoduler" @@ -4646,16 +4650,16 @@ msgstr "Spatial" msgid "Max: %s%s" msgstr "Maksimum størrelse: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Statisk analyse:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "Der blev fundet %d fejl under analysen." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4666,104 +4670,104 @@ msgstr "Der blev fundet %d fejl under analysen." msgid "MySQL said: " msgstr "MySQL returnerede: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Forklar SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Spring over Forklar SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "Forklaring af analyse ved %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Uden PHP-kode" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Send forespørgsel" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Fremstil PHP-kode" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Redigér indlejret" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "søn" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %m %Y kl. %H:%M:%S" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dage, %s timer, %s minutter og %s sekunder" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Manglende parameter:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Hop til database \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Klik for at skifte" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Gennemse din computer:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Vælg fra %s - webserverens upload-mappe:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 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:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Tøm" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Udfør" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Brugere" @@ -4892,11 +4896,11 @@ msgstr "Tilføj ny kolonne" msgid "Attributes" msgstr "Attributter" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Kunne ikke indlæse konfigurationsfilen!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4904,32 +4908,32 @@ msgstr "" "Dette betyder ofte, at der er en eller flere syntaksmæssige fejl i den, " "kontroller venligst for fejlen(e) vist herunder." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Kunne ikke indlæse standardkonfiguration fra: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Server indekset %s er ugyldigt" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Ugyldigt værtsnavn for server %1$s. Gennemgå venligst din konfiguration." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Ugyldig autorisationsmetode sat i konfiguration:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4940,24 +4944,24 @@ msgstr "" "konfigurationsindstilling for [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/" "em]. phpMyAdmin anvender i øjeblikket databaseserverens standardtidszone." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du burde opdatere til %s %s eller senere." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Fejl: Token uoverensstemmelse" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "forsøg på overskrivning af GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "muligt sikkerhedshul" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "numerisk tast opfanget" @@ -5701,13 +5705,13 @@ msgstr "Indsæt feltnavne i første række" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Kolonner indrammet med" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Kolonner escaped med" @@ -5725,12 +5729,12 @@ msgstr "Fjern CRLF-tegn i kolonner" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Kolonner afsluttes med" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Linjer afsluttet med" @@ -7916,7 +7920,7 @@ msgid "Table %s has been emptied." msgstr "Tabel %s blev tømt." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Visning %s er blevet slettet." @@ -8051,8 +8055,8 @@ msgid "No data to display" msgstr "Ingen data til visning" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8090,53 +8094,53 @@ msgstr[1] "Navnene '%s' er nøgleord, der er reserveret af MySQL." msgid "No column selected." msgstr "Der er ikke valgt kolonner." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Flytning af kolonnen er blevet fuldført." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Forespørgselsfejl" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Ret" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spatial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Fuldtekst" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Distinkte værdier" @@ -8146,7 +8150,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s-udvidelsen mangler. Tjek din PHP-konfiguration." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ingen ændring" @@ -8964,57 +8968,57 @@ msgstr "MySQL returnerede ingen data (fx ingen rækker)." msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK opstod.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Rediger struktur ved at følge linket \"Struktur\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Gå til databasen: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Rediger indstillinger for %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Gå til tabellen: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Strukturen af %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Gå til view: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9062,48 +9066,48 @@ msgstr "Eller" msgid "web server upload directory:" msgstr "webserver upload-mappe:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Rediger/Indsæt" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Fortsæt indsættelse med %s rækker" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "og derefter" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Indsæt som ny række" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Indsæt som ny række og ignorer fejl" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Vis indsættelsesforespørgsel" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Tilbage til foregående side" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Indsæt endnu en ny række" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Gå tilbage til denne side" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Rediger næste række" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9113,7 +9117,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9125,11 +9129,11 @@ msgstr "" msgid "Value" msgstr "Værdi" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Viser SQL-forespørgsel" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Indsatte række id: %1$d" @@ -10018,7 +10022,7 @@ msgstr "Reparer tabel" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Slet data eller tabel" @@ -10031,32 +10035,32 @@ msgid "Delete the table (DROP)" msgstr "Slet tabellen (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analyser" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Tjek" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimer" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Genopbyg" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Reparer" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10084,37 +10088,37 @@ msgstr "Fjern partitionering" msgid "Check referential integrity:" msgstr "Tjek reference-integriteten:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Kan ikke flytte tabellen til den samme!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Kan ikke kopiere tabellen til den samme!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s er flyttet til %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabellen %s er nu kopieret til: %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Intet tabelnavn!" @@ -10294,7 +10298,7 @@ msgstr "Database eksportindstillinger" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Data dump for tabellen" @@ -10318,21 +10322,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struktur-dump for tabellen" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktur for visning" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Stand-in-struktur for visning" @@ -10422,7 +10426,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Data:" @@ -10531,7 +10535,7 @@ msgid "Data creation options" msgstr "Indstillinger for oprettelse af data" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Trunkér tabel forud for indsættelse" @@ -10616,7 +10620,7 @@ msgstr "Det ser ud til at din database bruger funktioner;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "alias-eksport fungerer muligvis ikke pålideligt i alle tilfælde." @@ -10662,53 +10666,53 @@ msgstr "i brug" msgid "It appears your database uses views;" msgstr "Det ser ud til at din database bruger views;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Begrænsninger for dumpede tabeller" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Begrænsninger for tabel" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Begrænsninger for dumpede tabeller" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indeks for tabel" # zero = null? -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "Brug ikke AUTO_INCREMENT for slettede tabeller" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "Tilføj AUTO_INCREMENT i tabel" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE (MIME-typer for tabellen)" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE (Relationer for tabellen)" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Det ser ud til at din tabel bruger triggere;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Fejl ved læsning af data:" @@ -10765,15 +10769,15 @@ msgstr "" msgid "Column names: " msgstr "Kolonnenavne: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Ugyldigt parameter for CSV-import: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10782,18 +10786,18 @@ msgstr "" "Invalid kolonne (%s) angivet! Sørg for, at kolonnenavneer stavet korrekt, " "adskilt med komma og ikke i citationstegn." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Ugyldigt format for CSV-input på linie %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Ugyldigt kolonneantal i CSV-input på linie %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Denne plugin understøtter ikke komprimeret import!" @@ -10801,7 +10805,7 @@ msgstr "Denne plugin understøtter ikke komprimeret import!" msgid "MediaWiki Table" msgstr "MediaWiki tabel" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Ugyldigt format for mediawiki-input på linje:
%s." @@ -10814,9 +10818,9 @@ msgstr "Importér procenter som rigtige decimaltal (ex. 12.00% to .12)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Import valutaer (ex. $5.00 to 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10824,7 +10828,7 @@ msgstr "" "Den angivne XML-fil var enten forkert udformet eller ukomplet. Ret fejlen og " "prøv igen." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Kunne ikke fortolke OpenDocument-regnearket!" @@ -10832,12 +10836,12 @@ msgstr "Kunne ikke fortolke OpenDocument-regnearket!" msgid "ESRI Shape File" msgstr "ESRI formfil" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Der var en fejl i importen af ESRI-formfilen: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10845,12 +10849,12 @@ msgstr "" "Du prøvede på at importere en invalid fil eller den importerede fil " "indeholder invalide data!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Spatial Extension understøtter ikke ESRI type \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Den importerede fil indeholder ingen data!" @@ -13940,15 +13944,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -13963,17 +13963,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -13995,23 +13996,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Antallet af tabeller der er åbne." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Antallet af tabeller der er åbne." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14044,17 +14045,17 @@ msgstr "Hændelse %1$s er oprettet." msgid "Variable name was expected." msgstr "Skabelon for tabelnavn" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "at beginning of table" msgid "Unexpected beginning of statement." msgstr "i begyndelsen af tabellen" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14077,19 +14078,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14789,7 +14790,7 @@ msgstr "Vis dump (skema) over tabel" msgid "Invalid table name" msgstr "Ugyldigt tabelnavn" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Række: %1$s, kolonne: %2$s, fejl: %3$s" @@ -15756,7 +15757,7 @@ msgid "at beginning of table" msgstr "i begyndelsen af tabellen" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15805,7 +15806,7 @@ msgstr "partitioneret" msgid "Edit partitioning" msgstr "Fjern partitionering" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Rediger view" @@ -15924,11 +15925,11 @@ msgstr "VIEW navn" msgid "Column names" msgstr "Kolonnenavne" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Omdøb view til" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Slet visningen (DROP)" diff --git a/po/de.po b/po/de.po index acb9994625..36c70e7572 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: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-01-18 18:42+0000\n" "Last-Translator: BlackyPanther \n" "Language-Team: German %2$s" msgstr[0] "%1$s Treffer in %2$s" msgstr[1] "%1$s Treffer in %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3513,30 +3518,30 @@ msgstr "Zeilen filtern" msgid "Search this table" msgstr "Diese Tabelle durchsuchen" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Anfang" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Vorherige" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Nächste" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Ende" @@ -3609,7 +3614,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Ihr SQL-Befehl wurde erfolgreich ausgeführt." @@ -3646,7 +3651,7 @@ msgid "Query took %01.4f seconds." msgstr "Die Abfrage dauerte %01.4f Sekunden." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3654,7 +3659,7 @@ msgid "With selected:" msgstr "markierte:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3734,17 +3739,17 @@ msgstr "Hochladen der Datei wurde durch die Erweiterung gestoppt." msgid "Unknown error in file upload." msgstr "Unbekannter Fehler beim hochladen der Datei." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Fehler beim Verschieben der hochgeladenen Datei, siehe [doc@faq1-11]FAQ " "1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Fehler beim Verschieben der hochgeladenen Datei." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Die hochgeladene Datei kann nicht gelesen werden." @@ -3808,8 +3813,8 @@ msgid "Keyname" msgstr "Schlüsselname" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3857,15 +3862,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Löschen" @@ -3878,7 +3883,7 @@ msgstr "" "Die Indizes %1$s und %2$s scheinen gleich zu sein und einer könnte " "möglicherweise entfernt werden." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3930,8 +3935,8 @@ msgid "Table" msgstr "Tabelle" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3939,25 +3944,25 @@ msgstr "Tabelle" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Suche" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Einfügen" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3965,24 +3970,24 @@ msgid "Privileges" msgstr "Rechte" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operationen" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Nachverfolgung" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3993,16 +3998,16 @@ msgstr "Trigger" msgid "Database seems to be empty!" msgstr "Die Datenbank scheint leer zu sein!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Abfrage" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Routinen" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4010,16 +4015,16 @@ msgstr "Routinen" msgid "Events" msgstr "Ereignisse" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Zentrale Spalten" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4032,34 +4037,34 @@ msgid "User accounts" msgstr "Benutzerkonten" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binäres Protokoll" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikation" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variablen" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Zeichensätze" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Formate" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Erweiterungen" @@ -4697,16 +4702,16 @@ msgstr "Räumlich" msgid "Max: %s%s" msgstr "Maximal: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Statische Analyse:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "%d Fehler wurden während der Analyse gefunden." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4717,99 +4722,99 @@ msgstr "%d Fehler wurden während der Analyse gefunden." msgid "MySQL said: " msgstr "MySQL meldet: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL erklären" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "SQL-Erklärung umgehen" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "Explain auf %s analysieren" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "ohne PHP-Code" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "SQL-Befehl ausführen" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "PHP-Code erzeugen" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Inline bearbeiten" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "So" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y um %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s Tage, %s Stunden, %s Minuten und %s Sekunden" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Fehlende(r) Parameter:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Zur Datenbank \"%s\" springen." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Die Funktion %s wird durch einen bekannten Fehler beeinträchtigt, siehe %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Zum Umschalten anklicken" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Durchsuchen Sie Ihren Computer:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Wählen Sie vom Webserver-Uploadverzeichnis %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Es sind keine Dateien zum Hochladen vorhanden!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Leeren" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Ausführen" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Benutzer" @@ -4941,11 +4946,11 @@ msgstr "Neue Spalte hinzufügen" msgid "Attributes" msgstr "Attribute" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Fehler beim Lesen der Konfigurationsdatei!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4953,33 +4958,33 @@ msgstr "" "Dies bedeutet im Allgemeinen, dass sich ein Syntax-Fehler eingeschlichen " "hat. Bitte überprüfen Sie die unten angezeigten Fehler." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Fehler beim Laden der Standard-Konfiguration von: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Ungültige Server-Nummer: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Ungültiger Host-Name für Server %1$s. Bitte überprüfen Sie Ihre " "Konfiguration." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Ungültige Authentifikationsmethode:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4991,24 +4996,24 @@ msgstr "" "[%3$d]['SessionTimeZone'][/em]. phpMyAdmin verwendet aktuell die Standard-" "Zeitzone des Datenbankservers." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Sie sollten auf %s %s oder neuer aktualisieren." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Fehler: Token stimmen nicht überein" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS Überschreibversuch" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "Mögliche Ausnutzung" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "Numerischer Schlüssel entdeckt" @@ -5762,13 +5767,13 @@ msgstr "Spaltennamen in die erste Zeile setzen" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Spalten eingeschlossen von" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Spalten escaped mit" @@ -5786,12 +5791,12 @@ msgstr "CRLF-Zeichen aus den Zeilen entfernen" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Spalten enden mit" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Zeilen enden mit" @@ -7955,7 +7960,7 @@ msgid "Table %s has been emptied." msgstr "Die Tabelle %s wurde geleert." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Die Ansicht %s wurde gelöscht." @@ -8090,8 +8095,8 @@ msgid "No data to display" msgstr "Keine Daten zum Anzeigen" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8129,17 +8134,17 @@ msgstr[1] "Die Namen '%s' sind reservierte MySQL-Schlüsselwörter." msgid "No column selected." msgstr "Es wurden keine Datensätze ausgewählt." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Die Spalten wurden erfolgreich verschoben." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Abfrage-Fehler" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." @@ -8147,36 +8152,36 @@ msgstr "" "Die Tabelle %1$s wurde erfolgreich geändert. Die Privilegien wurden " "angepasst." -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Bearbeiten" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Index" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Räumlich" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Volltext" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Unterschiedliche Werte" @@ -8186,7 +8191,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Die Erweiterung %s fehlt. Bitte die PHP-Konfiguration überprüfen." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Keine Änderung" @@ -8988,59 +8993,59 @@ msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Datensätze)." msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK aufgetreten.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" "Zum Ändern der Struktur auf den entsprechenden \"Struktur\"-Link klicken." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Gehe zur Datenbank: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Einstellung für %s bearbeiten" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Gehe zur Tabelle: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struktur von %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Gehe zur Ansicht: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9089,55 +9094,55 @@ msgstr "Oder" msgid "web server upload directory:" msgstr "Upload-Verzeichnis auf dem Webserver:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Bearbeiten/Einfügen" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Einfügen mit %s Datensätzen fortfahren" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "und dann" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Als neuen Datensatz speichern" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Als neue Zeile einfügen und Fehler ignorieren" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Zeige insert Abfrage" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "zurück" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "anschließend einen weiteren Datensatz einfügen" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Zurück zu dieser Seite" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "nächste Zeile bearbeiten" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9149,11 +9154,11 @@ msgstr "" msgid "Value" msgstr "Wert" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Ansicht als SQL Abfrage" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "ID der eingefügten Zeile: %1$d" @@ -10035,7 +10040,7 @@ msgstr "Repariere Tabelle" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Daten oder Tabelle löschen" @@ -10048,32 +10053,32 @@ msgid "Delete the table (DROP)" msgstr "Tabelle löschen (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analysieren" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Überprüfen" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimieren" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Neuaufbauen" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Reparieren" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Leeren" @@ -10099,35 +10104,35 @@ msgstr "Entferne die Partitionierung" msgid "Check referential integrity:" msgstr "Prüfe referentielle Integrität:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Tabelle kann nicht mit gleichem Namen verschoben werden!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Tabelle kann nicht mit gleichem Namen kopiert werden!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabelle %s wurde nach %s verschoben." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabelle %s wurde nach %s kopiert." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Der Tabellenname ist leer!" @@ -10310,7 +10315,7 @@ msgstr "Datenexport-Optionen" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Daten für Tabelle" @@ -10334,21 +10339,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tabellenstruktur für Tabelle" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktur des Views" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Stellvertreter-Struktur des Views" @@ -10439,7 +10444,7 @@ msgid "Database:" msgstr "Datenbank:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Daten:" @@ -10543,7 +10548,7 @@ msgid "Data creation options" msgstr "Datenterstellungsoptionen" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "TRUNCATE Tabelle vor dem Einfügen" @@ -10630,7 +10635,7 @@ msgstr "Es scheint, dass Ihre Datenbank Funktionen verwendet;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" "Alias-Export arbeitet möglicherweise nicht in allen Fällen zuverlässig." @@ -10673,52 +10678,52 @@ msgstr "in Benutzung" msgid "It appears your database uses views;" msgstr "Es scheint, dass Ihre Datenbank Ansichten verwendet;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Constraints der exportierten Tabellen" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Constraints der Tabelle" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indizes der exportierten Tabellen" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indizes für die Tabelle" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT für exportierte Tabellen" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT für Tabelle" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPEN DER TABELLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONEN DER TABELLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Es scheint, dass Ihre Tabelle Trigger verwendet;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktur des Views %s als Tabelle exportiert" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "(Siehe unten für die tatsächliche Ansicht)" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Fehler beim Lesen der Daten:" @@ -10774,15 +10779,15 @@ msgstr "" msgid "Column names: " msgstr "Spaltennamen: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Ungültiger Parameter für CSV-Import: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10792,18 +10797,18 @@ msgstr "" "richtig geschrieben, durch Kommata getrennt und nicht von Anführungszeichen " "eingeschlossen sind." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Ungültiges Format in Zeile %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Ungültige Anzahl an Spalten im CSV-Import in Zeile %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Dieses Plugin unterstützt keine Kompression!" @@ -10811,7 +10816,7 @@ msgstr "Dieses Plugin unterstützt keine Kompression!" msgid "MediaWiki Table" msgstr "Tabelle für MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Ungültiges Format des Mediawiki-Inputs in Zeile:
%s." @@ -10826,9 +10831,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Währungen importieren (z.B. $5.00 zu 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10836,7 +10841,7 @@ msgstr "" "Die angegebene XML-Datei war entweder fehlerhaft oder unvollständig. Bitte " "korrigieren und erneut versuchen." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Fehler beim Lesen der OpenDocument-Arbeitsmappe!" @@ -10844,13 +10849,13 @@ msgstr "Fehler beim Lesen der OpenDocument-Arbeitsmappe!" msgid "ESRI Shape File" msgstr "ESRI-Shapedaten" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" "Beim Importieren der ESRI-Shapedaten ist ein Fehler aufgetreten: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10858,13 +10863,13 @@ msgstr "" "Sie haben versucht, eine ungültige Datei hochzuladen oder die Datei enthielt " "ungültige Daten!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" "Der ESRI-Typ \"%s\" wird von MySQL Spatial Extension nicht unterstützt." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Die importierte Datei enthält keine Daten!" @@ -13949,15 +13954,11 @@ msgid "An opening bracket followed by a set of values was expected." msgstr "" "Eine öffnende Klammer, gefolgt von einer Liste von Werten, wurde erwartet." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "Eine öffnende Klammer wurde erwartet." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "Ein Komma oder eine schließende Klammer wurde erwartet" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Ein Komma oder eine schließende Klammer wird erwartet." @@ -13970,17 +13971,18 @@ msgstr "Eine schließende Klammer wurde erwartet." msgid "Unrecognized data type." msgstr "Unerkannter Datentyp." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Ein Alias wurde zuvor gefunden." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Unerwarteter Punkt." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Ein Alias wurde erwartet." @@ -13998,19 +14000,19 @@ msgstr "Ein Offset wurde erwartet." msgid "This option conflicts with \"%1$s\"." msgstr "Diese Option widerspricht „%1$s“." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Der ursprüngliche Tabellenname wurde erwartet." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Schlüsselwort „TO“ wurde erwartet." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Der neue Tabellenname wurde erwartet." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Eine Umbenennungsoperation wurde erwartet." @@ -14036,15 +14038,15 @@ msgstr "Schließendes Anführungszeichen %1$s wurde erzeugt." msgid "Variable name was expected." msgstr "Variablenname wurde erwartet." -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Unerwarteter Statement-Anfang." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Unerkannte Statement-Typ." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Bisher wurde keine Transaktion gestartet." @@ -14067,15 +14069,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Unerkanntes Schlüsselwort." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Der Name der Entität wurde erwartet." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Mindestens eine Felddefinition wurde erwartet." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Ein „RETURNS“-Schlüsselwort wurde erwartet." @@ -14769,7 +14771,7 @@ msgstr "Dump (Schema) der Tabelle anzeigen" msgid "Invalid table name" msgstr "Ungültiger Tabellenname" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Zeile: %1$s, Spalte: %2$s, Fehler: %3$s" @@ -15693,7 +15695,7 @@ msgid "at beginning of table" msgstr "am Tabellenanfang" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Partitionen" @@ -15726,7 +15728,7 @@ msgstr "Partitioniere Tabelle" msgid "Edit partitioning" msgstr "Bearbeite die Partitionierung" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "View/Ansicht bearbeiten" @@ -15841,11 +15843,11 @@ msgstr "VIEW Name" msgid "Column names" msgstr "Spaltennamen" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "View umbenennen in" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Ansicht löschen (DROP)" @@ -17147,6 +17149,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ist auf 0 gesetzt" +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Ein Komma oder eine schließende Klammer wurde erwartet" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/el.po b/po/el.po index a2929331ea..ef39c78084 100644 --- a/po/el.po +++ b/po/el.po @@ -1,13 +1,13 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-02-08 21:43+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" @@ -47,7 +47,7 @@ msgid "Table comments:" msgstr "Σχόλια πίνακα:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -101,7 +101,7 @@ msgstr "Τύπος" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -163,12 +163,12 @@ msgid "Comments" msgstr "Σχόλια" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Πρωτεύον" @@ -201,12 +201,12 @@ msgstr "Όχι" #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -251,8 +251,8 @@ msgid "Tables" msgstr "Πίνακες" #: db_export.php:66 libraries/Menu.php:323 libraries/Menu.php:430 -#: libraries/Util.php:3402 libraries/Util.php:3412 libraries/Util.php:3418 -#: libraries/Util.php:3698 libraries/Util.php:4335 libraries/Util.php:4352 +#: libraries/Util.php:3409 libraries/Util.php:3419 libraries/Util.php:3425 +#: libraries/Util.php:3705 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/central_columns.lib.php:725 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,7 +260,7 @@ msgstr "Πίνακες" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -472,7 +472,7 @@ msgstr "Προσθήκη γεωμετρίας" #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -502,7 +502,7 @@ msgstr "Προσθήκη γεωμετρίας" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Εκτέλεση" @@ -530,7 +530,7 @@ msgstr "Απέτυχε" msgid "Incomplete params" msgstr "Ελλιπείς παράμετροι" -#: import.php:184 +#: import.php:186 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -539,15 +539,15 @@ msgstr "" "Πιθανόν προσπαθήσατε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην " "%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." -#: import.php:360 import.php:665 +#: import.php:362 import.php:667 msgid "Showing bookmark" msgstr "Εμφάνιση σελιδοδείκτη" -#: import.php:376 import.php:661 +#: import.php:378 import.php:663 msgid "The bookmark has been deleted." msgstr "Η ετικέτα διεγράφη." -#: import.php:474 +#: import.php:476 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -557,12 +557,12 @@ msgstr "" "ενεργοποιημένο το open_basedir χωρίς πρόσβαση στο φάκελο %s (για προσωρινά " "αρχεία)." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:492 import.php:569 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "Δεν ήταν δυνατή η ανάγνωση του αρχείου!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:503 import.php:518 import.php:543 import.php:558 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -572,7 +572,7 @@ msgstr "" "υποστήριξη για αυτή δεν έχει εφαρμοστεί ή απενεργοποιηθεί από τις ρυθμίσεις " "σας." -#: import.php:574 +#: import.php:576 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -582,22 +582,25 @@ msgstr "" "μέγεθος του αρχείου υπερβαίνει το μέγιστο επιτρεπτό μέγεθος από τη ρύθμιση " "της ΡΗΡ. Δείτε τις [doc@faq1-16]ΣΑΕ 1.16[/doc]." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:628 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "" "Αδύνατη η φόρτωση προσθέτων εισαγωγής, για αυτό ελέξτε την εγκατάστασή σας!" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:670 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "Ο σελιδοδείκτης %s έχει δημιουργηθεί." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "Η εισαγωγή ολοκληρώθηκε επιτυχώς, %d ερωτήματα εκτελέστηκαν." +#: import.php:680 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "Η εισαγωγή ολοκληρώθηκε επιτυχώς, %d ερωτήματα εκτελέστηκαν." +msgstr[1] "Η εισαγωγή ολοκληρώθηκε επιτυχώς, %d ερωτήματα εκτελέστηκαν." -#: import.php:705 +#: import.php:711 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -606,7 +609,7 @@ msgstr "" "Το χρονικό όριο του κώδικα εξαντλήθηκε, οπότε αν θέλετε να τελειώσετε την " "εισαγωγή, %sεπανυποβάλτε το ίδιο αρχείο%s και η εισαγωγή θα συνεχίσει." -#: import.php:715 +#: import.php:721 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -620,7 +623,7 @@ msgid "Could not load the progress of the import." msgstr "Αδύνατη η φόρτωση της διαδικασίας της εισαγωγής." #: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: libraries/Util.php:802 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Επιστροφή" @@ -716,10 +719,11 @@ msgstr "Εμφάνιση πληροφοριών της PHP" msgid "Version information:" msgstr "Πληροφορίες έκδοσης:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:449 libraries/Util.php:516 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Τεκμηρίωση" @@ -1014,7 +1018,7 @@ msgid "Save & close" msgstr "Αποθήκευση & κλείσιμο" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Επαναφορά" @@ -1071,7 +1075,7 @@ msgstr "Επιλέξτε στήλη(ες) για το ευρετήριο." msgid "You have to add at least one column." msgstr "Πρέπει να προσθέσετε τουλάχιστον ένα πεδίο." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:132 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 @@ -1086,7 +1090,7 @@ msgstr "Εξομοίωση ερωτήματος" msgid "Matched rows:" msgstr "Εγγραφές που ταιριάζουν:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:137 libraries/Util.php:703 msgid "SQL query:" msgstr "Εντολή SQL:" @@ -1145,12 +1149,12 @@ msgid "Other" msgstr "Άλλα" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:160 libraries/Util.php:1498 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:162 libraries/Util.php:1500 msgid "." msgstr "," @@ -1256,40 +1260,40 @@ msgid "Processes" msgstr "Διεργασίες" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:202 libraries/Util.php:1442 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:203 libraries/Util.php:1444 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:204 libraries/Util.php:1446 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:205 libraries/Util.php:1448 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:206 libraries/Util.php:1450 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:207 libraries/Util.php:1452 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:208 libraries/Util.php:1454 msgid "EiB" msgstr "EB" @@ -1307,7 +1311,7 @@ msgstr "Ερωτήσεις" msgid "Traffic" msgstr "Κίνηση" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4333 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Ρυθμίσεις" @@ -1322,7 +1326,7 @@ msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στι #: js/messages.php:219 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1531,7 +1535,7 @@ msgstr "Ανάλυση…" msgid "Explain output" msgstr "Επεξήγηση προϊόντος" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4329 #: 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:91 libraries/tracking.lib.php:284 @@ -1633,8 +1637,8 @@ msgstr "" "Επαναφορά στην προεπιλεγμένη ρύθμιση…" #: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 -#: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 -#: libraries/Util.php:4357 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:581 libraries/Util.php:4332 libraries/Util.php:4347 +#: libraries/Util.php:4364 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 #: libraries/server_status_monitor.lib.php:313 prefs_manage.php:237 #: setup/frames/menu.inc.php:26 @@ -1788,7 +1792,7 @@ msgstr "Αντιγραφή βάσης δεδομένων" msgid "Changing charset" msgstr "Αλλαγή συνόλου χαρακτήρων" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:377 libraries/Util.php:3291 msgid "Enable foreign key checks" msgstr "Ενεργοποίηση ελέγχων μη διακριτών κλειδιών" @@ -1823,9 +1827,9 @@ msgstr "" #: js/messages.php:392 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 -#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 -#: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 -#: libraries/Util.php:4356 libraries/config/messages.inc.php:255 +#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3712 +#: libraries/Util.php:3713 libraries/Util.php:4331 libraries/Util.php:4346 +#: libraries/Util.php:4363 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:168 libraries/rte/rte_list.lib.php:149 #: libraries/server_privileges.lib.php:2513 #: libraries/server_privileges.lib.php:2592 @@ -1874,8 +1878,8 @@ msgstr "Προβολή παραθύρου ερωτήματος" #: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 -#: libraries/Util.php:3703 libraries/Util.php:3704 +#: libraries/Index.php:721 libraries/Util.php:732 libraries/Util.php:1242 +#: libraries/Util.php:3710 libraries/Util.php:3711 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 #: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:182 @@ -2061,7 +2065,7 @@ msgid "No dependencies selected!" msgstr "Δεν έχετε επιλέξει εξαρτήσεις!" #: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2149,7 +2153,7 @@ msgid "Data point content" msgstr "Περιεχόμενο δείκτη δεδομένων" #: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Παράληψη" @@ -2389,7 +2393,7 @@ msgid "Select database first" msgstr "Επιλέξτε βάση δεδομένων πρώτα" #: js/messages.php:599 libraries/DisplayResults.php:5029 -#: libraries/Util.php:4217 +#: libraries/Util.php:4224 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" @@ -2665,63 +2669,63 @@ msgid "December" msgstr "Δεκεμβρίου" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:773 libraries/Util.php:1664 msgid "Jan" msgstr "Ιαν" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:775 libraries/Util.php:1666 msgid "Feb" msgstr "Φεβ" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:777 libraries/Util.php:1668 msgid "Mar" msgstr "Μαρ" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:779 libraries/Util.php:1670 msgid "Apr" msgstr "Απρ" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:781 libraries/Util.php:1672 msgctxt "Short month name" msgid "May" msgstr "Μάη" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:783 libraries/Util.php:1674 msgid "Jun" msgstr "Ιουν" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:785 libraries/Util.php:1676 msgid "Jul" msgstr "Ιουλ" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:787 libraries/Util.php:1678 msgid "Aug" msgstr "Αυγ" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:789 libraries/Util.php:1680 msgid "Sep" msgstr "Σεπ" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:791 libraries/Util.php:1682 msgid "Oct" msgstr "Οκτ" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:793 libraries/Util.php:1684 msgid "Nov" msgstr "Νοε" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:795 libraries/Util.php:1686 msgid "Dec" msgstr "Δεκ" @@ -2759,32 +2763,32 @@ msgid "Sun" msgstr "Κυρ" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:816 libraries/Util.php:1691 msgid "Mon" msgstr "Δευ" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:818 libraries/Util.php:1693 msgid "Tue" msgstr "Τρί" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:820 libraries/Util.php:1695 msgid "Wed" msgstr "Τετ" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:822 libraries/Util.php:1697 msgid "Thu" msgstr "Πέμ" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:824 libraries/Util.php:1699 msgid "Fri" msgstr "Παρ" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:826 libraries/Util.php:1701 msgid "Sat" msgstr "Σάβ" @@ -2925,9 +2929,9 @@ msgstr "Εισάγετε μια έγκυρη ημερομηνία ή ώρα" msgid "Please enter a valid HEX input" msgstr "Εισάγετε μια έγκυρη ΔΕΚΑΕΞΑΔΙΚΗ εισαγωγή" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:679 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Λάθος" @@ -2981,18 +2985,18 @@ msgstr "" "Μη έγκυρος χαρακτήρας στη γραμμή %1$s. Αναμενότας στηλοθέτης, αλλά βρέθηκε " "«%2$s»." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Το υπαρχον αρχείο ρυθμίσεων (%s) δεν είναι αναγνώσιμο." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Εσφαλμένα δικαιώματα στο αρχείο ρυθμίσεων, δεν πρέπει να είναι καθολικά " "εγγράψιμο!" -#: libraries/Config.php:1519 +#: libraries/Config.php:1528 msgid "Font size" msgstr "Μέγεθος γραμματοσειράς" @@ -3062,7 +3066,7 @@ msgstr "Κατά την τρέχουσα συνεδρία" msgid "Explain" msgstr "Εξήγηση" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1328 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Δημιουργία προφίλ" @@ -3096,8 +3100,8 @@ msgid "History" msgstr "Ιστορικό" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3190,7 +3194,7 @@ msgstr "Απόκρυψη ίχνους" msgid "Count:" msgstr "Μέτρηση:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:339 libraries/Util.php:1298 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 @@ -3246,7 +3250,6 @@ msgid "Switch to dark theme" msgstr "Αλλαγή σε σκοτεινό θέμα" #: libraries/DatabaseInterface.php:1528 -#| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Αδύνατος ο ορισμός σύνδεσης ρυθμισμένης σύνθεσης!" @@ -3428,9 +3431,9 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s απατέλεσμα στο %2$s" msgstr[1] "%1$s αποτελέσματα στο %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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,30 +3490,30 @@ msgstr "Φιλτράρισμα εγγραφών" msgid "Search this table" msgstr "Αναζήτηση σε αυτόν τον πίνακα" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Αρχή" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Προηγούμενη" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Επόμενη" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Τέλος" @@ -3581,7 +3584,7 @@ msgstr "Ίσως είναι κατά προσέγγιση. Δείτε τις [do #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Η εντολή SQL εκτελέσθηκε επιτυχώς." @@ -3616,7 +3619,7 @@ msgid "Query took %01.4f seconds." msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3624,7 +3627,7 @@ msgid "With selected:" msgstr "Με τους επιλεγμένους:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3704,17 +3707,17 @@ msgstr "Η αποστολή του αρχείου σταμάτησε λόγω ε msgid "Unknown error in file upload." msgstr "Άγνωστο σφάλμα στην αποστολή αρχείου." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Σφάλμα μετακίνησης του αρχείου αποστολής. Δείτε τις [doc@faq1-11]ΣΑΕ 1.11[/" "doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Σφάλμα κατά τη μετακίνηση αρχείου αποστολής." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Αδύνατη η ανάγνωση του αποσταλμένου αρχείου." @@ -3778,8 +3781,8 @@ msgid "Keyname" msgstr "Όνομα κλειδιού" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3827,15 +3830,15 @@ msgstr "Το πρωτεύον κλειδί διεγράφη." msgid "Index %s has been dropped." msgstr "Το ευρετήριο %s έχει διαγραφεί." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Διαγραφή" @@ -3848,7 +3851,7 @@ msgstr "" "Τα ευρετήρια %1$s και %2$s φαίνεται να είναι ίσα και ένα από αυτά μπορεί να " "απομακρυνθεί." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3900,8 +3903,8 @@ msgid "Table" msgstr "Πίνακας" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3909,25 +3912,25 @@ msgstr "Πίνακας" msgid "SQL" msgstr "Κώδικας SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Αναζήτηση" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Προσθήκη" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3935,24 +3938,24 @@ msgid "Privileges" msgstr "Δικαιώματα" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Λειτουργίες" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Παρακολούθηση" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3963,16 +3966,16 @@ msgstr "Δείκτες" msgid "Database seems to be empty!" msgstr "Η βάση δεδομένων φαίνεται να είναι άδεια!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Επερώτημα κατά παράδειγμα" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Εργασίες" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3980,16 +3983,16 @@ msgstr "Εργασίες" msgid "Events" msgstr "Συμβάντα" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Σχεδιαστής" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Κεντρικές στήλες" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4002,34 +4005,34 @@ msgid "User accounts" msgstr "Λογαριασμοί χρήστη" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Δυαδικό αρχείο καταγραφής" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Αναπαραγωγή" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Μεταβλητές" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Σύνολο χαρακτήρων" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Μηχανές" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Πρόσθετα" @@ -4667,16 +4670,16 @@ msgstr "Χωρική" msgid "Max: %s%s" msgstr "Μέγιστο μέγεθος: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Στατική ανάλυση:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "%d σφάλματα βρέθηκαν κατά την ανάλυση." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4687,100 +4690,100 @@ msgstr "%d σφάλματα βρέθηκαν κατά την ανάλυση." msgid "MySQL said: " msgstr "Η MySQL επέστρεψε το μήνυμα: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Ανάλυση SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Χωρίς ανάλυση SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "Ανάλυση Εξήγησης στο %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "Χωρίς κώδικα PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "Υποβολή ερωτήματος" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Δημιουργία κώδικα PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Επεξεργασία εσωτερικά" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Κυρ" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y στις %H:%M:%S" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s μέρες, %s ώρες, %s λεπτά %s δευτερόλεπτα" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Απολεσθείσα παράμετρος:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Μεταπήδηση στην βάση «%s»." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Η λειτουργία %s έχει επηρρεαστεί από ένα γνωστό σφάλμα, για αυτό δείτε %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Πατήστε για εναλλαγή" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Περιηγηθείτε στον υπολογιστή σας:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Επιλογή από το φάκελο αποστολής του διακομίστή ιστού %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" "Ο φάκελος που ορίσατε για την αποθήκευση αρχείων δεν μπόρεσε να βρεθεί." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Δεν υπάρχουν αρχεία προς αποστολή!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Άδειασμα" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Εκτέλεση" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Χρήστες" @@ -4910,11 +4913,11 @@ msgstr "Προσθήκη νέας στήλης" msgid "Attributes" msgstr "Χαρακτηριστικά" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Αδύνατη η ανάγνωση του αρχείου ρυθμίσεων!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4922,33 +4925,33 @@ msgstr "" "Αυτό σημαίνει, συνήθως, ότι υπάρχει συντακτικό λάθος, για αυτό ελέγξτε τα " "σφάλματα που εμφανίζονται παρακάτω." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Αδύνατη η φόρτωση της προεπιλεγμένης ρύθμισης από: «%1$s»" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Μη έγκυρο ευρετήριο διακομιστή: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Μη έγκυρο όνομα διακομιστή για τον διακομιστή %1$s. Ξαναδείτε τις ρυθμίσεις " "σας." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Διακομιστής %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Ορίστηκε εσφαλμένη μέθοδος πιστοποίησης στη ρύθμιση:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4960,24 +4963,24 @@ msgstr "" "το phpMyAdmin χρησιμοποιεί την προεπιλεγμένη ζώνη ώρας του διακομιστή της " "βάσης δεδομένων." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Πρέπει να αναβαθμίσετε σε %s %s ή νεότερη." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Σφάλμα: Το πειστήριο δεν ταιριάζει" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "προσπάθεια επανεγγραφής GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "δυνατή αξιοποίηση" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "ανιχνεύτηκε αριθμητικό κλειδί" @@ -5727,13 +5730,13 @@ msgstr "Εμφάνιση ονομάτων στηλών στην πρώτη γρ #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Στήλες που περικλείονται με" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Τα πεδία χρησιμοποιούν το χαρακτήρα διαφυγής" @@ -5751,12 +5754,12 @@ msgstr "Απομάκρυνση χαρακτήρων CRLF μέσα στις στ #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Στήλες που τελειώνουν με" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Γραμμές που τελειώνουν με" @@ -7939,7 +7942,7 @@ msgid "Table %s has been emptied." msgstr "Ο πίνακας %s άδειασε." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Η προβολή %s διαγράφτηκε." @@ -8073,8 +8076,8 @@ msgid "No data to display" msgstr "Κανένα δεδομένο για προβολή" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8112,52 +8115,52 @@ msgstr[1] "Τα ονόματα «%s» είναι δεσμευμένες λέξε msgid "No column selected." msgstr "Δεν επιλέχθηκε στήλη." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Οι στήλες μετακινήθηκαν επιτυχώς." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Σφάλμα ερωτήματος" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "Ο πίνακας %1$s αλλάχτηκε επιτυχώς. Τα προνόμια έχουν προσαρμοστεί." -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Αλλαγή" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Ευρετήριο" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Χωρική" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Πλήρες κείμενο" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Διακριτές τιμές" @@ -8167,7 +8170,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Η επέκταση %s λείπει. Δείτε τις ρυθμίσεις της PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Χωρίς αλλαγή" @@ -8970,54 +8973,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "[συνέβει ROLLBACK.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Οι ακόλουθες δομές δημιουργήθηκαν ή αλλάχτηκαν. Εδώ μπορείτε να:" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "Προβολή των περιεχομένων δομής πατώντας στο όνομά της." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Αλλάξτε τις ρυθμίσεις πατώντας τον αντίστοιχο σύνδεσμο «Επιλογές»." -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Επεξεργαστείτε τη δομή πατώντας τον σύνδεσμο «Δομή»." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Μετάβαση στη βάση δεδομένων: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Επεξεργασία ρυθμίσεων για %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Μετάβαση στον πίνακα: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Δομή του %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Μετάβαση στην προβολή: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Μονο ερωτήματα UPDATE και DELETE μονού πίνακα μπορούν να εξομοιωθούν." -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9066,55 +9069,55 @@ msgstr "Ενωση" msgid "web server upload directory:" msgstr "κατάλογος αποθήκευσης αρχείων διακομιστή:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Επεξεργασία/Προσθήκη" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Συνέχιση εισαγωγής με %s εγγραφές" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "και μετά" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Εισαγωγή ως νέα εγγραφή" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Εισαγωγή ως νέα γραμμή και παράβλεψη σφαλμάτων" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Εμφάνιση ερωτήματος εισαγωγής" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Επιστροφή" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Εισαγωγή νέας εγγραφής" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Επιστροφή σε αυτή τη σελίδα" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Επεξεργασία επόμενης γραμμής" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Χρήση του πλήκτρου TAB για μετακίνηση από τιμή σε τιμή ή CTRL+βέλη για " "μετακίνηση παντού." -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9126,11 +9129,11 @@ msgstr "" msgid "Value" msgstr "Τιμή" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Εμφάνιση ερωτήματος SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d" @@ -10005,7 +10008,7 @@ msgstr "Επιδιόρθωση πίνακα" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Διαγραφή δεδομένων ή πίνακα" @@ -10018,32 +10021,32 @@ msgid "Delete the table (DROP)" msgstr "Διαγραφή της βάσης δεδομένων (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Ανάλυση" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Έλεγχος" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Βελτιστοποίηση" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Επανακατασκευή" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Επισκευή" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Διαγραφή" @@ -10069,35 +10072,35 @@ msgstr "Απομάκρυνση κατάτμησης" msgid "Check referential integrity:" msgstr "Έλεγχος ακεραιότητας συσχετίσεων:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Δεν είναι δυνατή η μεταφορά του πίνακα στον εαυτό του!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Δεν είναι δυνατή η αντιγραφή του πίνακα στον εαυτό του!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Ο πίνακας %s μεταφέρθηκε στο %s. Τα προνόμια έχουν προσαρμοστεί." -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Ο πίνακας %s αντιγράφηκε στο %s. Τα προνόμια έχουν προσαρμοστεί." -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Ο πίνακας %s μεταφέρθηκε στο %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Ο πίνακας %s αντιγράφηκε στο %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Το όνομα του πίνακα είναι κενό!" @@ -10279,7 +10282,7 @@ msgstr "Επιλογές απορριμμάτων δεδομένων" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Άδειασμα δεδομένων του πίνακα" @@ -10303,21 +10306,21 @@ msgstr "Προσδιορισμός" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Δομή πίνακα για τον πίνακα" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Δομή για προβολή" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Στημένη δομή για προβολή" @@ -10407,7 +10410,7 @@ msgid "Database:" msgstr "Βάση δεδομένων:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Δεδομένα:" @@ -10511,7 +10514,7 @@ msgid "Data creation options" msgstr "Επιλογές δημιουργίας δεδομένων" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Εκκαθάριση του πίνακα πριν την εισαγωγή" @@ -10595,7 +10598,7 @@ msgstr "Φαίνεται ότι η βάση δεδομένων σας χρησι #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" "Η εξαγωγή ετικέτας μπορεί να μη λειτουργεί αξιόπιστα σε όλες τις περιπτώσεις." @@ -10638,52 +10641,52 @@ msgstr "σε χρήση" msgid "It appears your database uses views;" msgstr "Φαίνεται ότι η βάση δεδομένων σας χρησιμοποιεί προβολές" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Περιορισμοί για άχρηστους πίνακες" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Περιορισμοί για πίνακα" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Ευρετήρια για άχρηστους πίνακες" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Ευρετήρια για πίνακα" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT για άχρηστους πίνακες" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT για πίνακα" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "ΤΥΠΟΙ MIME ΓΙΑ ΠΙΝΑΚΑ" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "ΣΥΣΧΕΤΙΣΕΙΣ ΓΙΑ ΠΙΝΑΚΑ" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Φαίνεται ότι ο πίνακάς σας χρησιμοποιεί δείκτες" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "Δομή για προβολή %s εξαγώμενη ως πίνακας" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "(Δείτε παρακάτω για την πραγματική προβολή)" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Σφάλμα ανάγνωσης δεδομένων:" @@ -10738,15 +10741,15 @@ msgstr "" msgid "Column names: " msgstr "Ονόματα στηλών: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Μη έγκυρη παράμετρος στο εισαχθέν CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10755,18 +10758,18 @@ msgstr "" "Ορίστηκε μη έγκυρη στήλη (%s)! Σιγουρευτείτε ότι τα ονόματα στηλών ορίζονται " "σωστά, χωρίζονται με κόμμα δεν περιέχονται σε εισαγωγικά." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Μη έγκυρη μορφή στο εισαχθέν CSV στη γραμμή %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Μη έγκυρο πλήθος στηλών στο εισαχθέν CSV στη γραμμή %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Αυτό το πρόσθετο δεν υποστηρίζει συμπιεσμένες εισαγωγές!" @@ -10774,7 +10777,7 @@ msgstr "Αυτό το πρόσθετο δεν υποστηρίζει συμπι msgid "MediaWiki Table" msgstr "Πίνακας MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Μη έγκυρη μορφή του εισαγόμενου mediawiki στη γραμμή
%s." @@ -10787,9 +10790,9 @@ msgstr "Εισαγωγή ποσοστών ως κανονικά δεκαδικά msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Εισαγωγή νομισμάτων (π.χ. €5,00 αντί 5,00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10797,7 +10800,7 @@ msgstr "" "Το αρχείο XML που ορίστηκε ήταν σε λανθασμένη μορφή ή ανεπαρκές. Διορθώστε " "το θέμα και δοκιμάστε ξανά." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Αδύνατη η προσπέλαση Εγγράφου Λογιστικού Φύλλου Ανοιχτού Κώδικα - ODS!" @@ -10805,12 +10808,12 @@ msgstr "Αδύνατη η προσπέλαση Εγγράφου Λογιστικ msgid "ESRI Shape File" msgstr "Shape File της ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Σφάλμα εισαγωγής shape file της ESRI: «%s»." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10818,12 +10821,12 @@ msgstr "" "Προσπαθήσατε να εισάγετε μη έγκυρο αρχείο ή το εισαγμένο αρχείο περιέχει μη " "έγκυρα δεδομένα!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "Η Χωρική Επέκταση της MySQL δεν υποστηρίζει τύπο της ESRI «%s»." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Το εισαγόμενο αρχείο δεν περιέχει δεδομένα!" @@ -13903,15 +13906,11 @@ msgstr "Αναμενόταν %1$d τιμές, αλλά βρέθηκαν %2$d." msgid "An opening bracket followed by a set of values was expected." msgstr "Αναμενόταν μια ανοιχτή αγκύλη ακολουθούμενη από ένα σύνολο τιμών." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "Αναμενόταν μια ανοιχτή αγκύλη." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "Αναμενόταν ένα κόμμα ή μια κλειστή αγκύλη" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Αναμενόταν ένα κόμμα ή μια κλειστή αγκύλη." @@ -13924,17 +13923,18 @@ msgstr "Αναμενόταν κλείσιμο αγκύλης." msgid "Unrecognized data type." msgstr "Μη αναγνωρισμένος τύπος δεδομένων." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Βρέθηκε μια ετικέτα προηγουμένως." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Μη αναμενόμενη τελεία." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Αναμενόταν μια ετικέτα." @@ -13952,19 +13952,19 @@ msgstr "Αναμενόταν μια αντιστάθμιση." msgid "This option conflicts with \"%1$s\"." msgstr "Αυτή η επιλογή έχει διαίνεξη με το «%1$s»." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Αναμενόταν το παλαιό όνομα του πίνακα." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Αναμενόταν η λέξη-κλειδί «TO»." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Αναμενόταν το νέο όνομα του πίνακα." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Αναμενόταν μια λειτουργία μετονομασίας." @@ -13990,15 +13990,15 @@ msgstr "Αναμενόταν τελικό εισαγωγικό %1$s." msgid "Variable name was expected." msgstr "Αναμενόταν όνομα μεταβλητής." -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Μη αναμενόμενη έναρξη δήλωσης." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Μη αναγνωρισμένος τύπος δήλωσης." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Καμιά συναλλαγή δεν ξεκίνησε προηγουμένως." @@ -14021,15 +14021,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Μη αναγνωρισμένη λέξη κλειδί." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Αναμενόταν το όνομα της οντότητας." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Αναμενόταν τουλάχιστον ένας ορισμός πεδίου." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Αναμενόταν μια λέξη-κλειδί «RETURNS»." @@ -14727,7 +14727,7 @@ msgstr "Εμφάνιση σκαριφήματος (σχήματος) του πί msgid "Invalid table name" msgstr "Μη έγκυρο όνομα πίνακα" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Γραμμή: %1$s, Στήλη: %2$s, Σφάλμα: %3$s" @@ -15651,7 +15651,7 @@ msgid "at beginning of table" msgstr "στην αρχή του πίνακα" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Κατατμήσεις" @@ -15684,7 +15684,7 @@ msgstr "Πίνακας κατάτμησης" msgid "Edit partitioning" msgstr "Επεξεργασία κατάτμησης" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Επεξεργασία εμφάνισης" @@ -15799,11 +15799,11 @@ msgstr "Όνομα VIEW" msgid "Column names" msgstr "Ονόματα στηλών" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Μετονομασία πίνακα σε" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Διαγραφή της προβολής (DROP)" @@ -17123,6 +17123,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Το concurrent_insert έχει οριστεί στο 0" +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Αναμενόταν ένα κόμμα ή μια κλειστή αγκύλη" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/en_GB.po b/po/en_GB.po index 9b6d6a7cf7..2feb89f4d0 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,9 +3,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:38+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: English (United Kingdom) %2$s" msgstr[0] "%1$s match in %2$s" msgstr[1] "%1$s matches in %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3719,30 +3723,30 @@ msgstr "Filter rows" msgid "Search this table" msgstr "Search this table" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Begin" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Previous" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Next" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "End" @@ -3815,7 +3819,7 @@ msgstr "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Your SQL query has been executed successfully." @@ -3850,7 +3854,7 @@ msgid "Query took %01.4f seconds." msgstr "Query took %01.4f seconds." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3858,7 +3862,7 @@ msgid "With selected:" msgstr "With selected:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3941,15 +3945,15 @@ msgstr "File upload stopped by extension." msgid "Unknown error in file upload." msgstr "Unknown error in file upload." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Error while moving uploaded file." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -4015,8 +4019,8 @@ msgid "Keyname" msgstr "Keyname" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4064,15 +4068,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Drop" @@ -4085,7 +4089,7 @@ msgstr "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4135,8 +4139,8 @@ msgid "Table" msgstr "Table" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4144,25 +4148,25 @@ msgstr "Table" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Search" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Insert" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4170,24 +4174,24 @@ msgid "Privileges" msgstr "Privileges" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operations" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Tracking" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4198,16 +4202,16 @@ msgstr "Triggers" msgid "Database seems to be empty!" msgstr "Database seems to be empty!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Query" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Routines" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4215,18 +4219,18 @@ msgstr "Routines" msgid "Events" msgstr "Events" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "Textarea columns" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4241,34 +4245,34 @@ msgid "User accounts" msgstr "User groups" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binary log" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replication" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variables" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Charsets" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Engines" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Plug-ins" @@ -4893,18 +4897,18 @@ msgstr "Spatial" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Static data" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4915,38 +4919,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL said: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Explain SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Without PHP Code" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Submit Query" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Create PHP Code" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -4954,67 +4958,67 @@ msgid "Edit inline" msgstr "Edit index" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Sun" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s days, %s hours, %s minutes and %s seconds" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Missing parameter:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Jump to database \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "The %s functionality is affected by a known bug, see %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Click to toggle" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Browse your computer:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Select from the web server upload directory %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "There are no files to upload!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Empty" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Execute" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Users" @@ -5152,11 +5156,11 @@ msgstr "Add column" msgid "Attributes" msgstr "Attributes" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Failed to read configuration file!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -5164,31 +5168,31 @@ msgstr "" "This usually means there is a syntax error in it, please check any errors " "shown below." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Could not load default configuration from: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Invalid server index: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Invalid authentication method set in configuration:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5196,24 +5200,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Error: Token mismatch" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS overwrite attempt" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "possible exploit" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "numeric key detected" @@ -5962,13 +5966,13 @@ msgstr "Put columns names in the first row" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Columns enclosed with" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Columns escaped with" @@ -5986,12 +5990,12 @@ msgstr "Remove CRLF characters within columns" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Columns terminated with" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Lines terminated with" @@ -8208,7 +8212,7 @@ msgid "Table %s has been emptied." msgstr "Table %s has been emptied." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "View %s has been dropped." @@ -8343,8 +8347,8 @@ msgid "No data to display" msgstr "No data to display" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8391,53 +8395,53 @@ msgstr[1] "The column name '%s' is a MySQL reserved keyword." msgid "No column selected." msgstr "No column selected." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "The columns have been moved successfully." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Query error" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Change" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Index" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spatial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Fulltext" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Distinct values" @@ -8447,7 +8451,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "The %s extension is missing. Please check your PHP configuration." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "No change" @@ -9279,56 +9283,56 @@ msgstr "MySQL returned an empty result set (i.e. zero rows)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Edit structure by following the \"Structure\" link." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Go to database: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Edit settings for %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Go to table: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Structure of %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Go to view: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9374,48 +9378,48 @@ msgstr "Or" msgid "web server upload directory:" msgstr "web server upload directory:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Edit/Insert" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Continue insertion with %s rows" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "and then" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Insert as new row" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Insert as new row and ignore errors" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Show insert query" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Go back to previous page" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Insert another new row" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Go back to this page" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Edit next row" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9424,7 +9428,7 @@ msgid "" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9436,11 +9440,11 @@ msgstr "" msgid "Value" msgstr "Value" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Showing SQL query" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserted row id: %1$d" @@ -10302,7 +10306,7 @@ msgstr "Repair table" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Delete data or table" @@ -10315,32 +10319,32 @@ msgid "Delete the table (DROP)" msgstr "Delete the table (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analyse" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Check" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimise" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Rebuild" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Repair" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10368,37 +10372,37 @@ msgstr "Remove partitioning" msgid "Check referential integrity:" msgstr "Check referential integrity:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Can't move table to same one!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Can't copy table to same one!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Table %s has been moved to %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Table %s has been copied to %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "The table name is empty!" @@ -10576,7 +10580,7 @@ msgstr "Data dump options" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dumping data for table" @@ -10600,21 +10604,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Table structure for table" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Structure for view" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Stand-in structure for view" @@ -10704,7 +10708,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Data:" @@ -10812,7 +10816,7 @@ msgid "Data creation options" msgstr "Data creation options" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Truncate table before insert" @@ -10899,7 +10903,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10945,52 +10949,52 @@ msgstr "in use" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Constraints for dumped tables" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Constraints for table" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indexes for dumped tables" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indexes for table" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT for dumped tables" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT for table" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Error reading data:" @@ -11045,15 +11049,15 @@ msgstr "" msgid "Column names: " msgstr "Column names: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Invalid parameter for CSV import: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -11062,18 +11066,18 @@ msgstr "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Invalid format of CSV input on line %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Invalid column count in CSV input on line %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "This plug-in does not support compressed imports!" @@ -11081,7 +11085,7 @@ msgstr "This plug-in does not support compressed imports!" msgid "MediaWiki Table" msgstr "MediaWiki Table" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Invalid format of mediawiki input on line:
%s." @@ -11094,9 +11098,9 @@ msgstr "Import percentages as proper decimals (ex. 12.00% to .12)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Import currencies (ex. $5.00 to 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -11104,7 +11108,7 @@ msgstr "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Could not parse OpenDocument Spreadsheet!" @@ -11112,12 +11116,12 @@ msgstr "Could not parse OpenDocument Spreadsheet!" msgid "ESRI Shape File" msgstr "ESRI Shape File" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "There was an error importing the ESRI shape file: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -11125,12 +11129,12 @@ msgstr "" "You tried to import an invalid file or the imported file contains invalid " "data!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Spatial Extension does not support ESRI type \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "The imported file does not contain any data!" @@ -14234,15 +14238,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14257,17 +14257,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14289,23 +14290,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "The number of tables that are open." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "The number of tables that are open." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14338,17 +14339,17 @@ msgstr "Event %1$s has been created." msgid "Variable name was expected." msgstr "Table name template" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "At Beginning of Table" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14371,19 +14372,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15080,7 +15081,7 @@ msgstr "View dump (schema) of table" msgid "Invalid table name" msgstr "Invalid table name" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16123,7 +16124,7 @@ msgid "at beginning of table" msgstr "At Beginning of Table" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16172,7 +16173,7 @@ msgstr "partitioned" msgid "Edit partitioning" msgstr "Remove partitioning" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Edit view" @@ -16299,11 +16300,11 @@ msgstr "VIEW name" msgid "Column names" msgstr "Column names" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Rename view to" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Delete the view (DROP)" diff --git a/po/eo.po b/po/eo.po index 246b04d594..57716b1217 100644 --- a/po/eo.po +++ b/po/eo.po @@ -4,9 +4,9 @@ # Automatically generated, 2014. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-12-29 15:34+0000\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: Esperanto %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3316,30 +3319,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "" @@ -3410,7 +3413,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3443,7 +3446,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3451,7 +3454,7 @@ msgid "With selected:" msgstr "" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3527,15 +3530,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3599,8 +3602,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3648,15 +3651,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Forigi" @@ -3667,7 +3670,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3717,8 +3720,8 @@ msgid "Table" msgstr "Tabelo" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3726,25 +3729,25 @@ msgstr "Tabelo" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Serĉi" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3752,24 +3755,24 @@ msgid "Privileges" msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operacioj" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3780,16 +3783,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Peto" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3797,16 +3800,16 @@ msgstr "" msgid "Events" msgstr "Eventoj" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3819,34 +3822,34 @@ msgid "User accounts" msgstr "Uzantkontoj" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikado" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variabloj" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Signaroj" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Moduloj" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Kromprogramoj" @@ -4412,16 +4415,16 @@ msgstr "" msgid "Max: %s%s" msgstr "Maksimuma: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Statika analizo:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4432,98 +4435,98 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL diris: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Krei PHP-kodon" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "dim" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s tagoj, %s horoj, %s minutoj kaj %s sekundoj" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Plenumi" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Uzantoj" @@ -4649,41 +4652,41 @@ msgstr "Aldoni novan kolumnon" msgid "Attributes" msgstr "Atributoj" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Servilo %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4691,24 +4694,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5365,13 +5368,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5389,12 +5392,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -7333,7 +7336,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "" @@ -7463,8 +7466,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7502,52 +7505,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Ŝanĝi" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indekso" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7557,7 +7560,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8276,54 +8279,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8369,53 +8372,53 @@ msgstr "Aŭ" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8427,11 +8430,11 @@ msgstr "" msgid "Value" msgstr "Valoro" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9251,7 +9254,7 @@ msgstr "Ripari tabelon" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9264,32 +9267,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analizi" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Ripari" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9315,35 +9318,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9512,7 +9515,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9536,21 +9539,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9640,7 +9643,7 @@ msgid "Database:" msgstr "Datumbazo:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Datumoj:" @@ -9732,7 +9735,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9801,7 +9804,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9843,52 +9846,52 @@ msgstr "" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Limigoj por tabelo" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -9936,33 +9939,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -9970,7 +9973,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "MediaVikio-tabelo" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -9983,15 +9986,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -9999,23 +10002,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -12728,15 +12731,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "" @@ -12749,17 +12748,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "" @@ -12777,19 +12777,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "" @@ -12815,15 +12815,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12844,15 +12844,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13510,7 +13510,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14409,7 +14409,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14442,7 +14442,7 @@ msgstr "" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14557,11 +14557,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/es.po b/po/es.po index 3031077210..81edcc9ee0 100644 --- a/po/es.po +++ b/po/es.po @@ -1,9 +1,9 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-14 14:56+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Spanish %2$s" msgstr[0] "%1$s coincidencia en la tabla %2$s" msgstr[1] "%1$s coincidencias en la tabla %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3504,30 +3508,30 @@ msgstr "Filtrar filas" msgid "Search this table" msgstr "Buscar en esta tabla" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Comenzar" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Siguiente" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Fin" @@ -3598,7 +3602,7 @@ msgstr "Podría ser aproximado. Ver [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Su consulta se ejecutó con éxito." @@ -3633,7 +3637,7 @@ msgid "Query took %01.4f seconds." msgstr "La consulta tardó %01.4f segundos." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3641,7 +3645,7 @@ msgid "With selected:" msgstr "Para los elementos que están marcados:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3721,17 +3725,17 @@ msgstr "La subida del archivo fue detenida por extensión." msgid "Unknown error in file upload." msgstr "Error desconocido al subir el archivo." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Se detectó un error al mover el archivo subido, ver [doc@faq1-11]FAQ 1.11[/" "doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Error al mover el archivo subido." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "No se pudo leer el archivo subido." @@ -3795,8 +3799,8 @@ msgid "Keyname" msgstr "Nombre de la clave" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3844,15 +3848,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Eliminar" @@ -3865,7 +3869,7 @@ msgstr "" "Los índices %1$s y %2$s parecen ser iguales y posiblemente se puede eliminar " "uno." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3917,8 +3921,8 @@ msgid "Table" msgstr "Tabla" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3926,25 +3930,25 @@ msgstr "Tabla" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Buscar" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Insertar" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3952,24 +3956,24 @@ msgid "Privileges" msgstr "Privilegios" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operaciones" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Seguimiento" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3980,16 +3984,16 @@ msgstr "Disparadores" msgid "Database seems to be empty!" msgstr "La base de datos, ¡parece estar vacía!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Generar una consulta" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutinas" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3997,16 +4001,16 @@ msgstr "Rutinas" msgid "Events" msgstr "Eventos" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Diseñador" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Columnas centrales" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4019,34 +4023,34 @@ msgid "User accounts" msgstr "Cuentas de usuarios" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Registro binario" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicación" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variables" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Juegos de caracteres" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Motores" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Complementos" @@ -4688,16 +4692,16 @@ msgstr "Espacial" msgid "Max: %s%s" msgstr "Máximo: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Análisis estático:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "Se encontraron %d errores durante el análisis." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4708,104 +4712,104 @@ msgstr "Se encontraron %d errores durante el análisis." msgid "MySQL said: " msgstr "MySQL ha dicho: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Omitir la explicación del SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "Analice Explicar en %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Sin código PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Ejecutar la consulta" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Crear código PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Editar en línea" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a las %H:%M:%S" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s días, %s horas, %s minutos y %s segundos" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Parámetro faltante:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Saltar a la base de datos \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La funcionalidad %s está afectada por un fallo conocido, vea %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Pulse para conmutar" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Buscar en su ordenador:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, 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:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "¡No hay archivos para subir!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Vaciar" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Ejecutar" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Usuarios" @@ -4935,11 +4939,11 @@ msgstr "Añadir columna nueva" msgid "Attributes" msgstr "Atributos" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "¡No se pudo leer el archivo de configuración!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4947,33 +4951,33 @@ msgstr "" "Esto generalmente significa que tiene un error de sintáxis, revisa los " "errores que se muestran a continuación." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "No se pudo cargar la configuración predeterminada desde: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Índice de servidor inválido: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "El nombre del host no es válido para el servidor %1$s. Revise su " "configuración." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Servidor %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Método de autenticación no válido definido en la configuración:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4985,24 +4989,24 @@ msgstr "" "phpMyAdmin utiliza actualmente la zona horaria predeterminada del servidor " "de la base de datos." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format 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:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Error: no coincide un «token»" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "intento de sobre-escritura de la variable GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "posible aprovechamiento" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "telado numérico detectado" @@ -5757,13 +5761,13 @@ msgstr "Poner los nombres de campo en la primera fila" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Columnas encerradas entre" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Caracter de escape de columnas" @@ -5781,12 +5785,12 @@ msgstr "Eliminar los caracteres CRLF en las columnas" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Columnas terminadas con" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Líneas terminadas en" @@ -7966,7 +7970,7 @@ msgid "Table %s has been emptied." msgstr "Se ha vaciado la tabla %s." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Se descartó la vista %s." @@ -8101,8 +8105,8 @@ msgid "No data to display" msgstr "No hay datos para mostrar" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8140,53 +8144,53 @@ msgstr[1] "Los nombres «%s» es una palabra clave reservada de MySQL." msgid "No column selected." msgstr "No se seleccionaron columnas." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Las columnas fueron movidas exitosamente." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Errores de consulta" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Cambiar" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Índice" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Espacial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Texto completo" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Valores distintos" @@ -8196,7 +8200,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "No se encontró la extensión %s. Revisa la configuración PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Sin cambios" @@ -9009,56 +9013,56 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "[Ocurrió un ROLLBACK.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Edite la estructura siguiendo el enlace \"Estructura\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Ir a la base de datos: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Editar configuración de %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Ir a la tabla: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Estructura de %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Ir a la vista: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9106,48 +9110,48 @@ msgstr "O" msgid "web server upload directory:" msgstr "directorio en el servidor web para subir los archivos:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Editar/Insertar" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuar inserción con %s filas" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "y luego" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Insertar como una nueva fila" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Agregar como nueva fila e ignorar errores" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Mostrar consulta de inserción" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Volver" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Insertar un nuevo registro" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Volver a esta página" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Editar la siguiente fila" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9157,7 +9161,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9169,11 +9173,11 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Mostrando la consulta SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "La Id de la fila insertada es: %1$d" @@ -10059,7 +10063,7 @@ msgstr "Reparar la tabla" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Borrar datos o tabla" @@ -10072,32 +10076,32 @@ msgid "Delete the table (DROP)" msgstr "Borrar la tabla (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analice" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Revise" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimice" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Reconstruya" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Repare" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Truncar" @@ -10123,35 +10127,35 @@ msgstr "Remueva la partición" msgid "Check referential integrity:" msgstr "Comprobar la integridad referencial:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "¡No es posible mover la tabla a la misma!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "¡No es posible copiar la tabla a la misma!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "La tabla %s se movió a %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "La tabla %s se copió a %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "¡El nombre de la tabla está vacío!" @@ -10334,7 +10338,7 @@ msgstr "Opciones para volcado de datos" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Volcado de datos para la tabla" @@ -10358,21 +10362,21 @@ msgstr "Definición" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Estructura de tabla para la tabla" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Estructura para la vista" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Estructura Stand-in para la vista" @@ -10462,7 +10466,7 @@ msgid "Database:" msgstr "Base de datos:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Datos:" @@ -10565,7 +10569,7 @@ msgid "Data creation options" msgstr "Opciones de creación de datos" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Truncar tablas antes de insertar" @@ -10651,7 +10655,7 @@ msgstr "Parece que su base de datos utiliza funciones;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" "exportar los alias no podría funcionar correctamente en todos los casos." @@ -10696,52 +10700,52 @@ msgstr "en uso" msgid "It appears your database uses views;" msgstr "Parece que su base de datos utiliza vistas;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Restricciones para tablas volcadas" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Filtros para la tabla" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Índices para tablas volcadas" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indices de la tabla" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT de las tablas volcadas" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT de la tabla" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "TIPOS MIME PARA LA TABLA" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELACIONES PARA LA TABLA" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Parece que su tabla utiliza disparadores («triggers»);" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Error leyendo datos:" @@ -10797,15 +10801,15 @@ msgstr "" msgid "Column names: " msgstr "Nombre de las columnas: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Parámetro no válido para importar CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10815,18 +10819,18 @@ msgstr "" "están escritos correctamente, separados por comas y no encerrados entre " "comillas." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "El formato de los datos CSV en la línea %d no es válido." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "El número de columnas de los datos CSV en la línea %d no es válido." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "¡Este plugin no tiene soporte para importaciones comprimidas!" @@ -10834,7 +10838,7 @@ msgstr "¡Este plugin no tiene soporte para importaciones comprimidas!" msgid "MediaWiki Table" msgstr "Tabla MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "El formato de los datos mediawiki no es válido en la línea:
%s." @@ -10849,9 +10853,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importar monedas (por ejemplo: $5.00 como 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10859,7 +10863,7 @@ msgstr "" "El archivo XML especificado estaba incompleto o mal formado. Corrija el " "problema e intente nuevamente." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "¡No se pudo procesar la hoja de cálculo Open Document!" @@ -10867,12 +10871,12 @@ msgstr "¡No se pudo procesar la hoja de cálculo Open Document!" msgid "ESRI Shape File" msgstr "Archivo de forma ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Hubo un error importando el archivo de forma ESRI: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10880,12 +10884,12 @@ msgstr "" "¡Intentó importar un archivo no válido o el archivo importado contiene datos " "inválidos!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "La extensión espacial MySQL no soporta el tipo ESRI \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "¡El archivo importado no contiene datos!" @@ -13989,15 +13993,11 @@ msgid "An opening bracket followed by a set of values was expected." msgstr "" "Se esperaba un corchete de apertura seguido por un conjunto de valores." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "Se esperaba un corchete de apertura." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "Se esperaba una coma o un corchete de cierre" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Se esperaba una coma o un corchete de cierre." @@ -14010,17 +14010,18 @@ msgstr "Se esperaba un corchete de cierre." msgid "Unrecognized data type." msgstr "Tipo de dato desconocido." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Se encontró anteriormente un alias." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Punto inesperado." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Se esperaba un alias." @@ -14038,19 +14039,19 @@ msgstr "Se espera un desplazamiento." msgid "This option conflicts with \"%1$s\"." msgstr "Esta opción tiene conflictos con \"%1$s\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Se esperaba el nombre anterior de la tabla." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Se esperaba la palabra clave \"TO\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Se esperaba el nuevo nombre de la tabla." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Se esperaba un cambio de nombre." @@ -14076,15 +14077,15 @@ 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:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Comienzo inesperado de declaración." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Tipo de declaración desconocida." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Ninguna operación se inició anteriormente." @@ -14107,15 +14108,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Palabra clave no reconocida." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Se esperaba el nombre de la entidad." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Se esperaba una palabra \"RETURNS\"." @@ -14811,7 +14812,7 @@ msgstr "Mostrar volcado (esquema) de la tabla" msgid "Invalid table name" msgstr "El nombre de la tabla no es válido" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Fila: %1$s, Columna: %2$s, Error: %3$s" @@ -15774,7 +15775,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:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Particiones" @@ -15813,7 +15814,7 @@ msgstr "Dividido por:" msgid "Edit partitioning" msgstr "Remueva la partición" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Editar vista" @@ -15932,11 +15933,11 @@ msgstr "VER nombre" msgid "Column names" msgstr "Nombre de las columnas" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Cambiar el nombre de la vista a" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Borrar la vista (DROP)" @@ -17261,6 +17262,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "«concurrent_insert» está definido como 0" +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Se esperaba una coma o un corchete de cierre" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/et.po b/po/et.po index 95d8689f13..c6a53c0f16 100644 --- a/po/et.po +++ b/po/et.po @@ -3,13 +3,13 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-02-08 14:54+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" @@ -51,7 +51,7 @@ msgid "Table comments:" msgstr "Tabeli kommentaarid:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -105,7 +105,7 @@ msgstr "Tüüp" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -167,12 +167,12 @@ msgid "Comments" msgstr "Kommentaarid" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Primaarne" @@ -205,12 +205,12 @@ msgstr "Ei" #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -255,8 +255,8 @@ msgid "Tables" msgstr "Tabelid" #: db_export.php:66 libraries/Menu.php:323 libraries/Menu.php:430 -#: libraries/Util.php:3402 libraries/Util.php:3412 libraries/Util.php:3418 -#: libraries/Util.php:3698 libraries/Util.php:4335 libraries/Util.php:4352 +#: libraries/Util.php:3409 libraries/Util.php:3419 libraries/Util.php:3425 +#: libraries/Util.php:3705 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/central_columns.lib.php:725 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,7 +264,7 @@ msgstr "Tabelid" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -469,7 +469,7 @@ msgstr "Lisa geomeetria" #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -499,7 +499,7 @@ msgstr "Lisa geomeetria" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Mine" @@ -527,7 +527,7 @@ msgstr "Nurjus" msgid "Incomplete params" msgstr "Puudulikud parameetrid" -#: import.php:184 +#: import.php:186 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -536,15 +536,15 @@ msgstr "" "Tõenäoliselt üritasid üles laadida liiga suurt faili. Palun loe " "%sdokumentatsioonist%s, kuidas sellest piirangust vabaneda." -#: import.php:360 import.php:665 +#: import.php:362 import.php:667 msgid "Showing bookmark" msgstr "Näitan järjehoidjat" -#: import.php:376 import.php:661 +#: import.php:378 import.php:663 msgid "The bookmark has been deleted." msgstr "Järjehoidja on kustutatud." -#: import.php:474 +#: import.php:476 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -553,12 +553,12 @@ msgstr "" "Üleslaaditud faili ei saa teisaldada, sest PHP säte open_basedir on aktiivne " "ja puudub ligipääs (ajutiste failide) kataloogi %s." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:492 import.php:569 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "Faili ei saanud lugeda!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:503 import.php:518 import.php:543 import.php:558 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -567,7 +567,7 @@ msgstr "" "Üritasid laadida mittetoetatava tihendamisega faili (%s). Selle tugi on pole " "loodud või on seadistuses keelatud." -#: import.php:574 +#: import.php:576 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -577,22 +577,25 @@ msgstr "" "maht ületab sinu PHP seadistuses lubatud maksimaalset mahtu. Vaata " "[doc@faq1-16]KKK 1.16[/doc]." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:628 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "" "Ei saanud importimise pluginaid laadida, palun kontrolli oma paigaldust!" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:670 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "Loodi järjehoidja %s." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "Importimine lõpetati edukalt, teostati %d päringut." +#: import.php:680 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "Importimine lõpetati edukalt, teostati %d päringut." +msgstr[1] "Importimine lõpetati edukalt, teostati %d päringut." -#: import.php:705 +#: import.php:711 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -601,7 +604,7 @@ msgstr "" "Ületati skripti ooteaeg. Kui tahad importimise lõpetada, siis palun %ssaada " "fail uuesti%s ja importimine jätkub poolelijäänud kohast." -#: import.php:715 +#: import.php:721 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -615,7 +618,7 @@ msgid "Could not load the progress of the import." msgstr "Importimise edenemise laadimine nurjus." #: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: libraries/Util.php:802 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Tagasi" @@ -710,10 +713,11 @@ msgstr "Näita PHP teavet" msgid "Version information:" msgstr "Versiooniinfo:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:449 libraries/Util.php:516 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentatsioon" @@ -1001,7 +1005,7 @@ msgid "Save & close" msgstr "Salvesta ja sule" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Lähtesta" @@ -1058,7 +1062,7 @@ 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:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:132 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 @@ -1073,7 +1077,7 @@ msgstr "Simuleeri päringut" msgid "Matched rows:" msgstr "Sobivad read:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:137 libraries/Util.php:703 msgid "SQL query:" msgstr "SQL päring:" @@ -1132,12 +1136,12 @@ msgid "Other" msgstr "Muud" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:160 libraries/Util.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:162 libraries/Util.php:1500 msgid "." msgstr "." @@ -1243,40 +1247,40 @@ msgid "Processes" msgstr "Protsessid" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:202 libraries/Util.php:1442 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:203 libraries/Util.php:1444 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:204 libraries/Util.php:1446 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:205 libraries/Util.php:1448 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:206 libraries/Util.php:1450 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:207 libraries/Util.php:1452 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:208 libraries/Util.php:1454 msgid "EiB" msgstr "EiB" @@ -1294,7 +1298,7 @@ msgstr "Päringud" msgid "Traffic" msgstr "Liiklus" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4333 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Sätted" @@ -1309,7 +1313,7 @@ msgstr "Palun lisa seeriasse vähemalt üks muutuja!" #: js/messages.php:219 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1511,7 +1515,7 @@ msgstr "Analüüsimine…" msgid "Explain output" msgstr "Selgita väljundit" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4329 #: 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:91 libraries/tracking.lib.php:284 @@ -1610,8 +1614,8 @@ msgstr "" "Lähtestamine vaikimisi seadistusse…" #: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 -#: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 -#: libraries/Util.php:4357 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:581 libraries/Util.php:4332 libraries/Util.php:4347 +#: libraries/Util.php:4364 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 #: libraries/server_status_monitor.lib.php:313 prefs_manage.php:237 #: setup/frames/menu.inc.php:26 @@ -1765,7 +1769,7 @@ msgstr "Andmebaasi kopeeritakse" msgid "Changing charset" msgstr "Märgitabeli muutmine" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:377 libraries/Util.php:3291 msgid "Enable foreign key checks" msgstr "Luba võõrvõtme(te) kontrollid" @@ -1799,9 +1803,9 @@ msgstr "Salvestatud funktsioon peab sisaldama RETURN käsku!" #: js/messages.php:392 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 -#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 -#: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 -#: libraries/Util.php:4356 libraries/config/messages.inc.php:255 +#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3712 +#: libraries/Util.php:3713 libraries/Util.php:4331 libraries/Util.php:4346 +#: libraries/Util.php:4363 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:168 libraries/rte/rte_list.lib.php:149 #: libraries/server_privileges.lib.php:2513 #: libraries/server_privileges.lib.php:2592 @@ -1850,8 +1854,8 @@ msgstr "Näita päringu kasti" #: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 -#: libraries/Util.php:3703 libraries/Util.php:3704 +#: libraries/Index.php:721 libraries/Util.php:732 libraries/Util.php:1242 +#: libraries/Util.php:3710 libraries/Util.php:3711 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 #: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:182 @@ -2038,7 +2042,7 @@ msgid "No dependencies selected!" msgstr "Ühtegi sõltuvust ei ole valitud!" #: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2122,7 +2126,7 @@ msgid "Data point content" msgstr "Andmepunkti sisu" #: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignoreeri" @@ -2362,7 +2366,7 @@ msgid "Select database first" msgstr "Vali esmalt andmebaas" #: js/messages.php:599 libraries/DisplayResults.php:5029 -#: libraries/Util.php:4217 +#: libraries/Util.php:4224 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" @@ -2634,63 +2638,63 @@ msgid "December" msgstr "Detsember" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:773 libraries/Util.php:1664 msgid "Jan" msgstr "Jaan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:775 libraries/Util.php:1666 msgid "Feb" msgstr "Veebr" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:777 libraries/Util.php:1668 msgid "Mar" msgstr "Märts" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:779 libraries/Util.php:1670 msgid "Apr" msgstr "Aprill" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:781 libraries/Util.php:1672 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:783 libraries/Util.php:1674 msgid "Jun" msgstr "Juuni" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:785 libraries/Util.php:1676 msgid "Jul" msgstr "Juuli" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:787 libraries/Util.php:1678 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:789 libraries/Util.php:1680 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:791 libraries/Util.php:1682 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:793 libraries/Util.php:1684 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:795 libraries/Util.php:1686 msgid "Dec" msgstr "Dets" @@ -2728,32 +2732,32 @@ msgid "Sun" msgstr "Püh" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:816 libraries/Util.php:1691 msgid "Mon" msgstr "Esm" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:818 libraries/Util.php:1693 msgid "Tue" msgstr "Tei" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:820 libraries/Util.php:1695 msgid "Wed" msgstr "Kol" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:822 libraries/Util.php:1697 msgid "Thu" msgstr "Nel" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:824 libraries/Util.php:1699 msgid "Fri" msgstr "Ree" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:826 libraries/Util.php:1701 msgid "Sat" msgstr "Lau" @@ -2894,9 +2898,9 @@ msgstr "Palun sisesta korrektne kuupäev või kellaaeg" msgid "Please enter a valid HEX input" msgstr "Palun sisesta korrektne 16-nd väärtus" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:679 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Viga" @@ -2946,18 +2950,18 @@ msgstr "Ootamatud sümbolid real %s." msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "Ootamatu sümbol %1$s. real. Oodatud vaheleht, aga leiti \"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Olemasolev seadistusfail (%s) ei ole loetav." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Seadistusfailil on valed õigused. See ei tohiks olla kõikide jaoks " "kirjutatav!" -#: libraries/Config.php:1519 +#: libraries/Config.php:1528 msgid "Font size" msgstr "Fondi kõrgus" @@ -3027,7 +3031,7 @@ msgstr "Jooksvas sessioonis" msgid "Explain" msgstr "Selgita" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1328 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profileerimine" @@ -3061,8 +3065,8 @@ msgid "History" msgstr "Ajalugu" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3155,7 +3159,7 @@ msgstr "Peida jälitusinfo" msgid "Count:" msgstr "Kogus:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:339 libraries/Util.php:1298 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 @@ -3211,7 +3215,6 @@ msgid "Switch to dark theme" msgstr "Vali tume teema" #: libraries/DatabaseInterface.php:1528 -#| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Seadistatud sortimise ühenduse määramine ebaõnnestus!" @@ -3392,9 +3395,9 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s vaste %2$s tabelis" msgstr[1] "%1$s vastet %2$s tabelis" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3451,30 +3454,30 @@ msgstr "Filtreeritud read" msgid "Search this table" msgstr "Otsi sellest tabelist" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Algus" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Eelmine" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Järgmine" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Lõpp" @@ -3545,7 +3548,7 @@ msgstr "Võib olla umbkaudne. Vaata [doc@faq3-11]KKK 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Sinu SQL päring teostati edukalt." @@ -3579,7 +3582,7 @@ msgid "Query took %01.4f seconds." msgstr "päring kestis %01.4f sekundit." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3587,7 +3590,7 @@ msgid "With selected:" msgstr "Valitutega:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3664,16 +3667,16 @@ msgstr "Laiend peatas faili üleslaadimise." msgid "Unknown error in file upload." msgstr "Faili üleslaadimises on tundmatu viga." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Üleslaetud faili liigutamisel esines viga, vaata [doc@faq1-11]KKK 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Üleslaetud faili liigutamisel esines viga." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Ei saa lugeda üleslaaditud faili." @@ -3737,8 +3740,8 @@ msgid "Keyname" msgstr "Võtme nimi" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3786,15 +3789,15 @@ msgstr "Primaarvõti on kustutatud." msgid "Index %s has been dropped." msgstr "%s indeks on kustutatud." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Kustuta" @@ -3807,7 +3810,7 @@ msgstr "" "%1$s ja %2$s indeksid tunduvad olema võrdsed ja üks neist tõenäoliselt " "kustutatakse." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3858,8 +3861,8 @@ msgid "Table" msgstr "Tabel" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3867,25 +3870,25 @@ msgstr "Tabel" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Otsi" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Lisa" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3893,24 +3896,24 @@ msgid "Privileges" msgstr "Õigused" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Tegevused" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Jälgimine" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3921,16 +3924,16 @@ msgstr "Päästikud" msgid "Database seems to be empty!" msgstr "Andmebaas tundub olevat tühi!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Päring" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Funktsioonid" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3938,16 +3941,16 @@ msgstr "Funktsioonid" msgid "Events" msgstr "Sündmused" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Kujundaja" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Kesksed veerud" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3960,34 +3963,34 @@ msgid "User accounts" msgstr "Kasutajate kontod" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binaarne logi" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Paljundamine" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Muutujad" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Märgitabelid" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Mootorid" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Pluginad" @@ -4611,16 +4614,16 @@ msgstr "Ruumiline" msgid "Max: %s%s" msgstr "Maksimaalne: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Staatiline analüüs:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "Analüüsi käigus avastati %d viga." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4631,98 +4634,98 @@ msgstr "Analüüsi käigus avastati %d viga." msgid "MySQL said: " msgstr "MySQL vastas: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Selgita SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Jäta SQL selgitus vahele" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "Analüüsi ja seleta kohal %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "PHP koodita" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "Saada päring" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Loo PHP kood" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Muuda kohapeal" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Päike" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y kell %I:%M %p" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s päeva, %s tundi, %s minutit ja %s sekundit" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Puudulik parameeter:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Mine \"%s\" andmebaasi." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Seda %s funktsionaalsust mõjutas tuntud viga, vaata %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Muuda" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Sirvi oma arvutist:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Vali veebiserveri üleslaadimise kataloogist %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Valitud üleslaadimise kataloogile ei pääse ligi." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Puuduvad failid, mida üles laadida!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Tühjenda" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Teosta" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Kasutajad" @@ -4851,11 +4854,11 @@ msgstr "Lisa uus veerg" msgid "Attributes" msgstr "Atribuudid" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Seadistuse faili lugemine ebaõnnestus!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4863,31 +4866,31 @@ msgstr "" "See tähendab tavaliselt, et selles on süntaksi viga, palun kontrolli kõiki " "allolevaid vigu." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Ei saanud laadida vaikimisi seadistuse faili kohast: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Vale serveri indeks: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Vale hostinimi %1$s serverile. Palun kontrolli oma seadistust." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Seadistuses on valitud vale autentimise meetod:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4898,24 +4901,24 @@ msgstr "" "häälestuses sätet [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em]. " "phpMyAdmin kasutab hetkel andmebaasi serveri vaikimisi ajatsooni." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Peaksid uuendama %s %s või uuemale versioonile." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Viga: sobimatu sümbol" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS ülekirjutamise katse" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "võimalik turvaauk" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "tuvastati arvvõti" @@ -5642,13 +5645,13 @@ msgstr "Aseta veergude nimed esimesse ritta" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Veergusid ümbritseb" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Veergusid lõpetab" @@ -5666,12 +5669,12 @@ msgstr "Eemalda veergudest CRLF märgid" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Veerud lõpetab" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Ridasid katkestab" @@ -7782,7 +7785,7 @@ msgid "Table %s has been emptied." msgstr "Tabel %s on tühjendatud." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Vaade %s kustutati." @@ -7914,8 +7917,8 @@ msgid "No data to display" msgstr "Puuduvad kuvatavad andmed" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7953,52 +7956,52 @@ msgstr[1] "Nimed '%s' on MySQLi reserveeritud võtmesõnad." msgid "No column selected." msgstr "Veergu ei ole valitud." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Veerud on edukalt liigutatud." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Päringu viga" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Muuda" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Ruumiline" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Täistekst" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Erista väärtusi" @@ -8008,7 +8011,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s laiend on puudu. Palun kontrolli oma PHP seadistust." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ei muudetud" @@ -8791,56 +8794,56 @@ msgstr "MySQL tagastas tühja tulemuse (s.t nulliread)." msgid "[ROLLBACK occurred.]" msgstr "[Toimus tagasipööramine.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "Vaata struktuuri sisu, klõpsates selle nimel." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Selle mistahes sätte muutmiseks klõpsa vastaval viidal \"Valikud\"." -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Struktuuri muutmiseks klõpsa lingil \"Struktuur\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Mine andmebaasi: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Muuda %s sätteid" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Mine tabelisse: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s struktuur" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Mine vaatesse: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8888,55 +8891,55 @@ msgstr "Või" msgid "web server upload directory:" msgstr "veebiserveri üleslaadimiskataloog:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Muuda/Lisa" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Jätka %s rea lisamist" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "ja siis" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Lisa uue reana" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Lisa uue reana ja ignoreeri vigu" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Näita lisamise päringut" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Mine eelmisele lehele tagasi" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Lisa järgmine uus rida" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Mine tagasi sellele lehele" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Muuda järgmist rida" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8948,11 +8951,11 @@ msgstr "" msgid "Value" msgstr "Väärtus" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Näitan SQL päringut" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisatud rea id: %1$d" @@ -9822,7 +9825,7 @@ msgstr "Paranda tabelit" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Kustuta andmed või tabel" @@ -9835,32 +9838,32 @@ msgid "Delete the table (DROP)" msgstr "Kustuta tabel (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analüüsi" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Kontrolli" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimeeri" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Loo uuesti" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Paranda" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Kärbi" @@ -9886,35 +9889,35 @@ msgstr "Eemalda partitsioneerimine" msgid "Check referential integrity:" msgstr "Kontrolli pärinevust:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Ei saa tabelit iseendasse liigutada!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Ei saa tabelit iseendasse kopeerida!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "%s tabel liigutati %s andmebaasi." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "%s tabel kopeeriti %s andmebaasi." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Tabeli nimi on tühi!" @@ -10090,7 +10093,7 @@ msgstr "Andmete tõmmise valikud" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Andmete tõmmistamine tabelile" @@ -10114,21 +10117,21 @@ msgstr "Definitsioon" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tabeli struktuur tabelile" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Vaate struktuur" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Sise-vaate struktuur" @@ -10218,7 +10221,7 @@ msgid "Database:" msgstr "Andmebaas:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Andmed:" @@ -10319,7 +10322,7 @@ msgid "Data creation options" msgstr "Andmete loomise valikud" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Kärbi tabelit enne lisamist" @@ -10402,7 +10405,7 @@ msgstr "Tundub, et su andmebaas kasutab protseduure;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" "aliaste eksportimine võib mõningatel juhtudel töötada mitte usaldusväärselt." @@ -10445,52 +10448,52 @@ msgstr "kasutusel" msgid "It appears your database uses views;" msgstr "Tundub, et su andmebaas kasutab vaateid;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Tõmmistatud tabelite piirangud" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Piirangud tabelile" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indeksid tõmmistatud tabelitele" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indeksid tabelile" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT tõmmistatud tabelitele" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT tabelile" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Tundub, et su tabel kasutab trigereid;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "Vaate %s struktuur eksporditi tabelina" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "(Tegelik vaade on allpool)" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Andmete lugemisel esines viga:" @@ -10545,15 +10548,15 @@ msgstr "" msgid "Column names: " msgstr "Veeru nimed: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Vale parameeter CSV importimiseks: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10562,18 +10565,18 @@ msgstr "" "Täpsustati vale veerg (%s)! Veendu, et veergude nimed on õigesti kirjutatud, " "komadega eraldatud ja pole asetatud jutumärkide vahele." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Vale CSV sisendi formaat %d.-ndal real." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Vale veeru hulk CSV sisendis %d.-ndal real." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "See plugin ei toeta tihendatud importe!" @@ -10581,7 +10584,7 @@ msgstr "See plugin ei toeta tihendatud importe!" msgid "MediaWiki Table" msgstr "MediaWiki tabel" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Vale mediawiki sisendi formaat real:
%s." @@ -10594,9 +10597,9 @@ msgstr "Impordi protsendid õigete kümnendarvudena (nt 12.00% -> .12)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Impordi valuutad (nt $5.00 -> 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10604,7 +10607,7 @@ msgstr "" "Täpsustatud XML fail oli kas valesti vormitud või lõpetamata. Palun paranda " "see viga ja proovi uuesti." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "OpenDocument tabeli parsimine ebaõnnestus!" @@ -10612,12 +10615,12 @@ msgstr "OpenDocument tabeli parsimine ebaõnnestus!" msgid "ESRI Shape File" msgstr "ESRI Shape fail" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "ESRI shape faili importimisel esines viga: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10625,12 +10628,12 @@ msgstr "" "Üritasid importida vigast faili või imporditud fail sisaldab vigaseid " "andmeid!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Spatial Extension ei toeta ESRI tüüpi \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Imporditud failis ei ole mitte mingeid andmeid!" @@ -13607,15 +13610,11 @@ msgstr "Oodati %1$d väärtust, kuid leiti %2$d." msgid "An opening bracket followed by a set of values was expected." msgstr "Oodati avanevat sulgu, millele järgnevad väärtused." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "Oodati avanevat sulgu." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "Oodati koma või lõpetavat sulgu" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Oodati koma või lõpetavat sulgu." @@ -13628,17 +13627,18 @@ msgstr "Oodati lõpetavat sulgu." msgid "Unrecognized data type." msgstr "Tundmatu andmetüüp." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Eelnevalt leiti alias." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Ootamatu punkt." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Oodati aliast." @@ -13656,19 +13656,19 @@ msgstr "Oodati nihet." msgid "This option conflicts with \"%1$s\"." msgstr "See säte põhjustab konflikti sättega \"%1$s\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Oodati tabeli vana nime." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Oodati võtmesõna \"TO\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Oodati tabeli uut nime." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Oodati ümbernimetamist." @@ -13694,15 +13694,15 @@ msgstr "Oodati lõpetavat sümbolit %1$s." msgid "Variable name was expected." msgstr "Oodati muutuja nime." -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Ootamatu lause algus." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Tundmatut tüüpi lause." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Transaktsiooni ei olnud eelnevalt alustatud." @@ -13723,15 +13723,15 @@ msgstr "Leiti uus lause, kuid selle ja talle järgneva vahelt puudub eraldaja." msgid "Unrecognized keyword." msgstr "Tundmatu võtmesõna." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Oodati olemi nime." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Oodati vähemalt ühe veeru kirjeldust." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Oodati võtmesõna \"RETURNS\"." @@ -14421,7 +14421,7 @@ msgstr "Vaata tabeli tõmmist (skeemi)" msgid "Invalid table name" msgstr "Vigane tabeli nimi" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Rida: %1$s, veerg: %2$s, viga: %3$s" @@ -15339,7 +15339,7 @@ msgid "at beginning of table" msgstr "tabeli alguses" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Partitsioonid" @@ -15372,7 +15372,7 @@ msgstr "Partitsioonide tabel" msgid "Edit partitioning" msgstr "Muuda partitsioneerimist" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Muuda vaadet" @@ -15487,11 +15487,11 @@ msgstr "VIEW nimi" msgid "Column names" msgstr "Veeru nimed" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Muuda vaate nimeks" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Kustuta vaade (DROP)" @@ -16750,6 +16750,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert väärtuseks on määratud 0" +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Oodati koma või lõpetavat sulgu" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/eu.po b/po/eu.po index 99e9252426..7995b2614a 100644 --- a/po/eu.po +++ b/po/eu.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:26+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Basque %2$s" msgstr[0] "%s emaitza %s taulan" msgstr[1] "%s emaitzak %s taulan" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3795,16 +3799,16 @@ msgstr "Eremuak" msgid "Search this table" msgstr "Datu-basean bilatu" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Hasi" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3813,8 +3817,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Aurrekoa" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -3823,8 +3827,8 @@ msgctxt "Next page" msgid "Next" msgstr "Hurrengoa" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3910,7 +3914,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3950,7 +3954,7 @@ msgid "Query took %01.4f seconds." msgstr "Kontsulta exekutatzeko denbora %01.4f seg" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3958,7 +3962,7 @@ msgid "With selected:" msgstr "Ikurdunak:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4042,15 +4046,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4117,8 +4121,8 @@ msgid "Keyname" msgstr "Giltza-izena" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4167,15 +4171,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Ezabatu" @@ -4186,7 +4190,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4236,8 +4240,8 @@ msgid "Table" msgstr "Taula" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4245,25 +4249,25 @@ msgstr "Taula" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Bilatu" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Txertatu" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4271,24 +4275,24 @@ msgid "Privileges" msgstr "Pribilegioak" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Eragiketak" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4299,16 +4303,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Kontsulta" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4316,18 +4320,18 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4342,35 +4346,35 @@ msgid "User accounts" msgstr "Erabiltzailea" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 #, fuzzy msgid "Binary log" msgstr "Binarioa " #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Ihardetsi" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Aldagaiak" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Karaktere-multzoa" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4976,16 +4980,16 @@ msgstr "Gutira" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4996,38 +5000,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL-ek zera dio: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL-a azaldu" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "SQL-ren azalpena saltatu" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP Koderik gabe" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Kontsulta bidali" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP kodea sortu" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5035,68 +5039,68 @@ msgid "Edit inline" msgstr "Inprimatzeko ikuspegia" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Iga" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y-%m-%d, %H:%M:%S" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s egun, %s ordu, %s minutu eta %s segundu" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "\"%s\" datu-basera joan." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, 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:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Hutsik" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 #, fuzzy #| msgid "User" msgid "Users" @@ -5240,44 +5244,44 @@ msgstr "Gehitu %s zutabe" msgid "Attributes" msgstr "Atributuak" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Failed to read configuration file!" msgstr "Konfiguratutako monitore lokal bateraezina" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Zerbitzaria" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5285,24 +5289,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6006,7 +6010,7 @@ msgstr "Eremuen izenak lehenengo errenkadan jarri" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6014,7 +6018,7 @@ msgstr "Eremuak honekin mugatuta:" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6036,14 +6040,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Honetan bukatutako lerroak: " #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8154,7 +8158,7 @@ msgid "Table %s has been emptied." msgstr "%s taula hustu egin da." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8298,8 +8302,8 @@ msgid "No data to display" msgstr "Datu-baserik ez" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." @@ -8347,56 +8351,56 @@ msgstr[1] "" msgid "No column selected." msgstr "Ez dago datu-baserik aukeratuta." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Kontsulta mota" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Aldatu" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indizea" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Testu osoa" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Session value" msgid "Distinct values" @@ -8408,7 +8412,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Aldaketarik ez" @@ -9203,55 +9207,55 @@ msgstr "MySQL-k emaitza hutsa itzuli du. (i.e. zero errenkada)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Datu-baserik ez" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Datu-baserik ez" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Egitura soilik" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9302,55 +9306,55 @@ msgstr "Edo" msgid "web server upload directory:" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Txertatu" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "eta orduan" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Txertatu errenkada berri batean" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Itzuli" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Erregistro berria gehitu" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Egin atzera orri honetara" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Editatu hurrengo lerroa" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9362,11 +9366,11 @@ msgstr "" msgid "Value" msgstr "balioa" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10251,7 +10255,7 @@ msgstr "Taula konpondu" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10267,34 +10271,34 @@ msgid "Delete the table (DROP)" msgstr "Datu-baserik ez" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Aztertu" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 #, fuzzy msgid "Check" msgstr "Txekiera" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 #, fuzzy msgid "Repair" msgstr "Taula konpondu" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10323,37 +10327,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Erreferentzien integritatea egiaztatu:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Ezin taula berberara mugitu!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Ezinezkoa da taula berberera kopiatzea!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "%s taula hona mugitu da: %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "%s taula hona kopiatua izan da: %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Taularen izena hutsik dago!" @@ -10545,7 +10549,7 @@ msgstr "Datu-basea esportatzeko aukerak" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Taula honen datuak irauli" @@ -10572,14 +10576,14 @@ msgstr "Deskribapena" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Taularen egitura taula honentzat" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10587,7 +10591,7 @@ msgstr "Egitura soilik" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10699,7 +10703,7 @@ msgid "Database:" msgstr "Datu-basea" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10814,7 +10818,7 @@ msgid "Data creation options" msgstr "Eraldaketen hobespenak" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10883,7 +10887,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10934,60 +10938,60 @@ msgstr "lanean" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Iraulitako taulentzako murrizketak" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Taularentzako murrizketak" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Iraulitako taulentzako murrizketak" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Taulen barnean:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Gehitu AUTO_INCREMENT balioa" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Gehitu AUTO_INCREMENT balioa" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Egitura soilik" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11043,33 +11047,33 @@ msgstr "" msgid "Column names: " msgstr "Zutabe izenak" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11077,7 +11081,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -11090,15 +11094,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11108,23 +11112,23 @@ msgstr "Dokumentazioa" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -14176,15 +14180,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14199,17 +14199,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14231,19 +14232,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14272,17 +14273,17 @@ msgstr "%s taula ezabatu egin da" msgid "Variable name was expected." msgstr "Txantiloi-fitxategiaren izena" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Taularen hasieran" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14303,17 +14304,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15024,7 +15025,7 @@ msgstr "Ikusi taularen iraulketa (eskema)" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16137,7 +16138,7 @@ msgid "at beginning of table" msgstr "Taularen hasieran" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -16182,7 +16183,7 @@ msgstr "Erlazioak" msgid "Edit partitioning" msgstr "Inprimatzeko ikuspegia" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16318,12 +16319,12 @@ msgstr "" msgid "Column names" msgstr "Zutabe izenak" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Taula berrizendatu izen honetara: " -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Datu-baserik ez" diff --git a/po/fa.po b/po/fa.po index 7183b69bea..f23c625599 100644 --- a/po/fa.po +++ b/po/fa.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-11-21 11:45+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Persian %2$s" msgstr[0] "%1$s همتا در %2$s" msgstr[1] "%1$s همتا در %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3765,30 +3768,30 @@ msgstr "فیلتر" msgid "Search this table" msgstr "جستجو در پايگاه‌ داده" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "شروع" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "قبلی" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "بعدی" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "انتها" @@ -3869,7 +3872,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3907,7 +3910,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3915,7 +3918,7 @@ msgid "With selected:" msgstr "موارد انتخاب‌ شده :" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4001,15 +4004,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "خطای ناشناخته در آپلود فایل." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "خطا در موقع جابجا کردن فایل آپلود شده." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "File was not an uploaded file." msgid "Cannot read uploaded file." @@ -4079,8 +4082,8 @@ msgid "Keyname" msgstr "نام کلید" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4128,15 +4131,15 @@ msgstr "كليد اصلي حذف گرديد." msgid "Index %s has been dropped." msgstr "فهرست %s حذف گرديد." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "حذف" @@ -4147,7 +4150,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4197,8 +4200,8 @@ msgid "Table" msgstr "جدول" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4206,25 +4209,25 @@ msgstr "جدول" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "جستجو" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "درج" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4232,24 +4235,24 @@ msgid "Privileges" msgstr "امتيازات" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "عمليات" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4260,16 +4263,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "پرس و جو" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4277,18 +4280,18 @@ msgstr "" msgid "Events" msgstr "رویدادها" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "طرّاح" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "اضافه يا حذف ستونها" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4303,20 +4306,20 @@ msgid "User accounts" msgstr "كاربر" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 #, fuzzy msgid "Binary log" msgstr "دودويي" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "تکرار" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 @@ -4324,15 +4327,15 @@ msgstr "تکرار" msgid "Variables" msgstr "متغییر" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "موتور" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4941,18 +4944,18 @@ msgstr "جمع كل" msgid "Max: %s%s" msgstr "حداکثر: %s %s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "اطلاعات ثابت" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4963,38 +4966,38 @@ msgstr "" msgid "MySQL said: " msgstr "پيغام MySQL : " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "شرح دادن SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "رد شدن از توضیحات SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "بدون كد PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "ثبت کوئری" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "ساخت كد PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5002,71 +5005,71 @@ msgid "Edit inline" msgstr "نماي چاپ" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "يكشنبه" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y ساعت %I:%M %p" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s روز ، %s ساعت ، %s دقیقه و %s ثانیه" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "پارامتر یافت نشد:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "پرش به پایگاه داده \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "قابلیت %s به خاطر یک باگ شناخته شده تحت تاثیر قرار گرفته ایست، برای اطلاعات " "بیشتر به %s مراجعه کنید" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "برای انتخاب کلیک کنبد" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "رایانه خود را مشاهده نمایید:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "انتخاب از مسیر آپلود در سرور %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "پوشه‌اي را كه براي انتقال فايل انتخاب كرده‌ايد قابل دسترسي نيست." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "فایلی برای آپلود موجود نیست" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "خالي" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "اجرا" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 #, fuzzy #| msgid "User" msgid "Users" @@ -5208,46 +5211,46 @@ msgstr "افزودن ستون جديد" msgid "Attributes" msgstr "ويژگيها" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to read configuration file!" msgstr "در خواندن فایل تنظیمات ناموفق بود" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" "معمولا به معنی وجود خطا می باشد، لطفا خطاهای نمایش داده شده زیر را چک کنید." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "فایل تنظیمات اولیه را نمی توان بارگیری نمود: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "ایندکس غلط در سرور : %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "نام هاست برای سرور %1$s اشتباه است. لطفا تنظیمات خود را بازبینی نمایید." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "سرور" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "روش احراز هویت در تنظیمات صحیح نمی باشد:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5255,24 +5258,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "شما باید به %s %s یا جدیدتر به روز شوید." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "احتمال وجود exploit" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "کلید عددی یافت شد" @@ -5985,7 +5988,7 @@ msgstr "قراردادن نام ستونها در اولين سطر" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -5993,7 +5996,7 @@ msgstr "ستونهاي درميان‌گرفته با" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6013,14 +6016,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "ستون های از بین رفته به وسیله" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8112,7 +8115,7 @@ msgid "Table %s has been emptied." msgstr "جدول %s خالی شد." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8251,8 +8254,8 @@ msgid "No data to display" msgstr "اطلاعاتی یافت نشد" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8300,57 +8303,57 @@ msgstr[1] "" msgid "No column selected." msgstr "هیچ سطری انتخاب نشده است" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "پايگاه داده %s حذف گرديد." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query" msgid "Query error" msgstr "پرس و جو" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "تغيير" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "فهرست" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "كاملا متن" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -8362,7 +8365,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -9147,55 +9150,55 @@ msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "No databases" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "No databases" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "فقط ساختار" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9244,55 +9247,55 @@ msgstr "يا" msgid "web server upload directory:" msgstr "انتخاب از مسیر آپلود در سرور %s:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "درج" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "و سپس" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "درج به عنوان يك سطر جديد" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "برو به صفحه قبل" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "درج يك سطر جديد ديگر" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "برگرد به این صفحه" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "ویرایش کردن ردیف بعدی" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9304,11 +9307,11 @@ msgstr "" msgid "Value" msgstr "مقدار" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10214,7 +10217,7 @@ msgstr "بازسازی جدول" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10230,32 +10233,32 @@ msgid "Delete the table (DROP)" msgstr "No databases" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "تعمیر" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10284,37 +10287,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "جدول %s به %s انتقال داده‌شد." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "جدول %s به %s كپي شد." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "نام جدول وارد نشده‌است !" @@ -10504,7 +10507,7 @@ msgstr "آمار پايگاههاي داده" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "حذف داده‌هاي جدول" @@ -10530,14 +10533,14 @@ msgstr "توضیحات" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10545,7 +10548,7 @@ msgstr "فقط ساختار" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10653,7 +10656,7 @@ msgid "Database:" msgstr "پايگاه داده" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10767,7 +10770,7 @@ msgid "Data creation options" msgstr "آمار پايگاههاي داده" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10836,7 +10839,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10882,60 +10885,60 @@ msgstr "در حال استفاده" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for dumped tables" msgstr "درجدول های:" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "درجدول های:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "مقدار افزایشی خودکار اضافه شود" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "مقدار افزایشی خودکار اضافه شود" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "فقط ساختار" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10987,33 +10990,33 @@ msgstr "" msgid "Column names: " msgstr "نام ستونها" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11021,7 +11024,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -11034,15 +11037,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11052,23 +11055,23 @@ msgstr "مستندات باز" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -13998,15 +14001,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14021,17 +14020,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14053,19 +14053,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14093,17 +14093,17 @@ msgstr "جدول %s حذف گرديد" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "در ابتداي جدول" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14124,17 +14124,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "سطر حذف گرديد" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14847,7 +14847,7 @@ msgstr "نمايش الگوي جدول" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15942,7 +15942,7 @@ msgid "at beginning of table" msgstr "در ابتداي جدول" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -15987,7 +15987,7 @@ msgstr "موقعیت" msgid "Edit partitioning" msgstr "نماي چاپ" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16120,12 +16120,12 @@ msgstr "" msgid "Column names" msgstr "نام ستونها" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "بازناميدن جدول به" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "No databases" diff --git a/po/fi.po b/po/fi.po index c5de293baa..81aa89123f 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1,13 +1,13 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-02-11 19:47+0000\n" "Last-Translator: Jouni Kähkönen \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" @@ -47,7 +47,7 @@ msgid "Table comments:" msgstr "Taulun kommentit:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -101,7 +101,7 @@ msgstr "Tyyppi" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -163,12 +163,12 @@ msgid "Comments" msgstr "Kommentit" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Perusavain" @@ -201,12 +201,12 @@ msgstr "Ei" #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -251,8 +251,8 @@ msgid "Tables" msgstr "Taulut" #: db_export.php:66 libraries/Menu.php:323 libraries/Menu.php:430 -#: libraries/Util.php:3402 libraries/Util.php:3412 libraries/Util.php:3418 -#: libraries/Util.php:3698 libraries/Util.php:4335 libraries/Util.php:4352 +#: libraries/Util.php:3409 libraries/Util.php:3419 libraries/Util.php:3425 +#: libraries/Util.php:3705 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/central_columns.lib.php:725 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,7 +260,7 @@ msgstr "Taulut" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -468,7 +468,7 @@ msgstr "Lisää geometria" #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -498,7 +498,7 @@ msgstr "Lisää geometria" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Siirry" @@ -526,7 +526,7 @@ msgstr "Tuonti epäonnistui" msgid "Incomplete params" msgstr "Vaillinaiset parametrit" -#: import.php:184 +#: import.php:186 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -535,15 +535,15 @@ msgstr "" "Yritit ehkä lähettää palvelimelle liian suurta tiedostoa. Katso %sohjeista" "%s, kuinka tämän rajoituksen voi poistaa." -#: import.php:360 import.php:665 +#: import.php:362 import.php:667 msgid "Showing bookmark" msgstr "Näytetään kirjanmerkki" -#: import.php:376 import.php:661 +#: import.php:378 import.php:663 msgid "The bookmark has been deleted." msgstr "Kirjanmerkki on poistettu." -#: import.php:474 +#: import.php:476 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -552,12 +552,12 @@ msgstr "" "Ladattua tiedostoa ei voida siirtää, koska palvelimella on open_basedir " "käytössä ilman pääsyä hakemistoon %s väliaikaistiedostoja varten." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:492 import.php:569 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "Tiedostoa ei voi lukea!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:503 import.php:518 import.php:543 import.php:558 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -567,7 +567,7 @@ msgstr "" "kyseiselle muodolle ei joko ole toteutettu, tai se on asetuksin poistettu " "käytöstä." -#: import.php:574 +#: import.php:576 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -577,21 +577,24 @@ msgstr "" "ylitti PHP:n asetusten salliman enimmäiskoon. Katso [doc@faq1-16]FAQ 1.16[/" "doc]." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:628 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "Tuontiin tarvittavaa lisäosaa ei voida tuoda, tarkista asetukset!" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:670 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "Kirjanmerkki %s on nyt luotu." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "Tuonti onnistui, %d kyselyä suoritettu." +#: import.php:680 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "Tuonti onnistui, %d kyselyä suoritettu." +msgstr[1] "Tuonti onnistui, %d kyselyä suoritettu." -#: import.php:705 +#: import.php:711 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -600,7 +603,7 @@ msgstr "" "Skriptin suoritus aikakatkaistiin. Jos haluat suorittaa tuonnin loppuun, " "%slähetä sama tiedosto uudestaan%s, ja tuonti jatkuu." -#: import.php:715 +#: import.php:721 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -614,7 +617,7 @@ msgid "Could not load the progress of the import." msgstr "Tuonnin tilaa ei voitu ladata." #: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: libraries/Util.php:802 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Takaisin" @@ -710,10 +713,11 @@ msgstr "Näytä PHP:n asetustiedot" msgid "Version information:" msgstr "Versiotiedot:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:449 libraries/Util.php:516 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Ohjeet" @@ -974,13 +978,6 @@ msgid "Are you sure you wish to change the collation and convert the data?" msgstr "Oletko varma että haluat vaihtaa kollaatiota ja kääntää datan?" #: js/messages.php:98 -#| 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 " @@ -1008,7 +1005,7 @@ msgid "Save & close" msgstr "Tallenna & sulje" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Palauta" @@ -1065,7 +1062,7 @@ 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:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:132 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 @@ -1080,7 +1077,7 @@ msgstr "Jäljittele kyselyä" msgid "Matched rows:" msgstr "Täsmänneet rivit:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:137 libraries/Util.php:703 msgid "SQL query:" msgstr "SQL-kysely:" @@ -1139,12 +1136,12 @@ msgid "Other" msgstr "Toinen" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:160 libraries/Util.php:1498 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:162 libraries/Util.php:1500 msgid "." msgstr "," @@ -1250,40 +1247,40 @@ msgid "Processes" msgstr "Prosessit" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:202 libraries/Util.php:1442 msgid "B" msgstr "tavua" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:203 libraries/Util.php:1444 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "kt" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:204 libraries/Util.php:1446 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "Mt" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:205 libraries/Util.php:1448 msgid "GiB" msgstr "Gt" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:206 libraries/Util.php:1450 msgid "TiB" msgstr "Tt" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:207 libraries/Util.php:1452 msgid "PiB" msgstr "Pt" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:208 libraries/Util.php:1454 msgid "EiB" msgstr "Et" @@ -1301,7 +1298,7 @@ msgstr "Kysymykset" msgid "Traffic" msgstr "Liikenne" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4333 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Asetukset" @@ -1316,7 +1313,7 @@ msgstr "Lisää sarjaan vähintään yksi muuttuja!" #: js/messages.php:219 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1519,7 +1516,7 @@ msgstr "Analysointi…" msgid "Explain output" msgstr "Selitä SQL-kysely" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4329 #: 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:91 libraries/tracking.lib.php:284 @@ -1620,8 +1617,8 @@ msgstr "" "oletusmäärityksiä…" #: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 -#: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 -#: libraries/Util.php:4357 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:581 libraries/Util.php:4332 libraries/Util.php:4347 +#: libraries/Util.php:4364 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 #: libraries/server_status_monitor.lib.php:313 prefs_manage.php:237 #: setup/frames/menu.inc.php:26 @@ -1681,7 +1678,6 @@ msgid "Formatting SQL…" msgstr "Formatoidaan SQL-kyselyä…" #: js/messages.php:346 -#| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Parametrit puuttuvat!" @@ -1776,7 +1772,7 @@ msgstr "Kopioidaan tietokantoja" msgid "Changing charset" msgstr "Vaihdetaan merkistökoodausta" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:377 libraries/Util.php:3291 msgid "Enable foreign key checks" msgstr "Kytke viiteavaimien tarkistus päälle" @@ -1810,9 +1806,9 @@ msgstr "Tallennettavan funktion määritelmässä tulee olla RETURN-lause!" #: js/messages.php:392 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 -#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 -#: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 -#: libraries/Util.php:4356 libraries/config/messages.inc.php:255 +#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3712 +#: libraries/Util.php:3713 libraries/Util.php:4331 libraries/Util.php:4346 +#: libraries/Util.php:4363 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:168 libraries/rte/rte_list.lib.php:149 #: libraries/server_privileges.lib.php:2513 #: libraries/server_privileges.lib.php:2592 @@ -1862,8 +1858,8 @@ msgstr "Näytä kyselykenttä" #: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 -#: libraries/Util.php:3703 libraries/Util.php:3704 +#: libraries/Index.php:721 libraries/Util.php:732 libraries/Util.php:1242 +#: libraries/Util.php:3710 libraries/Util.php:3711 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 #: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:182 @@ -2051,7 +2047,7 @@ msgid "No dependencies selected!" msgstr "Yhtään riippuvuutta ei ole valittu!" #: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2134,7 +2130,7 @@ msgid "Data point content" msgstr "Tietopisteen sisältö" #: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Älä huomioi" @@ -2375,7 +2371,7 @@ msgid "Select database first" msgstr "Valitse ensin tietokanta" #: js/messages.php:599 libraries/DisplayResults.php:5029 -#: libraries/Util.php:4217 +#: libraries/Util.php:4224 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" @@ -2573,12 +2569,10 @@ msgstr "" "\"yksityisen tilan selaus\"." #: js/messages.php:711 -#| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopioi taulut tietokantaan" #: js/messages.php:712 -#| msgid "Apply index(s)" msgid "Add table prefix" msgstr "Lisää tauluun etuliite" @@ -2656,63 +2650,63 @@ msgid "December" msgstr "Joulukuu" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:773 libraries/Util.php:1664 msgid "Jan" msgstr "Tammi" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:775 libraries/Util.php:1666 msgid "Feb" msgstr "Helmi" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:777 libraries/Util.php:1668 msgid "Mar" msgstr "Maalis" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:779 libraries/Util.php:1670 msgid "Apr" msgstr "Huhti" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:781 libraries/Util.php:1672 msgctxt "Short month name" msgid "May" msgstr "Touko" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:783 libraries/Util.php:1674 msgid "Jun" msgstr "Kesä" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:785 libraries/Util.php:1676 msgid "Jul" msgstr "Heinä" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:787 libraries/Util.php:1678 msgid "Aug" msgstr "Elo" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:789 libraries/Util.php:1680 msgid "Sep" msgstr "Syys" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:791 libraries/Util.php:1682 msgid "Oct" msgstr "Loka" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:793 libraries/Util.php:1684 msgid "Nov" msgstr "Marras" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:795 libraries/Util.php:1686 msgid "Dec" msgstr "Joulu" @@ -2750,32 +2744,32 @@ msgid "Sun" msgstr "Su" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:816 libraries/Util.php:1691 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:818 libraries/Util.php:1693 msgid "Tue" msgstr "Ti" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:820 libraries/Util.php:1695 msgid "Wed" msgstr "Ke" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:822 libraries/Util.php:1697 msgid "Thu" msgstr "To" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:824 libraries/Util.php:1699 msgid "Fri" msgstr "Pe" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:826 libraries/Util.php:1701 msgid "Sat" msgstr "La" @@ -2916,9 +2910,9 @@ msgstr "Ole hyvä ja anna pätevä päivämäärä tai aika" msgid "Please enter a valid HEX input" msgstr "Ole hyvä ja anna pätevä heksadesimaalinen arvo" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:679 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Virhe" @@ -2972,18 +2966,18 @@ msgstr "" "Odottamattomia merkkejä rivillä %1$s. Pitäisi olla sarkain (tab), mutta " "löytyi \"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Olemassa oleva asetustiedosto (%s) ei ole luettavissa." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Väärät pääsyasetukset asetustiedostolla, sen ei kuuluisi olla kaikkien " "kirjoitettavissa!" -#: libraries/Config.php:1519 +#: libraries/Config.php:1528 msgid "Font size" msgstr "Fonttikoko" @@ -3053,7 +3047,7 @@ msgstr "Nykyisen istunnon aikana" msgid "Explain" msgstr "Selitä" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1328 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profilointi" @@ -3087,8 +3081,8 @@ msgid "History" msgstr "Historia" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3181,7 +3175,7 @@ msgstr "Piilota seuranta" msgid "Count:" msgstr "Luku:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:339 libraries/Util.php:1298 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 @@ -3237,7 +3231,6 @@ msgid "Switch to dark theme" msgstr "Vaihda tummaan teemaan" #: libraries/DatabaseInterface.php:1528 -#| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Konfiguroidun lajitteluyhteyden asettaminen epäonnistui!" @@ -3420,9 +3413,9 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s hakutulosta taulussa %2$s" msgstr[1] "%1$s hakutulosta taulussa %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3479,30 +3472,30 @@ msgstr "Suodata rivejä" msgid "Search this table" msgstr "Hae tästä taulusta" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Aloitus" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Edellinen sivu" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Seuraava sivu" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Viimeinen sivu" @@ -3573,7 +3566,7 @@ msgstr "Saattaa olla likimääräinen. Katso [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "SQL-kyselysi on suoritettu onnistuneesti." @@ -3608,7 +3601,7 @@ msgid "Query took %01.4f seconds." msgstr "Kysely kesti %01.4f sekuntia." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3616,7 +3609,7 @@ msgid "With selected:" msgstr "Valitut:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3696,16 +3689,16 @@ msgstr "Laajennus keskeytti tiedoston lähetyksen." msgid "Unknown error in file upload." msgstr "Tuntematon virhe tiedostoa lähetettäessä." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Virhe siirrettäessä ladattua tiedostoa, katso [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Virhe siirrettäessä ladattua tiedostoa." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Ladattua tiedostoa ei voi lukea." @@ -3769,8 +3762,8 @@ msgid "Keyname" msgstr "Avaimen nimi" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3818,15 +3811,15 @@ msgstr "Perusavain on poistettu." msgid "Index %s has been dropped." msgstr "Indeksi %s on poistettu." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Tuhoa" @@ -3839,7 +3832,7 @@ msgstr "" "Indeksit %1$s ja %2$s ovat ehkä samoja, ja niistä jompikumpi kannattanee " "poistaa." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3891,8 +3884,8 @@ msgid "Table" msgstr "Taulu" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3900,25 +3893,25 @@ msgstr "Taulu" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Etsi" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Lisää rivi" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3926,24 +3919,24 @@ msgid "Privileges" msgstr "Käyttöoikeudet" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Toiminnot" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Seuranta" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3954,16 +3947,16 @@ msgstr "Herättimet" msgid "Database seems to be empty!" msgstr "Tietokanta on tyhjä!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Haku" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutiinit" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3971,16 +3964,16 @@ msgstr "Rutiinit" msgid "Events" msgstr "Tapahtumat" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Suunnittelija" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Keskisarakkeet" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3993,34 +3986,34 @@ msgid "User accounts" msgstr "Käyttäjätilit" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binääriloki" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Kahdennus" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Muuttujat" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Merkistöt" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Moottorit" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Liitännäiset" @@ -4645,16 +4638,16 @@ msgstr "Geometrinen" msgid "Max: %s%s" msgstr "Enimmäiskoko: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Staattinen analyysi:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "%d virhettä havaittu analyysin aikana." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4665,100 +4658,98 @@ msgstr "%d virhettä havaittu analyysin aikana." msgid "MySQL said: " msgstr "MySQL ilmoittaa: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Selitä SQL-kysely" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Älä selitä SQL-kyselyä" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "Analyysin selostus %s" -#: libraries/Util.php:1250 -#| msgid "Without PHP Code" +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "Ilman PHP-koodia" -#: libraries/Util.php:1262 -#| msgid "Submit Query" +#: libraries/Util.php:1268 msgid "Submit query" msgstr "Suorita kysely" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Luo PHP-koodi" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Muokkaa inline-koodia" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Su" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y klo %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s päivää, %s tuntia, %s minuuttia ja %s sekuntia" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Puuttuva parametri:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Siirry tietokantaan \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Vaihda painamalla" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Selaa tietokonettasi:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Valitse verkkopalvelimen lähetyskansiosta %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Tiedostojen lähetykseen valittua hakemistoa ei voida käyttää." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Palvelimelle ladattavia tiedostoja ei ole!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Tyhjennä" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Suorita" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Käyttäjät" @@ -4887,11 +4878,11 @@ msgstr "Lisää uusi sarake" msgid "Attributes" msgstr "Attribuutit" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Asetustiedoston lukeminen epäonnistui!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4899,31 +4890,31 @@ msgstr "" "Tämä johtuu tavallisesti siinä olevasta syntaksivirheestä, tarkista kaikki " "alla näkyvät virheet." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Oletusasetuksia ei voitu ladata kohteesta: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Virheellinen palvelimen indeksi: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Palvelimella %1$s virheellinen nimi. Tarkista asetukset." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Palvelin %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Asetuksissa on virheellinen todennustapa:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4934,24 +4925,24 @@ msgstr "" "konfiguraation asetukset [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em]. " "phpMyAdmin käyttää tällä hetkellä tietokantapalvelimen oletusaikavyöhykettä." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Sinun tulisi päivittää versioon %s %s tai sitä uudempaan." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Virhe: Tunnus ei täsmää" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS ylikirjoitus yritys" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "mahdollinen turva-aukko" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "numeerinen avain tunnistettu" @@ -5608,7 +5599,6 @@ msgid "Whether the table structure actions should be hidden." msgstr "Mikäli taulun rakenteiden toiminnot pitäisi olla piilossa." #: libraries/config/messages.inc.php:117 -#| msgid "Table comments" msgid "Show column comments" msgstr "Näytä sarakekommentit" @@ -5691,13 +5681,13 @@ msgstr "Aseta sarakkeiden nimet ensimmäiselle riville" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Sarakkeet mukana" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Sarakkeet unohtui" @@ -5715,12 +5705,12 @@ msgstr "Poista CRLF-merkit sarakkeista" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Sarakkeet päätetään" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Rivit päätetään" @@ -7380,9 +7370,6 @@ msgid "User groups table" msgstr "Käyttäjäryhmät taulukko" #: libraries/config/messages.inc.php:825 -#| msgid "" -#| "Leave blank to disable the feature to hide and show navigation items, " -#| "suggested: [kbd]pma__navigationhiding[/kbd]" msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7411,7 +7398,6 @@ msgid "Verbose name of this server" msgstr "Tämän palvelimen yksityiskohtainen nimi" #: libraries/config/messages.inc.php:837 -#| msgid "Whether a user should be displayed a \"show all (rows)\" button" msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "Näytetäänkö käyttäjälle \"Näytä kaikki (rivit)\" -painike." @@ -7420,11 +7406,6 @@ msgid "Allow to display all the rows" msgstr "Salli kaikkien rivien näyttäminen" #: libraries/config/messages.inc.php:841 -#| msgid "" -#| "Please note that enabling this has no effect with [kbd]config[/kbd] " -#| "authentication mode because the password is hard coded in the " -#| "configuration file; this does not limit the ability to execute the same " -#| "command directly" msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7447,7 +7428,6 @@ msgid "Show or hide a column displaying the comments for all tables." msgstr "Näytä tai piilota kommentti -sarake kaikista tauluista." #: libraries/config/messages.inc.php:850 -#| msgid "Table comments" msgid "Show table comments" msgstr "Näytä taulun kommentit" @@ -7457,7 +7437,6 @@ msgstr "" "Näytä tai piilota sarake, joka näyttää kaikkien taulujen luontiajankohdan." #: libraries/config/messages.inc.php:854 -#| msgid "Show Creation timestamp" msgid "Show creation timestamp" msgstr "Näytä luontiajankohta" @@ -7469,7 +7448,6 @@ msgstr "" "ajankohdan." #: libraries/config/messages.inc.php:858 -#| msgid "Show Last check timestamp" msgid "Show last update timestamp" msgstr "Näytä viime päivityksen ajankohta" @@ -7479,7 +7457,6 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:862 -#| msgid "Show Last check timestamp" msgid "Show last check timestamp" msgstr "Näytä viime tarkistuksen ajankohta" @@ -7494,7 +7471,6 @@ msgid "Show field types" msgstr "Näytä kenttätyypit" #: libraries/config/messages.inc.php:869 -#| msgid "Display the function fields in edit/insert mode" msgid "Display the function fields in edit/insert mode." msgstr "Näytä funktiokentät muokkaus- ja lisäystilassa." @@ -7503,7 +7479,6 @@ msgid "Show function fields" msgstr "Näytä funktiokentät" #: libraries/config/messages.inc.php:872 -#| msgid "Where to show the table row links" msgid "Whether to show hint or not." msgstr "Näytetäänkö vihjeet." @@ -7512,9 +7487,6 @@ msgid "Show hint" msgstr "Näytä vihje" #: libraries/config/messages.inc.php:875 -#| msgid "" -#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " -#| "output" msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7531,8 +7503,6 @@ msgid "Show detailed MySQL server information" msgstr "Näytä MySQL-palvelimen tarkat tiedot" #: libraries/config/messages.inc.php:881 -#| msgid "" -#| "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "Määrittelee pitääkö phpMyAdminin luomat SQL-kyselyt näyttää." @@ -7551,7 +7521,6 @@ msgid "Retain query box" msgstr "Säilytä SQL-kyselylaatikko" #: libraries/config/messages.inc.php:889 -#| msgid "Allow to display database and table statistics (eg. space usage)" msgid "Allow to display database and table statistics (eg. space usage)." msgstr "Salli tietokannan ja taulun tilastojen (eli tilankäytön) näyttäminen." @@ -7560,8 +7529,6 @@ msgid "Show statistics" msgstr "Näytä tilastot" #: libraries/config/messages.inc.php:893 -#| 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 "" @@ -7879,7 +7846,7 @@ msgid "Table %s has been emptied." msgstr "Taulu %s on tyhjennetty." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8019,8 +7986,8 @@ msgid "No data to display" msgstr "Tietoa ei löydy" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8068,57 +8035,57 @@ msgstr[1] "" msgid "No column selected." msgstr "Ei valittua saraketta." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Ignore errors" msgid "Query error" msgstr "Älä välitä virheistä" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Muokkaa" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeksi" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Koko teksti" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8130,7 +8097,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ei muutoksia" @@ -8956,18 +8923,18 @@ msgstr "MySQL palautti tyhjän tulosjoukon (siis nolla riviä)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 #, 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:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -8976,42 +8943,42 @@ msgid "" msgstr "" "muuttaa mitä tahansa sen asetuksia painamalla vastaavaa \"Valinnat\"-linkkiä" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 #, 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:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Siirry tietokantaan: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Muokkaa asetuksia: %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Siirry taulukkoon: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Rakenne %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Siirry näkymään: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9061,50 +9028,50 @@ msgstr "Tai" msgid "web server upload directory:" msgstr "palvelimen lähetyshakemisto" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Muokkaa/lisää" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, 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:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "ja sen jälkeen" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Lisää uutena rivinä" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 #, fuzzy msgid "Show insert query" msgstr "Näytetään SQL-kysely" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Takaisin" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Lisää uusi rivi" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Palaa tälle sivulle" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Muokkaa seuraavaa riviä" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9114,7 +9081,7 @@ msgstr "" "Sarkaimella voi siirtyä arvosta seuraavaan, Ctrl- ja nuolinäppäimillä pystyy " "siirtymään minne suuntaan tahansa" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9126,11 +9093,11 @@ msgstr "" msgid "Value" msgstr "Arvo" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Näytetään SQL-kysely" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisätyn rivin tunnus: %1$d" @@ -10020,7 +9987,7 @@ msgstr "Korjaa taulu" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" @@ -10037,32 +10004,32 @@ msgid "Delete the table (DROP)" msgstr "Siirry tietokantaan" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analysoi" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Tarkasta" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimoi" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Rakenna uudestaan" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Korjaa" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10090,37 +10057,37 @@ msgstr "Poista ositus" msgid "Check referential integrity:" msgstr "Tarkista viitteiden eheys:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Taulua ei voi siirtää itseensä!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Taulua ei voi kopioida itseensä!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Taulu %s on siirretty %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Taulu %s on kopioitu uuteen tauluun %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Taulun nimi puuttuu!" @@ -10310,7 +10277,7 @@ msgstr "Tiedon vedostusasetukset" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Vedos taulusta" @@ -10334,21 +10301,21 @@ msgstr "Määritys" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Rakenne taululle" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Näkymän rakenne" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Näkymän vararakenne" @@ -10454,7 +10421,7 @@ msgid "Database:" msgstr "Tietokanta" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10561,7 +10528,7 @@ msgid "Data creation options" msgstr "Objektin luontivaihtoehdot" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10630,7 +10597,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10676,61 +10643,61 @@ msgstr "käytössä" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Rajoitteet vedostauluille" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Rajoitteet taululle" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Rajoitteet vedostauluille" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Tauluissa:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Lisää AUTO_INCREMENT-arvo" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYYPIT TAULULLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELAATIOT TAULULLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -10786,34 +10753,34 @@ msgstr "" msgid "Column names: " msgstr "Sarakkeiden nimet" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Virheellinen CSV-tuonnin parametri: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Virheellinen muoto CSV-syötteessä rivillä %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Virheellinen kenttien määrä CSV-syötteessä rivillä %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Tämä lisäosa ei tue pakattujen tuontien käyttöä!" @@ -10821,7 +10788,7 @@ msgstr "Tämä lisäosa ei tue pakattujen tuontien käyttöä!" msgid "MediaWiki Table" msgstr "MediaWiki-taulu" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." @@ -10839,9 +10806,9 @@ msgstr "Tuo prosenttiyksiköt sopivin desimaaliluvuin (12.00% muotoon .12)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Tuo valuutta-arvot ($5.00 muotoon 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10849,7 +10816,7 @@ msgstr "" "Määritetty XML-tiedosto on joko epämuotoinen tai vaillinainen. Korjaa " "ongelma ja yritä uudestaan." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -10859,23 +10826,23 @@ msgstr "Open Document -laskentataulukko" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -14222,15 +14189,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14245,17 +14208,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14277,23 +14241,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Avoinna olevien taulujen määrä." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Avoinna olevien taulujen määrä." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14326,17 +14290,17 @@ msgstr "Taulu %1$s on luotu." msgid "Variable name was expected." msgstr "Taulunimen pohja" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Taulun alkuun" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14359,19 +14323,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15125,7 +15089,7 @@ msgstr "Tee vedos taulusta" msgid "Invalid table name" msgstr "Virheellinen taulun nimi" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16242,7 +16206,7 @@ msgid "at beginning of table" msgstr "Taulun alkuun" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16291,7 +16255,7 @@ msgstr "ositettu" msgid "Edit partitioning" msgstr "Poista ositus" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16427,12 +16391,12 @@ msgstr "VIEW-arvon nimi" msgid "Column names" msgstr "Sarakkeiden nimet" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Nimeä taulu uudelleen" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Go to database" msgid "Delete the view (DROP)" diff --git a/po/fr.po b/po/fr.po index 13a79a6c84..d902956797 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: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-02-08 13:33+0000\n" "Last-Translator: Marc-Antoine Thevenet \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" @@ -48,7 +48,7 @@ msgid "Table comments:" msgstr "Commentaires sur la table : " #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -102,7 +102,7 @@ msgstr "Type" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -164,12 +164,12 @@ msgid "Comments" msgstr "Commentaires" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Primaire" @@ -202,12 +202,12 @@ msgstr "Non" #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -252,8 +252,8 @@ msgid "Tables" msgstr "Tables" #: db_export.php:66 libraries/Menu.php:323 libraries/Menu.php:430 -#: libraries/Util.php:3402 libraries/Util.php:3412 libraries/Util.php:3418 -#: libraries/Util.php:3698 libraries/Util.php:4335 libraries/Util.php:4352 +#: libraries/Util.php:3409 libraries/Util.php:3419 libraries/Util.php:3425 +#: libraries/Util.php:3705 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/central_columns.lib.php:725 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 @@ -261,7 +261,7 @@ msgstr "Tables" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -473,7 +473,7 @@ msgstr "Ajouter géométrie" #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -503,7 +503,7 @@ msgstr "Ajouter géométrie" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Exécuter" @@ -531,7 +531,7 @@ msgstr "Échec" msgid "Incomplete params" msgstr "Paramètres incomplets" -#: import.php:184 +#: import.php:186 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -541,15 +541,15 @@ msgstr "" "Veuillez vous référer à la %sdocumentation%s pour trouver le moyen de " "contourner cette limite." -#: import.php:360 import.php:665 +#: import.php:362 import.php:667 msgid "Showing bookmark" msgstr "Affichage du signet" -#: import.php:376 import.php:661 +#: import.php:378 import.php:663 msgid "The bookmark has been deleted." msgstr "Le signet a été effacé." -#: import.php:474 +#: import.php:476 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -559,12 +559,12 @@ msgstr "" "open_basedir activée mais n'a pas accès au répertoire %s (pour les fichiers " "temporaires)." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:492 import.php:569 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "Le fichier n'a pu être lu !" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:503 import.php:518 import.php:543 import.php:558 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -573,7 +573,7 @@ msgstr "" "Vous avez tenté d'importer un fichier dont le mode de compression (%s) n'est " "pas supporté par votre configuration PHP ou est désactivé dans celle-ci." -#: import.php:574 +#: import.php:576 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -583,23 +583,26 @@ msgstr "" "n'a été fourni, ou encore la taille du fichier a dépassé la limite permise " "par votre configuration de PHP. Voir [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:628 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "" "Chargement impossible des greffons d'importation, veuillez vérifier votre " "installation !" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:670 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "Signet %s créé." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "L'importation s'est terminée avec succès, %d requêtes exécutées." +#: import.php:680 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "L'importation s'est terminée avec succès, %d requêtes exécutées." +msgstr[1] "L'importation s'est terminée avec succès, %d requêtes exécutées." -#: import.php:705 +#: import.php:711 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -608,7 +611,7 @@ msgstr "" "La limite de temps a été atteinte; si vous voulez terminer l'importation, " "%ssoumettez à nouveau%s le même fichier et l'importation continuera." -#: import.php:715 +#: import.php:721 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -622,7 +625,7 @@ msgid "Could not load the progress of the import." msgstr "Impossible de charger l'état d'avancement de l'importation." #: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: libraries/Util.php:802 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Retour" @@ -718,10 +721,11 @@ msgstr "Afficher les informations relatives à PHP" msgid "Version information:" msgstr "Version : " -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:449 libraries/Util.php:516 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Documentation" @@ -1018,7 +1022,7 @@ msgid "Save & close" msgstr "Sauvegarder et fermer" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Réinitialiser" @@ -1075,7 +1079,7 @@ 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:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:132 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 @@ -1090,7 +1094,7 @@ msgstr "Simuler la requête" msgid "Matched rows:" msgstr "Lignes correspondantes :" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:137 libraries/Util.php:703 msgid "SQL query:" msgstr "Requête SQL : " @@ -1149,12 +1153,12 @@ msgid "Other" msgstr "Autres" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:160 libraries/Util.php:1498 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:162 libraries/Util.php:1500 msgid "." msgstr "," @@ -1260,40 +1264,40 @@ msgid "Processes" msgstr "Processus" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:202 libraries/Util.php:1442 msgid "B" msgstr "o" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:203 libraries/Util.php:1444 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "Kio" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:204 libraries/Util.php:1446 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "Mio" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:205 libraries/Util.php:1448 msgid "GiB" msgstr "Gio" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:206 libraries/Util.php:1450 msgid "TiB" msgstr "Tio" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:207 libraries/Util.php:1452 msgid "PiB" msgstr "Pio" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:208 libraries/Util.php:1454 msgid "EiB" msgstr "Eio" @@ -1311,7 +1315,7 @@ msgstr "Questions" msgid "Traffic" msgstr "Trafic" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4333 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Paramètres" @@ -1326,7 +1330,7 @@ msgstr "Veuillez ajouter au moins une variable à la série !" #: js/messages.php:219 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1532,7 +1536,7 @@ msgstr "Analyse en cours…" msgid "Explain output" msgstr "Expliquer les résultats" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4329 #: 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:91 libraries/tracking.lib.php:284 @@ -1632,8 +1636,8 @@ msgstr "" "Réinitialisation à la configuration par défaut…" #: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 -#: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 -#: libraries/Util.php:4357 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:581 libraries/Util.php:4332 libraries/Util.php:4347 +#: libraries/Util.php:4364 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 #: libraries/server_status_monitor.lib.php:313 prefs_manage.php:237 #: setup/frames/menu.inc.php:26 @@ -1787,7 +1791,7 @@ msgstr "Copie de la base de données" msgid "Changing charset" msgstr "Changement du jeu de caractères" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:377 libraries/Util.php:3291 msgid "Enable foreign key checks" msgstr "Activer la vérification des clés étrangères" @@ -1821,9 +1825,9 @@ msgstr "La définition d'une fonction doit comporter un énoncé RETURN !" #: js/messages.php:392 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 -#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 -#: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 -#: libraries/Util.php:4356 libraries/config/messages.inc.php:255 +#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3712 +#: libraries/Util.php:3713 libraries/Util.php:4331 libraries/Util.php:4346 +#: libraries/Util.php:4363 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:168 libraries/rte/rte_list.lib.php:149 #: libraries/server_privileges.lib.php:2513 #: libraries/server_privileges.lib.php:2592 @@ -1873,8 +1877,8 @@ msgstr "Montrer zone SQL" #: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 -#: libraries/Util.php:3703 libraries/Util.php:3704 +#: libraries/Index.php:721 libraries/Util.php:732 libraries/Util.php:1242 +#: libraries/Util.php:3710 libraries/Util.php:3711 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 #: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:182 @@ -2062,7 +2066,7 @@ msgid "No dependencies selected!" msgstr "Aucune dépendance sélectionnée !" #: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2148,7 +2152,7 @@ msgid "Data point content" msgstr "Données reliées à ce point" #: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignorer" @@ -2389,7 +2393,7 @@ msgid "Select database first" msgstr "Choisissez d'abord une base de données" #: js/messages.php:599 libraries/DisplayResults.php:5029 -#: libraries/Util.php:4217 +#: libraries/Util.php:4224 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" @@ -2673,63 +2677,63 @@ msgid "December" msgstr "Décembre" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:773 libraries/Util.php:1664 msgid "Jan" msgstr "Janvier" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:775 libraries/Util.php:1666 msgid "Feb" msgstr "Février" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:777 libraries/Util.php:1668 msgid "Mar" msgstr "Mars" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:779 libraries/Util.php:1670 msgid "Apr" msgstr "Avril" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:781 libraries/Util.php:1672 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:783 libraries/Util.php:1674 msgid "Jun" msgstr "Juin" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:785 libraries/Util.php:1676 msgid "Jul" msgstr "Juillet" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:787 libraries/Util.php:1678 msgid "Aug" msgstr "Août" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:789 libraries/Util.php:1680 msgid "Sep" msgstr "Septembre" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:791 libraries/Util.php:1682 msgid "Oct" msgstr "Octobre" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:793 libraries/Util.php:1684 msgid "Nov" msgstr "Novembre" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:795 libraries/Util.php:1686 msgid "Dec" msgstr "Décembre" @@ -2767,32 +2771,32 @@ msgid "Sun" msgstr "Dim" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:816 libraries/Util.php:1691 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:818 libraries/Util.php:1693 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:820 libraries/Util.php:1695 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:822 libraries/Util.php:1697 msgid "Thu" msgstr "Jeu" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:824 libraries/Util.php:1699 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:826 libraries/Util.php:1701 msgid "Sat" msgstr "Sam" @@ -2933,9 +2937,9 @@ msgstr "Veuillez saisir une date ou une heure valide" msgid "Please enter a valid HEX input" msgstr "Veuillez saisir une valeur hexadécimale valide" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:679 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Erreur" @@ -2989,18 +2993,18 @@ msgstr "" "Caractère imprévu à la ligne %1$s. Une tabulation était attendue, mais \"%2$s" "\" a été trouvé." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Le fichier de configuration (%s) est illisible." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permissions sur le fichier de configuration incorrectes, il ne doit pas être " "en écriture pour tout le monde !" -#: libraries/Config.php:1519 +#: libraries/Config.php:1528 msgid "Font size" msgstr "Taille du texte" @@ -3070,7 +3074,7 @@ msgstr "Durant la session en cours" msgid "Explain" msgstr "Expliquer" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1328 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profilage" @@ -3104,8 +3108,8 @@ msgid "History" msgstr "Historique" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3198,7 +3202,7 @@ msgstr "Cacher l'itinéraire d'appel" msgid "Count:" msgstr "Nombre :" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:339 libraries/Util.php:1298 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 @@ -3439,9 +3443,9 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s correspondance dans %2$s" msgstr[1] "%1$s correspondances dans %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3498,30 +3502,30 @@ msgstr "Filtrer les lignes" msgid "Search this table" msgstr "Chercher dans cette table" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Début" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Précédent" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Suivant" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Fin" @@ -3592,7 +3596,7 @@ msgstr "Peut être approximatif. Voir [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Votre requête SQL a été exécutée avec succès." @@ -3627,7 +3631,7 @@ msgid "Query took %01.4f seconds." msgstr "Traitement en %01.4f secondes." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3635,7 +3639,7 @@ msgid "With selected:" msgstr "Pour la sélection : " #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3716,17 +3720,17 @@ msgstr "Téléchargement arrêté par l'extension." msgid "Unknown error in file upload." msgstr "Erreur inconnue durant le téléchargement." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Erreur lors du déplacement du fichier téléchargé, voir [doc@faq1-11]FAQ " "1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Erreur lors du déplacement du fichier téléversé." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Impossible de lire le fichier téléversé." @@ -3790,8 +3794,8 @@ msgid "Keyname" msgstr "Nom de l'index" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3839,15 +3843,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Supprimer" @@ -3860,7 +3864,7 @@ msgstr "" "Les index %1$s et %2$s semblent identiques et l'un d'eux pourrait être " "supprimé." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3912,8 +3916,8 @@ msgid "Table" msgstr "Table" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3921,25 +3925,25 @@ msgstr "Table" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Rechercher" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Insérer" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3947,24 +3951,24 @@ msgid "Privileges" msgstr "Privilèges" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Opérations" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Suivi" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3975,16 +3979,16 @@ msgstr "Déclencheurs" msgid "Database seems to be empty!" msgstr "La base de données semble vide !" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Requête" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Procédures stockées" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3992,16 +3996,16 @@ msgstr "Procédures stockées" msgid "Events" msgstr "Événements" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Concepteur" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Colonnes centrales" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4014,34 +4018,34 @@ msgid "User accounts" msgstr "Comptes d'utilisateurs" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Log binaire" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Réplication" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variables" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Jeux de caractères" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Moteurs" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Greffons" @@ -4681,16 +4685,16 @@ msgstr "Spatial" msgid "Max: %s%s" msgstr "Taille maximum: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Analyse statique :" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "%d erreurs trouvées lors de l'analyse." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4701,99 +4705,99 @@ msgstr "%d erreurs trouvées lors de l'analyse." msgid "MySQL said: " msgstr "MySQL a répondu: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Expliquer SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Ne pas expliquer SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "Analyser les explications au %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "Sans source PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "Exécuter la requête" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Créer code source PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Éditer en ligne" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Dim" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%A %d %B %Y à %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s jours, %s heures, %s minutes et %s secondes" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Paramètre manquant : " -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Aller à la base de données \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La fonctionnalité %s est affectée par une anomalie connue, voir %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Cliquer pour basculer" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Parcourir : " -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, 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:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Le répertoire de transfert est inaccessible." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Aucun fichier n'est disponible pour le transfert !" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Vider" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Exécuter" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Utilisateurs" @@ -4923,11 +4927,11 @@ msgstr "Ajouter une colonne" msgid "Attributes" msgstr "Attributs" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Impossible de lire le fichier de configuration !" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4935,34 +4939,34 @@ msgstr "" "Ceci indique habituellement qu'il y a une erreur de syntaxe, veuillez " "vérifier si une erreur s'affiche plus bas." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Chargement de la configuration par défaut impossible depuis %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Indice de serveur invalide: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nom d'hôte invalide pour le serveur %1$s. Veuillez vérifier votre " "configuration." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Serveur %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" "Le fichier de configuration contient un type d'authentification invalide : " -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4974,24 +4978,24 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin utilise actuellement le fuseau horaire " "par défaut du serveur de base de données." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format 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:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Erreur: disparité du jeton" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Tentative d'écrasement de GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "vulnérabilité possible" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "Clé numérique détectée" @@ -5733,13 +5737,13 @@ msgstr "Afficher les noms de colonnes en première ligne" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Colonnes entourées par" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Caractère d'échappement" @@ -5757,12 +5761,12 @@ msgstr "Enlève les caractères de fin de ligne à l'intérieur des colonnes" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Colonnes terminées par" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Lignes terminées par" @@ -7930,7 +7934,7 @@ msgid "Table %s has been emptied." msgstr "La table %s a été vidée." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "La vue %s a été supprimée." @@ -8064,8 +8068,8 @@ msgid "No data to display" msgstr "Rien à afficher" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8103,53 +8107,53 @@ msgstr[1] "Les identifiants '%s' sont des mots-clés MySQL réservés." msgid "No column selected." msgstr "Aucune colonne n'a été sélectionnée." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Les colonnes ont été déplacées avec succès." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Erreur de requête" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Modifier" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Index" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spatial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Texte entier" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Valeurs distinctes" @@ -8159,7 +8163,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Il manque l'extension %s. Veuillez vérifier votre configuration PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Pas de modifications" @@ -8966,58 +8970,58 @@ msgstr "MySQL a retourné un résultat vide (aucune ligne)." msgid "[ROLLBACK occurred.]" msgstr "[Un ROLLBACK a eu lieu]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Modifier sa structure via le lien «Structure»." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Aller à la base de données : %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Paramètres de modification pour %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Aller à la table : %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Structure de %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Aller à la vue : %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9067,55 +9071,55 @@ msgstr "Ou" msgid "web server upload directory:" msgstr "répertoire de transfert du serveur web : " -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Modifier/Insérer" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuer l'insertion avec %s lignes" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "et ensuite" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Sauvegarder une nouvelle ligne" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Sauvegarder une nouvelle ligne en ignorant les erreurs" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Afficher l'énoncé d'insertion" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Retourner à la page précédente" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Insérer une nouvelle ligne" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Demeurer sur cette page" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Modifier la ligne suivante" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9127,11 +9131,11 @@ msgstr "" msgid "Value" msgstr "Valeur" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Affichage de la requête SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Identifiant de la ligne insérée : %1$d" @@ -10010,7 +10014,7 @@ msgstr "Réparer la table" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Supprimer les données ou la table" @@ -10023,32 +10027,32 @@ msgid "Delete the table (DROP)" msgstr "Supprimer la table (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analyser" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Vérifier" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimiser" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Reconstruire" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Réparer" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Tronquer" @@ -10074,35 +10078,35 @@ msgstr "Supprimer le partitionnement" msgid "Check referential integrity:" msgstr "Vérifier l'intégrité référentielle : " -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "On ne peut déplacer la table sur elle-même !" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "On ne peut copier la table sur elle-même !" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, 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:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "La table %s a été copiée vers %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Le nom de la table est vide !" @@ -10281,7 +10285,7 @@ msgstr "Options d'exportation" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Contenu de la table" @@ -10305,21 +10309,21 @@ msgstr "Définition" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Structure de la table" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Structure de la vue" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Doublure de structure pour la vue" @@ -10409,7 +10413,7 @@ msgid "Database:" msgstr "Base de données : " #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Données : " @@ -10511,7 +10515,7 @@ msgid "Data creation options" msgstr "Options de création de données" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Vider la table avant d'insérer" @@ -10596,7 +10600,7 @@ msgstr "Il semble que votre base de données utilise des procédures;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 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 " @@ -10640,52 +10644,52 @@ msgstr "utilisé" msgid "It appears your database uses views;" msgstr "Il semble que votre base de données utilise des vues;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Contraintes pour les tables exportées" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Contraintes pour la table" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Index pour les tables exportées" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Index pour la table" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT pour les tables exportées" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT pour la table" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "TYPES MIME POUR LA TABLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS POUR LA TABLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Il semble que votre table utilise des déclencheurs;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "(Voir ci-dessous la vue réelle)" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Erreur de lecture des données : " @@ -10741,15 +10745,15 @@ msgstr "" msgid "Column names: " msgstr "Nom des colonnes : " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Paramètres invalides pour l'importation CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10759,18 +10763,18 @@ msgstr "" "orthographiés correctement, séparés par des virgules et non entourés de " "guillemets." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Format invalide pour les données CSV à la ligne %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Nombre de colonnes invalide dans les données CSV à la ligne %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Ce greffon ne supporte pas les importations en format comprimé !" @@ -10778,7 +10782,7 @@ msgstr "Ce greffon ne supporte pas les importations en format comprimé !" msgid "MediaWiki Table" msgstr "Tableau MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Format mediawiki invalide à la ligne :
%s." @@ -10792,9 +10796,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importer les valeurs de monnaie ($5.00 devient 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10802,7 +10806,7 @@ msgstr "" "Le fichier XML spécifié était mal formé ou incomplet. Veuillez le corriger " "et essayer à nouveau." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "La feuille de calcul OpenDocument n'a pas pu être parcourue !" @@ -10810,12 +10814,12 @@ msgstr "La feuille de calcul OpenDocument n'a pas pu être parcourue !" msgid "ESRI Shape File" msgstr "Fichier de formes ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Erreur lors de l'importation du fichier de formes ESRI :«%s»." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10823,12 +10827,12 @@ msgstr "" "Vous avez tenté d'importer un fichier invalide ou ce fichier contient des " "données invalides !" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "Les données spatiales MySQL ne supportent pas le type ESRI «%s»." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Le fichier importé ne contient aucune donnée !" @@ -13877,15 +13881,11 @@ msgstr "%1$d valeurs étaient attendues, mais %2$d ont été trouvées." msgid "An opening bracket followed by a set of values was expected." msgstr "Une parenthèse gauche suivie d'un ensemble de valeurs était attendus." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "Une parenthèse gauche était attendue." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "Une virgule ou une parenthèse droite était attendus" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Une virgule ou une parenthèse droite était attendus." @@ -13898,17 +13898,18 @@ 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:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Un alias a été constaté précédemment." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Point inattendu." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Un alias était attendu." @@ -13926,19 +13927,19 @@ msgstr "Un décalage était prévu." msgid "This option conflicts with \"%1$s\"." msgstr "Cette option entre en conflit avec « %1$s »." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "L'ancien nom de la table était attendu." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Le mot clé « TO » était attendu." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Le nouveau nom de la table était attendu." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Une opération de renommage était attendue." @@ -13964,15 +13965,15 @@ 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:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Début d'énoncé inattendu." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Type d'énoncé non reconnu." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Aucune transaction n'a été précédemment démarrée." @@ -13995,15 +13996,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Mot clé non reconnu." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Le nom de l'entité était attendu." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Le mot clé « RETURNS » était attendu." @@ -14699,7 +14700,7 @@ msgstr "Afficher le schéma de la table" msgid "Invalid table name" msgstr "Nom de table invalide" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Ligne : %1$s, Colonne : %2$s, Erreur : %3$s" @@ -15620,7 +15621,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:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Partitions" @@ -15653,7 +15654,7 @@ msgstr "Partitionner la table :" msgid "Edit partitioning" msgstr "Modifier le partitionnement" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Modifier la vue" @@ -15768,11 +15769,11 @@ msgstr "Nom de la vue" msgid "Column names" msgstr "Nom des colonnes" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Changer le nom de la vue pour" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Supprimer la vue (DROP)" @@ -17059,6 +17060,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Le paramètre concurrent_insert a une valeur de 0" +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Une virgule ou une parenthèse droite était attendus" + # OK #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " diff --git a/po/fy.po b/po/fy.po index ffb60288b2..c7a119f166 100644 --- a/po/fy.po +++ b/po/fy.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-12-24 23:02+0000\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: Frisian %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3380,30 +3383,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Begjin" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Folgjende" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "" @@ -3476,7 +3479,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3509,7 +3512,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3517,7 +3520,7 @@ msgid "With selected:" msgstr "" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3595,15 +3598,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3667,8 +3670,8 @@ msgid "Keyname" msgstr "Kaainamme" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3716,15 +3719,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Fuortsmite" @@ -3735,7 +3738,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3785,8 +3788,8 @@ msgid "Table" msgstr "Tabel" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3794,25 +3797,25 @@ msgstr "Tabel" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Sykje" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Ynfoegje" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3820,24 +3823,24 @@ msgid "Privileges" msgstr "Rjochten" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Hannelingen" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Trasearje" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3848,16 +3851,16 @@ msgstr "Triggers" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Query" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Routines" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3865,16 +3868,16 @@ msgstr "Routines" msgid "Events" msgstr "Barrens" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Untwerper" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3889,34 +3892,34 @@ msgid "User accounts" msgstr "Brûkersgroepen" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikaasje" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Fariabelen" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Karaktersets" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4482,16 +4485,16 @@ msgstr "Romtlik" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4502,34 +4505,34 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit" msgid "Submit query" msgstr "Ferstjoere" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit routine" msgctxt "Inline edit query" @@ -4537,67 +4540,67 @@ msgid "Edit inline" msgstr "Routine bewurkje" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "si" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dagen, %s oeren, %s minuten en %s sekonden" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Leegje" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Brûkers" @@ -4725,41 +4728,41 @@ msgstr "Nije kolom tafoegje" msgid "Attributes" msgstr "Attributen" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4767,24 +4770,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5455,13 +5458,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5479,12 +5482,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -7445,7 +7448,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "" @@ -7577,8 +7580,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7618,52 +7621,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Queryflater" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Feroarje" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Yndeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Romtlik" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Folsleine tekst" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Underskiedbere wearden" @@ -7673,7 +7676,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8406,54 +8409,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struktuer fan %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8499,53 +8502,53 @@ msgstr "Of" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "en dan" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Werom" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8557,11 +8560,11 @@ msgstr "" msgid "Value" msgstr "Wearde" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9391,7 +9394,7 @@ msgstr "Reparearje tabel" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9404,32 +9407,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analysearje" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Kontrolearje" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimalisearje" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Reparearje" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9457,35 +9460,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9654,7 +9657,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9678,21 +9681,21 @@ msgstr "Definysje" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tabelstruktuer foar tabel" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9782,7 +9785,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Gegevens:" @@ -9881,7 +9884,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9950,7 +9953,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9995,52 +9998,52 @@ msgstr "" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10088,33 +10091,33 @@ msgstr "" msgid "Column names: " msgstr "Kolomnammen: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10122,7 +10125,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "MediaWiki-table" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -10135,15 +10138,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Faluta ymportearje ($5.00 nei 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10151,23 +10154,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "ESRI-foarmtriem" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -12920,15 +12923,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "" @@ -12941,17 +12940,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "" @@ -12969,19 +12969,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "" @@ -13007,17 +13007,17 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "Number of tables:" msgid "Unexpected beginning of statement." msgstr "Oantal tabellen:" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13038,15 +13038,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13707,7 +13707,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Rige: %1$s, Kolom: %2$s, Flater: %3$s" @@ -14651,7 +14651,7 @@ msgid "at beginning of table" msgstr "Oantal tabellen:" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -14696,7 +14696,7 @@ msgstr "Partysje %s" msgid "Edit partitioning" msgstr "Routine bewurkje" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14815,11 +14815,11 @@ msgstr "" msgid "Column names" msgstr "Kolomnammen" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/gl.po b/po/gl.po index 07a1a8d6cb..e04ced94c1 100644 --- a/po/gl.po +++ b/po/gl.po @@ -1,9 +1,9 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-01-17 22:02+0000\n" "Last-Translator: Xosé Calvo \n" "Language-Team: Galician %2$s" msgstr[0] "%1$s coincidencia en %2$s" msgstr[1] "%1$s coincidencias en %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3484,30 +3488,30 @@ msgstr "Filtrar filas" msgid "Search this table" msgstr "Buscar nesta táboa" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Inicio" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Seguinte" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Fin" @@ -3579,7 +3583,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "A consulta de SQL executouse sen problemas." @@ -3614,7 +3618,7 @@ msgid "Query took %01.4f seconds." msgstr "A consulta levou %01.4f segundos." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3622,7 +3626,7 @@ msgid "With selected:" msgstr "Cos marcados:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3702,17 +3706,17 @@ msgstr "Detívose o envío do ficheiro por causa da extensión." msgid "Unknown error in file upload." msgstr "Produciuse un erro descoñecido ao enviar o ficheiro." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Produciuse un erro ao mover o ficheiro enviado. Consulte a " "[doc@faq1-11]Pregunta frecuente 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Produciuse un erro ao mover o ficheiro subido." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Non é posíbel ler o ficheiro enviado." @@ -3776,8 +3780,8 @@ msgid "Keyname" msgstr "Nome da chave" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3825,15 +3829,15 @@ msgstr "Eliminouse a chave primaria." msgid "Index %s has been dropped." msgstr "Eliminouse o índice %s." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Eliminar" @@ -3846,7 +3850,7 @@ msgstr "" "Parece que os índice %1$s e %2$s son iguais e posibelmente poderíase " "eliminar un deles." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3896,8 +3900,8 @@ msgid "Table" msgstr "Táboa" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3905,25 +3909,25 @@ msgstr "Táboa" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Buscar" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Inserir" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3931,24 +3935,24 @@ msgid "Privileges" msgstr "Privilexios" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operacións" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Seguimento" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3959,16 +3963,16 @@ msgstr "Disparadores" msgid "Database seems to be empty!" msgstr "Parece ser que a táboa está baleira!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Consulta" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutinas" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3976,16 +3980,16 @@ msgstr "Rutinas" msgid "Events" msgstr "Acontecementos" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Deseñador" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Columnas centrais" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3998,34 +4002,34 @@ msgid "User accounts" msgstr "Contas de usuario" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Rexistro binario" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicación" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variábeis" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Conxuntos de caracteres" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Motores" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Engadidos" @@ -4663,16 +4667,16 @@ msgstr "Espacial" msgid "Max: %s%s" msgstr "Tamaño máximo: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Análise estática:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "Atopáronse %d erros durante a análise." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4683,98 +4687,98 @@ msgstr "Atopáronse %d erros durante a análise." msgid "MySQL said: " msgstr "Mensaxes do MySQL: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Explicar o SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Omitir a explicación de SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "Sen código PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "Enviar esta consulta" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Crear código PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Editar na liña" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Do" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d de %B de %Y ás %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s días, %s horas, %s minutos e %s segundos" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Parámetro que falta:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Ir á base de datos \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A función %s vese afectada por un erro descoñecido; consulte %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Prema para conmutar" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Examinar o computador:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Escoller o directorio de subida do servidor web %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Non hai ficheiros para subir!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Baleirar" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Executar" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Usuarios" @@ -4904,11 +4908,11 @@ msgstr "Engadir unha columna nova" msgid "Attributes" msgstr "Atributos" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Foi imposíbel ler o ficheiro de configuración!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4916,33 +4920,33 @@ msgstr "" "Isto normalmente significa que hai unha erro na sintaxe; comprobe calquera " "erro mostrado embaixo." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Non foi posíbel cargar a configuración predeterminada desde: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "O índice de servidor non é válido: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "O nome de servidor non é válido para o servidor %1$s. Revise a configuración." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Servidor %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" "Na configuración indicouse un método de autenticación que non é válido:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4950,24 +4954,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Debería actualizar a %s %s ou posterior." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Erro: o token non coincide" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Tentouse substituír GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "posíbel vulnerabilidade (exploit)" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "detectouse unha tecla numérica" @@ -5726,13 +5730,13 @@ msgstr "Pór os nomes das columnas na primeira fila" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Columnas delimitadas por" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Carácter de escape das columnas" @@ -5750,12 +5754,12 @@ msgstr "Eliminar os caracteres CRLF nas columnas" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Columnas terminadas en" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Liñas rematadas en" @@ -7978,7 +7982,7 @@ msgid "Table %s has been emptied." msgstr "Baleirouse a táboa %s." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8112,8 +8116,8 @@ msgid "No data to display" msgstr "Non hai datos que mostrar" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8159,52 +8163,52 @@ msgstr[1] "Os nomes «%s» son palabras chaves reservadas do MySQL." msgid "No column selected." msgstr "Non seleccionou ningunha columna." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Movéronse as columnas satisfactoriamente." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Hai un erro na consulta" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "Alterouse a táboa %1$s sen problemas. Axustáronse os privilexios." -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Mudar" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Índice" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Espacial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Texto completo" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Valores diferentes" @@ -8214,7 +8218,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Falta a extensión %s. Comprobe a configuración do PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Sen cambios" @@ -9019,16 +9023,16 @@ msgstr "O MySQL retornou un conxunto baleiro (isto é, cero fileiras)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "Ver o contido dunha estrutura premendo no seu nome." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9037,42 +9041,42 @@ msgid "" msgstr "" "Mudar calquera destas opcións premendo a ligazón «Opcións» correspondente" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 #, 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:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Ir á base de datos: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Editar a configuración de %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Ir á táboa: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Estrutura de %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Ir á vista: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9120,48 +9124,48 @@ msgstr "ou" msgid "web server upload directory:" msgstr "directorio de recepción do servidor web:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Editar/Inserir" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuar a inserción con %s fileiras" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "e despois" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Inserir unha columna nova" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Inserir como fila nova e ignorar os erros" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Mostrar a consulta de inserción" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Volver para páxina anterior" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Inserir un rexistro novo" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Volver para esta páxina" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Modificar a fileira seguinte" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9171,7 +9175,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9183,11 +9187,11 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Mostrar a consulta de SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Identificador da fileira inserida: %1$d" @@ -10071,7 +10075,7 @@ msgstr "Reparar a táboa" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Eliminar datos ou táboa" @@ -10084,32 +10088,32 @@ msgid "Delete the table (DROP)" msgstr "Eliminar a táboa (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analizar" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Comprobar" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimizar" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Reconstruír" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Arranxar" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10137,37 +10141,37 @@ msgstr "Eliminar particións" msgid "Check referential integrity:" msgstr "Comprobar a integridade das referencias:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Non se pode mover unha táboa sobre si mesma!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Non se pode copiar unha táboa sobre si mesma!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Moveuse a táboa %s para %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Copiouse a táboa %s para %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "O nome da táboa está baleiro!" @@ -10349,7 +10353,7 @@ msgstr "Opcións de envorcado dos datos" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "A extraer os datos da táboa" @@ -10373,21 +10377,21 @@ msgstr "Definición" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Estrutura da táboa" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Estrutura para a vista" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Estrutura existente para a vista" @@ -10477,7 +10481,7 @@ msgid "Database:" msgstr "Base de datos:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Datos:" @@ -10587,7 +10591,7 @@ msgid "Data creation options" msgstr "Opcións de creación de datos" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Baleirar a táboa antes de inserir" @@ -10675,7 +10679,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10721,61 +10725,61 @@ msgstr "en uso" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Restricións para os envorcados das táboas" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Restricións para a táboa" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, 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:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Dentro das táboas:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Engadir o valor incremental (AUTO_INCREMENT)" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "TIPOS MIME PARA A TÁBOA" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELACIÓNS PARA A TÁBOA" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Produciuse un erro ao ler os datos:" @@ -10830,15 +10834,15 @@ msgstr "" msgid "Column names: " msgstr "Nomes das columnas: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Hai un parámetro non válido para a importación de CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10848,18 +10852,18 @@ msgstr "" "columnas están ben escritos, separados por vírgulas e non encerrados entre " "aspas." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "O formato de entrada de CSV non é válido na liña %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "O número de columnas é incorrecto na entrada do CSV na liña %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Este engadido non é capaz de realizar importacións comprimidas!" @@ -10867,7 +10871,7 @@ msgstr "Este engadido non é capaz de realizar importacións comprimidas!" msgid "MediaWiki Table" msgstr "Táboa do MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "O formato de entrada de mediawiki non é válido na liña:
%s." @@ -10881,9 +10885,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importar as moedas (ex. $5,00 como 5,00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10891,7 +10895,7 @@ msgstr "" "O ficheiro XML especificado estaba estragado ou incompleto. Corrixa o " "problema e ténteo de novo." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Non foi posíbel analizar a folla de cálculo de OpenDocument!" @@ -10899,12 +10903,12 @@ msgstr "Non foi posíbel analizar a folla de cálculo de OpenDocument!" msgid "ESRI Shape File" msgstr "Ficheiro shapefile da ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Produciuse un erro ao importar o ficheiro shapefile da ESRI: «%s»." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 #, fuzzy #| msgid "" #| "You tried to import an invalid file or the imported file contains invalid " @@ -10916,12 +10920,12 @@ msgstr "" "Tentou importar un ficheiro que era incorrecto ou o ficheiro importado " "contén datos incorrectos" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "A Extensión Espacial do MySQL non recoñece o tipo «%s» da ESRI." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "The imported file does not contain any data" msgid "The imported file does not contain any data!" @@ -14153,15 +14157,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14176,17 +14176,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14208,23 +14209,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "O número de táboas abertas." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "O número de táboas abertas." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14257,17 +14258,17 @@ msgstr "O acontecemento %1$s foi creado." msgid "Variable name was expected." msgstr "Modelo de nome dos ficheiros" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "No comezo da táboa" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14290,19 +14291,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15016,7 +15017,7 @@ msgstr "Ver o esquema do envorcado da táboa" msgid "Invalid table name" msgstr "O nome de táboa non é correcto" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16064,7 +16065,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:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16113,7 +16114,7 @@ msgstr "particionado" msgid "Edit partitioning" msgstr "Eliminar particións" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Editar a vista" @@ -16240,11 +16241,11 @@ msgstr "Nome da VISTA" msgid "Column names" msgstr "Nomes das columnas" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Renomear a vista como" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Delete the table (DROP)" msgid "Delete the view (DROP)" diff --git a/po/gu.po b/po/gu.po index 2dbde74365..24dc7d02ec 100644 --- a/po/gu.po +++ b/po/gu.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-01-08 17:45+0000\n" "Last-Translator: Nijraj Gelani \n" "Language-Team: Gujarati %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3317,30 +3320,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "" @@ -3411,7 +3414,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3444,7 +3447,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3452,7 +3455,7 @@ msgid "With selected:" msgstr "" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3528,15 +3531,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3600,8 +3603,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3649,15 +3652,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -3668,7 +3671,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3718,8 +3721,8 @@ msgid "Table" msgstr "" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3727,25 +3730,25 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3753,24 +3756,24 @@ msgid "Privileges" msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3781,16 +3784,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3798,16 +3801,16 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3820,34 +3823,34 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4413,16 +4416,16 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4433,98 +4436,98 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "" @@ -4650,41 +4653,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4692,24 +4695,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5366,13 +5369,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5390,12 +5393,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -7334,7 +7337,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "" @@ -7464,8 +7467,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7503,52 +7506,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7558,7 +7561,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8277,54 +8280,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8370,53 +8373,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8428,11 +8431,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9252,7 +9255,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9265,32 +9268,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9316,35 +9319,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9513,7 +9516,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9537,21 +9540,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9641,7 +9644,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9733,7 +9736,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9802,7 +9805,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9844,52 +9847,52 @@ msgstr "" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -9937,33 +9940,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -9971,7 +9974,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -9984,15 +9987,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10000,23 +10003,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -12729,15 +12732,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "" @@ -12750,17 +12749,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "" @@ -12778,19 +12778,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "" @@ -12816,15 +12816,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12845,15 +12845,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13511,7 +13511,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14407,7 +14407,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14440,7 +14440,7 @@ msgstr "" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14555,11 +14555,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/he.po b/po/he.po index 001ecbde4f..56a48f04cb 100644 --- a/po/he.po +++ b/po/he.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-07-28 16:36+0200\n" "Last-Translator: Moshe Harush \n" "Language-Team: Hebrew %2$s" msgstr[0] "תוצאה אחת (%1$s) בטבלה %2$s" msgstr[1] "%1$s תוצאות בטבלה %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3808,16 +3812,16 @@ msgstr "שדות" msgid "Search this table" msgstr "חיפוש במסד הנתונים" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "התחלה" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3826,8 +3830,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "הקודם" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -3836,8 +3840,8 @@ msgctxt "Next page" msgid "Next" msgstr "הבא" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3924,7 +3928,7 @@ msgstr "יכול להיות הערכה. ראה [doc@faq3-11]FAQ 3.11[/doc]" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3962,7 +3966,7 @@ msgid "Query took %01.4f seconds." msgstr "שאילתה לקחה %01.4f שניות" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3970,7 +3974,7 @@ msgid "With selected:" msgstr "עם הנבחרים:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4054,16 +4058,16 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "יכול להיות הערכה. ראה FAQ 3.11" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4131,8 +4135,8 @@ msgid "Keyname" msgstr "שם מפתח" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4181,15 +4185,15 @@ msgstr "המפתח הראשי הוסר." msgid "Index %s has been dropped." msgstr "אינדקס %s הוסר." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "השמטה" @@ -4200,7 +4204,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4250,8 +4254,8 @@ msgid "Table" msgstr "טבלה" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4259,25 +4263,25 @@ msgstr "טבלה" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "חיפוש" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "הכנסה" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4285,24 +4289,24 @@ msgid "Privileges" msgstr "הרשאות" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "פעולות" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4313,16 +4317,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "שאילתה" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4330,18 +4334,18 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "הוספת/מחיקת עמודות שדה" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4356,34 +4360,34 @@ msgid "User accounts" msgstr "משתמש" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "דו\"ח בינארי" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "שכפול" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "משתנים" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "קידודים" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "מנועים" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4992,16 +4996,16 @@ msgstr "סה\"כ" msgid "Max: %s%s" msgstr "מירבי: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5012,38 +5016,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL אמר: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "הסברת SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "ללא קוד PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "שליחת שאילתה" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "ייצור קוד PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5051,69 +5055,69 @@ msgid "Edit inline" msgstr "הוספת שדה חדש" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "יום ראשון" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y בזמן %I:%M %p" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ימים, %s שעות, %s דקות ו- %s שניות" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "הוספת שדה חדש" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "קפיצה אל מאגר נתונים \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, fuzzy, php-format msgid "Select from the web server upload directory %s:" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "ריקון" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 #, fuzzy #| msgid "User" msgid "Users" @@ -5255,44 +5259,44 @@ msgstr "הוספת %s תאים" msgid "Attributes" msgstr "תכונות" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Failed to read configuration file!" msgstr "תצורת מעקב מקומית אינה נתמכת" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "שרת" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5300,24 +5304,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "אתה צריך לשדרג אל %s %s לפחות." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6020,7 +6024,7 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6028,7 +6032,7 @@ msgstr "שדות מוקפים ע\"י" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6050,14 +6054,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "שורות מסתיימות ע\"י" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8171,7 +8175,7 @@ msgid "Table %s has been emptied." msgstr "הטבלה %s רוקנה." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8312,8 +8316,8 @@ msgid "No data to display" msgstr "אין מאגרי נתונים" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8359,56 +8363,56 @@ msgstr[1] "" msgid "No column selected." msgstr "לא נבחרו שורות" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy msgid "The columns have been moved successfully." msgstr "%s מסדי נתונים נמחקו בהצלחה." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "סוג שאילתה" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "שינוי" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "אינדקס" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Fulltext" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8420,7 +8424,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "ללא שינוי" @@ -9213,55 +9217,55 @@ msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "אין מאגרי נתונים" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "אין מאגרי נתונים" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "מבנה בלבד" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9311,55 +9315,55 @@ msgstr "או" msgid "web server upload directory:" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "הכנסה" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "ואז" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "הכנסה כשורה חדשה" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "חזרה לעמוד הקודם" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "הוספה נוספת של שורה חדשה" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "חזרה אחורה לעמוד זה" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "עריכת השורה הבאה" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9371,11 +9375,11 @@ msgstr "" msgid "Value" msgstr "ערך" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10259,7 +10263,7 @@ msgstr "תיקון טבלה" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10275,34 +10279,34 @@ msgid "Delete the table (DROP)" msgstr "אין מאגרי נתונים" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 #, fuzzy msgid "Check" msgstr "צ'יכית" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 #, fuzzy msgid "Repair" msgstr "תיקון טבלה" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10331,38 +10335,38 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 #, fuzzy msgid "Can't move table to same one!" msgstr "לא ניתן להעתיק טבלה אל אותה אחת!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "לא ניתן להעתיק טבלה אל אותה אחת!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "הטבלה %s הועברה ל- %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "טבלה %s הועתקה אל %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "שם הטבלה ריק!" @@ -10553,7 +10557,7 @@ msgstr "אפשרויות ייצוא מאגר נתונים" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "הוצאת מידע עבור טבלה" @@ -10580,14 +10584,14 @@ msgstr "תיאור" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "מבנה טבלה עבור טבלה" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10595,7 +10599,7 @@ msgstr "מבנה בלבד" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10710,7 +10714,7 @@ msgid "Database:" msgstr "מסד נתונים" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10826,7 +10830,7 @@ msgid "Data creation options" msgstr "לתבנית זאת אין אפשרויות" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10895,7 +10899,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10941,60 +10945,60 @@ msgstr "בשימוש" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "הגבלות לטבלאות שהוצאו" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "הגבלות לטבלה" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "הגבלות לטבלאות שהוצאו" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "בתוך הטבלאות:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "מבנה בלבד" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy msgid "Error reading data:" msgstr "מאפשר מחיקת מידע." @@ -11049,33 +11053,33 @@ msgstr "" msgid "Column names: " msgstr "שמות עמודה" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11083,7 +11087,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -11096,15 +11100,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11114,23 +11118,23 @@ msgstr "תיעוד" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -14111,15 +14115,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14134,17 +14134,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14166,19 +14167,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14207,17 +14208,17 @@ msgstr "טבלה %s נמחקה" msgid "Variable name was expected." msgstr "תבנית שם קובץ" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "בתחילת טבלה" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14238,17 +14239,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "השורה נמחקה" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14953,7 +14954,7 @@ msgstr "ראיית הוצאה (תבנית) של טבלה" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16067,7 +16068,7 @@ msgid "at beginning of table" msgstr "בתחילת טבלה" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16112,7 +16113,7 @@ msgstr "מיקום" msgid "Edit partitioning" msgstr "הוספת שדה חדש" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16248,12 +16249,12 @@ msgstr "" msgid "Column names" msgstr "שמות עמודה" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "שינוי שם טבלה אל" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "אין מאגרי נתונים" diff --git a/po/hi.po b/po/hi.po index ad22ea8b73..d3d4c0e668 100644 --- a/po/hi.po +++ b/po/hi.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:29+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Hindi %2$s" msgstr[0] "%s टेबल के अंदर %s मैच हैं." msgstr[1] "%s टेबल के अंदर %s मैच हैं." -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3759,16 +3763,16 @@ msgstr "फ़िल्टर" msgid "Search this table" msgstr "डाटाबेस में खोजें" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "प्रारंभ" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3777,8 +3781,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "पिछला" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -3787,8 +3791,8 @@ msgctxt "Next page" msgid "Next" msgstr "अगला" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3869,7 +3873,7 @@ msgstr "शायद अनुमानित हैं. [doc@faq3-11]FAQ 3.11[/ #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3907,7 +3911,7 @@ msgid "Query took %01.4f seconds." msgstr "क्वरी को %01.4f सेकेंड का समय लगा" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3915,7 +3919,7 @@ msgid "With selected:" msgstr "चुने हुओं को:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4001,7 +4005,7 @@ msgstr "फ़ाइल एक्सटेंशन द्वारा अपल msgid "Unknown error in file upload." msgstr "फ़ाइल अपलोड करने में अज्ञात त्रुटि." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -4009,11 +4013,11 @@ msgstr "" "अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [doc@faq1-1]अकसर किये गए सवाल " "1,11[/doc] देखें" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4081,8 +4085,8 @@ msgid "Keyname" msgstr "मुख्यनाम" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4130,15 +4134,15 @@ msgstr "प्राथमिक कुंजी गिरा दी गयी msgid "Index %s has been dropped." msgstr "सूचकांक %s गिरा दिया गया है." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "रद्द" @@ -4149,7 +4153,7 @@ msgid "" "removed." msgstr "सूचकांक %1$s और %2$s बराबर लगने के कारन उनमें से संभवतः हटाया जा सकता है." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4199,8 +4203,8 @@ msgid "Table" msgstr "टेबल" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4208,25 +4212,25 @@ msgstr "टेबल" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "ढूंढें" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "इनसर्ट" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4234,24 +4238,24 @@ msgid "Privileges" msgstr "प्रिविलेज" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "कार्रवाई" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "नज़र रखना" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4262,16 +4266,16 @@ msgstr "ट्रिगर" msgid "Database seems to be empty!" msgstr "डाटाबेस खाली लग रहा है!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "क्वरी" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "नियमित कार्य" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4279,18 +4283,18 @@ msgstr "नियमित कार्य" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "डिजाइनर" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4305,34 +4309,34 @@ msgid "User accounts" msgstr "यूसर" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "बाइनरी लोग" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "प्रतिकृति" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "प्रक्रियां" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "चरित्र सेट" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "इंजन" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4948,18 +4952,18 @@ msgstr "कुल" msgid "Max: %s%s" msgstr "अधिकतम: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "स्थिर (static) डॅटा" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4970,38 +4974,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL ने कहा: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL की व्याख्या" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "SQL की व्याख्या को छोड़ जाना" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "php कोड के बिना" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "क्वरी भेजें" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP Code बनाओ" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5009,73 +5013,73 @@ msgid "Edit inline" msgstr "संपादन मोड" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "रविवार" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y को %I:%M %p" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s दिन, %s घंटे, %s मिनट and %s सेकंड" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "नियमित कार्य" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "\"%s\" डेटाबेस पर जायें;." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s कार्यक्षमताएक एक बग के द्वारा जनि जाती है| %s पर ध्यान दे" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "चयन करने के लिए क्लिक करें." -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "अपना कंप्यूटर ब्राउज़ करें:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "अपने वेब सर्वर की अपलोड डिरेक्टरी से चुने %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "आपकी अपलोड दिरेक्टोरी तक पहुंचा नहीं जा सकता." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "खाली" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 #, fuzzy #| msgid "User" msgid "Users" @@ -5215,44 +5219,44 @@ msgstr "नया काँलम जोडें" msgid "Attributes" msgstr "विशेषता" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Could not save configuration" msgid "Failed to read configuration file!" msgstr "विन्यास सहेज नहीं सकते" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "%1$s से मूलभूत विन्यास लोड नहीं की जा सकी ।" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "अवैध सर्वर सूचकांक: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "%1$s सर्वर के लिए होस्टनाम अवैध कृपया अपना विन्यास की समीक्षा करें।" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "सर्वर" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "विन्यास में अवैध प्रमाणीकरण विधि स्थापित:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5260,24 +5264,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "आपको %s %s या अधिक में नवीनीकृत करना चाहिए।" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6046,7 +6050,7 @@ msgstr "काँलम नाम प्रथम रो में" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Column names" msgid "Columns enclosed with" @@ -6054,7 +6058,7 @@ msgstr "कोलम के नाम" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Column names" msgid "Columns escaped with" @@ -6076,14 +6080,14 @@ msgstr "CRLF चरित्र को कोलम से हटायें" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "काँलम समाप्त होता है" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8469,7 +8473,7 @@ msgid "Table %s has been emptied." msgstr "टेबल %s को खाली किया गया है." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8609,8 +8613,8 @@ msgid "No data to display" msgstr "कोइ डाटाबेस नहिं" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8660,57 +8664,57 @@ msgstr[1] "" msgid "No column selected." msgstr "कोई पंक्ति चयनित नहीं" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "Table %1$s has been altered successfully." msgid "The columns have been moved successfully." msgstr "%1$s टेबल को सफलतापूर्वक बदल दिया गया है" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Gather errors" msgid "Query error" msgstr "त्रुटियों को इकट्ठा करें" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "बदलें" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "सूची" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "प्राथमिक" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8722,7 +8726,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s विस्तार गायब है. कृपया अपने PHP विन्यास की जाँच करें।" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "कोइ बदलाव नहीं" @@ -9501,18 +9505,18 @@ msgstr "MySQL ने एक खाली परिणाम सेट लोत msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "निम्नलिखित संरचनाओं या तो बनाया गया है या बदल दिया| यहाँ पर आप:" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 #, 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:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9520,47 +9524,47 @@ msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "सेटिंग्स को बदलने के लिए \"विकल्प\" लिंक पर क्लिक करें" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "इसकी संरचना को संपादित करने के लिए \"संरचना\" लिंक पर क्लिक करें" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "डेटाबेस पर जायें" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "%s के लिए डेटा लापता" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "टेबल पर जायें" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "केवल संरचना" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "दृश्य पर जायें" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9608,55 +9612,55 @@ msgstr "अथवा" msgid "web server upload directory:" msgstr "वेब सर्वर अपलोड निर्देशिका" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "इनसर्ट" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "और फिर" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "इसको नया रौ में जोडे" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "पिछले पृष्ट पर वापस जाएँ" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "एक और नई रो इनसर्ट करें" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "इस पृष्ठ पर वापस जाएँ" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "अगली रो को संपादित करें" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9668,11 +9672,11 @@ msgstr "" msgid "Value" msgstr "मूल्य" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "SQL क्वेरी शो" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "इनसर्ट रो id: %1$d" @@ -10564,7 +10568,7 @@ msgstr "टेबल को मरम्मत करें" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "टेबल या डेटा हटाएँ" @@ -10577,32 +10581,32 @@ msgid "Delete the table (DROP)" msgstr "डेटाबेस को ______ छोड़ें" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "विश्लेषण" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "चेक" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "सुधारना" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "फिर से बनाना" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "मरम्मत" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10630,38 +10634,38 @@ msgstr "विभाजन हटायें" msgid "Check referential integrity:" msgstr "सम्बन्ध की अखंडता की जाँच करें:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "एक ही टेबल में स्थानांतरित नहीं कर सकते!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 #, fuzzy msgid "Can't copy table to same one!" msgstr "एक ही टेबल में प्रतिलिपि नहीं कर सकते!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "%s टेबल को %s में मूव कर दिया." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "%s टेबल को %s में कापी कर दिया." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "टेबल का नाम खाली है!" @@ -10849,7 +10853,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10875,21 +10879,21 @@ msgstr "वर्णन" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "वीएव के लिए संरचना" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -11001,7 +11005,7 @@ msgid "Database:" msgstr "डाटाबेस" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11118,7 +11122,7 @@ msgid "Data creation options" msgstr "परिवर्तन के विकल्प" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11187,7 +11191,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11233,61 +11237,61 @@ msgstr "उपयोग में है" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "दुम्प टेबलओं के लिए प्रतिबन्ध" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "टेबल के लिए प्रतिबन्ध" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "दुम्प टेबलओं के लिए प्रतिबन्ध" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "टेबल में:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "शुन्य मूल्य के लिए AUTO_INCREMENT का प्रयोग न करें" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT मूल्य जोडें" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "टेबल के लिए MIME प्रकार" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "टेबल के लिए संबंध" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "वीएव के लिए संरचना" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11343,33 +11347,33 @@ msgstr "" msgid "Column names: " msgstr "कोलम नाम" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV आयात के लिए अमान्य पैरामीटर: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "CSV प्रारूप का अवैध इनपुट लाइन %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "CSV इनपुट में अवैध काँलम गिनती लाइन %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "यह प्लगइन संकुचित आयात का समर्थन नहीं करता!" @@ -11377,7 +11381,7 @@ msgstr "यह प्लगइन संकुचित आयात का स msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." @@ -11391,15 +11395,15 @@ msgstr "प्रतिशत को उचित दशमलव के रू msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "आयात मुद्राओं ($5.00 से 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11409,23 +11413,23 @@ msgstr "दस्तावेज़ खोलें" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -14459,15 +14463,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14482,17 +14482,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14514,21 +14515,21 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "Title of browser window when a table is selected" msgid "The old name of the table was expected." msgstr "ब्राउज़र विंडो का शीर्षक है जब किसी भी सर्वर का चयन नहीं किया है" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14559,17 +14560,17 @@ msgstr "%1$s टेबल बना दिया गया है" msgid "Variable name was expected." msgstr "टेबल नाम टेम्पलेट" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "टेबल के शुरू में" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14590,17 +14591,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "रौ को डिलीट कर दिया" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15325,7 +15326,7 @@ msgstr "टेबल डंप दृश्य" msgid "Invalid table name" msgstr "अवैध टेबल नाम" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16450,7 +16451,7 @@ msgid "at beginning of table" msgstr "टेबल के शुरू में" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16499,7 +16500,7 @@ msgstr "विभाजित" msgid "Edit partitioning" msgstr "विभाजन हटायें" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16632,11 +16633,11 @@ msgstr "दृश्य का नाम" msgid "Column names" msgstr "कोलम के नाम" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "दृश्य का नाम बदलो" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Delete the table (DROP)" msgid "Delete the view (DROP)" diff --git a/po/hr.po b/po/hr.po index fa8a7ea101..91e89a7252 100644 --- a/po/hr.po +++ b/po/hr.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Croatian %2$s" msgstr[0] "%s poklapanja unutar tablice %s" msgstr[1] "%s poklapanja unutar tablice %s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3896,16 +3901,16 @@ msgstr "Datoteke" msgid "Search this table" msgstr "Traži u bazi podataka" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Na vrh stranice" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3914,8 +3919,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Prethodni" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -3924,8 +3929,8 @@ msgctxt "Next page" msgid "Next" msgstr "Sljedeće" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -4012,7 +4017,7 @@ msgstr "Može biti približno. Pogledajte [doc@faq3-11]ČPP 3.11[/doc]" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4051,7 +4056,7 @@ msgid "Query took %01.4f seconds." msgstr "Upit je trajao %01.4f sek" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -4059,7 +4064,7 @@ msgid "With selected:" msgstr "S odabirom:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4149,7 +4154,7 @@ msgstr "Učitavanje datoteke prekinuto je uslijed ekstenzije." msgid "Unknown error in file upload." msgstr "Nepoznata pogreška tijekom učitavanja datoteke." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -4157,11 +4162,11 @@ msgstr "" "Pogreška tijekom premještanja učitane datoteke. Pogledajte [doc@faq1-11]ČPP " "1.11[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Greška prilikom premještanja učitane datoteke." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Error while moving uploaded file." msgid "Cannot read uploaded file." @@ -4231,8 +4236,8 @@ msgid "Keyname" msgstr "Naziv ključa" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4280,15 +4285,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Ispusti" @@ -4300,7 +4305,7 @@ msgid "" msgstr "" "Indeksi %1$s i %2$s izgledaju jednakim i jednog od njih moguće je ukloniti." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4350,8 +4355,8 @@ msgid "Table" msgstr "Tablica" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4359,25 +4364,25 @@ msgstr "Tablica" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Traži" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Umetni" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4385,24 +4390,24 @@ msgid "Privileges" msgstr "Privilegije" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operacije" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Praćenje" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4413,16 +4418,16 @@ msgstr "Okidači" msgid "Database seems to be empty!" msgstr "Baza podataka izgleda praznom!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Upit" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutine" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4430,18 +4435,18 @@ msgstr "Rutine" msgid "Events" msgstr "Događaji" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Kreator" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Dodaj/Izbriši stupce polja" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4456,34 +4461,34 @@ msgid "User accounts" msgstr "Korisnik" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binarni zapisnik" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikacija" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Varijable" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Tablice znakova" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Pogoni" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Dodatci" @@ -5101,18 +5106,18 @@ msgstr "Najveći broj datoteka zapisnika" msgid "Max: %s%s" msgstr "Najv: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Statički podatci" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5123,38 +5128,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL je poručio: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Preskoči Objasni SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Bez PHP koda" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Podnesi upit" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Izradi PHP kod" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5162,71 +5167,71 @@ msgid "Edit inline" msgstr "Prikaz ispisa" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Ned" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y u %I:%M %p" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekunda" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rutine" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Skoči do baze podataka \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Na funkcionalnost %s utječe poznati nedostatak. Pogledajte %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Pretraži računalo:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, 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:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 #, fuzzy msgid "There are no files to upload!" msgstr "Provjeri tablicu" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Isprazni" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Izvrši" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 #, fuzzy #| msgid "User" msgid "Users" @@ -5368,48 +5373,48 @@ msgstr "Dodaj %s polja" msgid "Attributes" msgstr "Atributi" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file!" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Neispravan indeks poslužitelja: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Neispravan naziv za poslužitelj %1$s. Molimo, pregledajte svoju " "konfiguraciju." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Poslužitelj" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Neispravan komplet načina provjere vjerodostojnosti u konfiguraciji:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5417,24 +5422,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Trebali biste nadograditi na %s %s ili kasniju." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6155,7 +6160,7 @@ msgstr "Nazive polja stavi u prvi red" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6163,7 +6168,7 @@ msgstr "Polja obuhvaćena po" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6185,14 +6190,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Redovi završeni s" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8353,7 +8358,7 @@ msgid "Table %s has been emptied." msgstr "Tablica %s je očišćena." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8495,8 +8500,8 @@ msgid "No data to display" msgstr "Nema baza podataka" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8546,57 +8551,57 @@ msgstr[2] "" msgid "No column selected." msgstr "Nema odabranih redova" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Vrsta upita" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Promijeni" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Puni tekst" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8608,7 +8613,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Bez izmjena" @@ -9474,56 +9479,56 @@ msgstr "MySQL je vratio prazan komplet rezultata (npr. nula redova)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Nema baza podataka" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Uredi postavke za %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Nema baza podataka" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Samo strukturu" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Vrsta izvoza" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9575,52 +9580,52 @@ msgstr "Ili" msgid "web server upload directory:" msgstr "mapa učitavanja web poslužitelja" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Umetni" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, 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:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "i potom" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Umetni kao novi redak" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 #, fuzzy msgid "Show insert query" msgstr "Prikazivanje SQL upita" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Kreni nazad na prethodnu stranicu" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Umetni dodatni novi redak" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Kreni nazad na ovu stranicu" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Uredi sljedeći redak" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9630,7 +9635,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9642,11 +9647,11 @@ msgstr "" msgid "Value" msgstr "Vrijednost" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Prikazivanje SQL upita" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Umetnut ID retka: %1$d" @@ -10556,7 +10561,7 @@ msgstr "Popravi tablicu" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10572,32 +10577,32 @@ msgid "Delete the table (DROP)" msgstr "Nema baza podataka" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analiziraj" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Provjeri" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimiziraj" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Ponovno izgradi" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Popravi" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10625,37 +10630,37 @@ msgstr "Ukloni particioniranje" msgid "Check referential integrity:" msgstr "Provjeri referencijalan integritet:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Premještanje u istu tablicu nije moguće!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Kopiranje u istu tablicu nije moguće!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tablica %s premještena je u %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tablica %s kopirana je u %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Naziv tablice je prazan!" @@ -10850,7 +10855,7 @@ msgstr "Opcije izvoza baze podataka" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Izbacivanje podataka za tablicu" @@ -10876,21 +10881,21 @@ msgstr "Opis" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tablična struktura za tablicu" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktura za pregledavanje" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Unutarnja struktura za pregledavanje" @@ -11004,7 +11009,7 @@ msgid "Database:" msgstr "Baza podataka" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11120,7 +11125,7 @@ msgid "Data creation options" msgstr "Opcije preoblikovanja" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11189,7 +11194,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11241,61 +11246,61 @@ msgstr "u upotrebi" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Ograničenja za izbačene tablice" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Ograničenja za tablicu" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ograničenja za izbačene tablice" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Unutar tablica:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Dodaj vrijednost AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Dodaj vrijednost AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME VRSTE ZA TABLICU" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE TABLICE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11352,34 +11357,34 @@ msgstr "" msgid "Column names: " msgstr "Nazivi stupaca" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Neispravan parametar za CSV uvoz: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Neispravno oblikovanje u CSV unosu unutar retka %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Neispravan broj polja u CSV unosu unutar retka %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Ovaj dodatak ne podržava uvoz komprimiranih datoteka!" @@ -11387,7 +11392,7 @@ msgstr "Ovaj dodatak ne podržava uvoz komprimiranih datoteka!" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." @@ -11401,15 +11406,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11419,23 +11424,23 @@ msgstr "Otvori izračunsku tablicu dokumenta" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -14696,15 +14701,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14719,17 +14720,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14751,23 +14753,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Broj otvorenih tablica." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Broj otvorenih tablica." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14797,17 +14799,17 @@ msgstr "Tablica %1$s je izrađena." msgid "Variable name was expected." msgstr "Predložak naziva datoteka" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Pri početku tablice" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14828,19 +14830,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15556,7 +15558,7 @@ msgstr "Prikaži ispis (shemu) tablice" msgid "Invalid table name" msgstr "Neispravan naziv tablice" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16691,7 +16693,7 @@ msgid "at beginning of table" msgstr "Pri početku tablice" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16740,7 +16742,7 @@ msgstr "particionirano" msgid "Edit partitioning" msgstr "Ukloni particioniranje" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16876,11 +16878,11 @@ msgstr "Naziv prikaza" msgid "Column names" msgstr "Nazivi stupaca" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Preimenuj prikaz u" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Nema baza podataka" diff --git a/po/hu.po b/po/hu.po index 4e41c3cc65..e41de649ce 100644 --- a/po/hu.po +++ b/po/hu.po @@ -1,9 +1,9 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:09+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Hungarian %2$s" msgstr[0] "%1$s találat ebben: %2$s" msgstr[1] "%1$s találat ebben: %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3548,30 +3553,30 @@ msgstr "Sorok szűrése" msgid "Search this table" msgstr "Keresés a táblában" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Kezdet" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Előző" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Következő" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Vége" @@ -3644,7 +3649,7 @@ msgstr "Becsült érték lehet. Lásd [doc@faq3-11]GyIK 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Az SQL-lekérdezés végrehajtása sikerült." @@ -3679,7 +3684,7 @@ msgid "Query took %01.4f seconds." msgstr "A lekérdezés %01.4f másodpercig tartott." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3687,7 +3692,7 @@ msgid "With selected:" msgstr "A kijelöltekkel végzendő művelet:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3769,17 +3774,17 @@ msgstr "A fájlfeltöltés kiterjesztés alapján leállt." msgid "Unknown error in file upload." msgstr "Ismeretlen hiba a fájlfeltöltésben." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Hiba történt a feltöltött fájl áthelyezésekor, lásd [doc@faq1-11]GyIK 1.11[/" "doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Hiba a feltöltött fájl mozgatása közben." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -3845,8 +3850,8 @@ msgid "Keyname" msgstr "Kulcsnév" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3894,15 +3899,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Eldobás" @@ -3915,7 +3920,7 @@ msgstr "" "A(z) %1$s és a(z) %2$s egyenlőnek tűnik, és egyikük valószínűleg " "eltávolítható." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3965,8 +3970,8 @@ msgid "Table" msgstr "Tábla" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3974,25 +3979,25 @@ msgstr "Tábla" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Keresés" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Beszúrás" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4000,24 +4005,24 @@ msgid "Privileges" msgstr "Jogok" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Műveletek" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Követés" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4028,16 +4033,16 @@ msgstr "Eseményindítók" msgid "Database seems to be empty!" msgstr "Üresnek tűnik az adatbázis!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Lekérdezés" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Eljárások" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4045,16 +4050,16 @@ msgstr "Eljárások" msgid "Events" msgstr "Események" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Tervező" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Központi oszlopok" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4067,34 +4072,34 @@ msgid "User accounts" msgstr "Felhasználói fiókok" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Bináris napló" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: 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:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Változók" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Karakterkészlet" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Motorok" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Bővítmények" @@ -4718,16 +4723,16 @@ msgstr "Térbeli" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Statikus elemzés:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "%d hibát találtunk az elemzés során." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4738,104 +4743,104 @@ msgstr "%d hibát találtunk az elemzés során." msgid "MySQL said: " msgstr "A MySQL mondta: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Az SQL magyarázata" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "SQL magyarázat átugrása" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "Magyarázat elemzése itt: %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP kód nélkül" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Lekérdezés indítása" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP-kód létrehozása" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Szerkesztés helyben" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Vas" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y. %B %d. %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s nap, %s óra, %s perc, %s másodperc" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Hiányzó paraméter:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Ugrás a(z) \"%s\" adatbázishoz." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A(z) %s funkcióra egy ismert hiba van hatással, lásd itt: %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Kattintson a váltáshoz" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Számítógép tallózása:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, 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:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Nincsenek feltöltendő fájlok!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Kiürítés" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Végrehajtás" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Felhasználók" @@ -4966,11 +4971,11 @@ msgstr "Új oszlop hozzáadása" msgid "Attributes" msgstr "Tulajdonságok" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "A beállítófájl olvasása meghiúsult!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4978,31 +4983,31 @@ msgstr "" "Ez általában azt jelenti, hogy szintaktikai hiba áll fenn, ellenőrizze az " "alább látható hibákat." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nem lehetett betölteni az alapértelmezett konfigurációt innen: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Érvénytelen kiszolgálóindex: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "A(z) %1$s kiszolgáló gépneve érvénytelen. Nézze át a beállításokat." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Kiszolgáló %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Érvénytelen hitelesítési mód került beállításra a konfigurációban:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5014,24 +5019,24 @@ msgstr "" "beállításait. A phpMyAdmin jelenleg az adatbázis-kiszolgáló alapértelmezett " "időzónáját használja." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Frissítenie kell %s %s vagy újabb verzióra." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Hiba: Token eltérés" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS felülírási kísérlet" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "lehetséges kiaknázás" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "numerikus kulcs észlelve" @@ -5781,13 +5786,13 @@ msgstr "A mezőneveket tegye az első sorba" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Oszlopok körbezárása ezzel" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Oszlopok escape-elése ezzel" @@ -5805,12 +5810,12 @@ msgstr "A mezőkben lévő CRLF karakterek eltávolítása" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Oszlopok végződése ezzel" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Sorok végződése ezzel" @@ -7976,7 +7981,7 @@ msgid "Table %s has been emptied." msgstr "A(z) %s tábla kiürítése megtörtént." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "A(z) %s nézet el lett dobva." @@ -8111,8 +8116,8 @@ msgid "No data to display" msgstr "Nincs megjelenítendő adat" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8150,17 +8155,17 @@ msgstr[1] "A(z) „%s” nevek a MySQL számára fenntartott kulcsszavak." msgid "No column selected." msgstr "Nem jelölt ki sort." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Az oszlop mozgatása sikeresen megtörtént." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Lekérdezési hiba" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." @@ -8168,36 +8173,36 @@ 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Módosítás" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Index" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Térbeli" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Teljes szöveg" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Különböző értékek" @@ -8207,7 +8212,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "A %s kiterjesztés hiányzik. Kérem ellenőrizze a PHP beállításokat." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nincs változás" @@ -9013,58 +9018,58 @@ msgstr "A MySQL üres eredményhalmazt adott vissza (pl. nulla sorok)." msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK történt.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Szerkezet szerkesztése a „Szerkezet” hivatkozást követve." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Ugrás az adatbázishoz: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "%s beállításainak szerkesztése" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Ugrás a táblához: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s szerkezete" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Ugrás %s megtekintéséhez" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9112,48 +9117,48 @@ msgstr "Vagy" msgid "web server upload directory:" msgstr "webszerver feltöltési könyvtár:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Szerkesztés/Beszúrás" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Beszúrás folytatása a(z) %s sorokkal" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "és utána" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Beszúrás új sorként" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 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:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Beillesztő lekérdezés megjelenítése" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Vissza az előző oldalra" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Új sor beszúrása" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Visszatérés erre az oldalra" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Következő sor szerkesztése" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9163,7 +9168,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9175,11 +9180,11 @@ msgstr "" msgid "Value" msgstr "Érték" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Megjelenítés SQL lekérdezésként" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "A beszúrt sor azonosítószáma: %1$d" @@ -10065,7 +10070,7 @@ msgstr "Tábla javítása" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Adat vagy tábla törlése" @@ -10078,32 +10083,32 @@ msgid "Delete the table (DROP)" msgstr "Tábla törlése (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Elemzés" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Ellenőrzés" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimalizálás" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Újraépítés" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Javítás" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Kiürítés" @@ -10129,39 +10134,39 @@ msgstr "Particionálás eltávolítása" msgid "Check referential integrity:" msgstr "Hivatkozási sértetlenség ellenőrzése:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Nem helyezhető át ugyanabba a tábla!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Nem másolható ugyanabba a tábla!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, 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:2127 +#: libraries/operations.lib.php:2125 #, 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:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Üres a tábla neve!" @@ -10338,7 +10343,7 @@ msgstr "Adatkiírási beállítások" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "A tábla adatainak kiíratása" @@ -10362,21 +10367,21 @@ msgstr "Meghatározás" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tábla szerkezet ehhez a táblához" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Nézet szerkezete" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "A nézet helyettes szerkezete" @@ -10467,7 +10472,7 @@ msgid "Database:" msgstr "Adatbázis:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Adatok:" @@ -10569,7 +10574,7 @@ msgid "Data creation options" msgstr "Adatlétrehozási beállítások" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Tábla csonkolása beszúrás előtt" @@ -10654,7 +10659,7 @@ msgstr "Úgy tűnik, az adatbázis függvényeket használ;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 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." @@ -10698,52 +10703,52 @@ msgstr "használatban" msgid "It appears your database uses views;" msgstr "Úgy tűnik, az adatbázis nézeteket használ;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Megkötések a kiírt táblákhoz" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Megkötések a táblához" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indexek a kiírt táblákhoz" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "A tábla indexei" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "A kiírt táblák AUTO_INCREMENT értéke" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT a táblához" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "Tábla MIME-típusok" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "TÁBLA KAPCSOLATAI" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 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:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Hiba az adatolvasás közben:" @@ -10798,15 +10803,15 @@ msgstr "" msgid "Column names: " msgstr "Oszlopnevek: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "A CSV importálás paramétere érvénytelen: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10815,18 +10820,18 @@ msgstr "" "Érvénytelen oszlop (%s) van megadva! Győződjön meg arról, hogy oszlopok " "nevét helyesen írta, vesszővel lett elválasztva, nem idézőjellel." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "A CSV bevitel %d. sorában a formázás érvénytelen." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Érvénytelen oszlopszám a CSV bemenet %d. sorában." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Ez a beépülő modul nem támogatja a tömörített importálásokat!" @@ -10834,7 +10839,7 @@ msgstr "Ez a beépülő modul nem támogatja a tömörített importálásokat!" msgid "MediaWiki Table" msgstr "MediaWiki tábla" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Érvénytelen mediawiki bemeneti formátum ebben a sorban:
%s." @@ -10849,9 +10854,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Valuták importálása (pl. $5.00 helyett 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10859,7 +10864,7 @@ msgstr "" "A megadott XML-fájl rosszul formázott vagy befejezetlen. Javítsa ki a hibát " "és próbálja újra." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Az Open Document munkafüzet nem olvasható!" @@ -10867,12 +10872,12 @@ msgstr "Az Open Document munkafüzet nem olvasható!" msgid "ESRI Shape File" msgstr "ESRI alakzat fájl" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Hiba történt az ESRI alakzat fájl importálásakor: „%s”." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10880,12 +10885,12 @@ msgstr "" "Érvénytelen fájlt próbált importálni, vagy az importált fájl érvénytelen " "adatot tartalmaz!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "A MySQL térbeli kiterjesztése nem támogatja az ESRI típust: \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Az importált fájl nem tartalmaz semmilyen adatot!" @@ -13955,15 +13960,11 @@ msgstr "%1$d értékek voltak elvárva, de %2$d található." msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -13978,17 +13979,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "Felismerhetetlen adattípus." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Egy álnév korábban már megtalálva." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Váratlan pont." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14010,23 +14012,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "Ez a lehetőség ütközik ezzel: „%1$s”." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "A megnyitott táblák száma." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "A megnyitott táblák száma." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "Template was deleted." msgid "A rename operation was expected." @@ -14057,17 +14059,17 @@ 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:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "at beginning of table" msgid "Unexpected beginning of statement." msgstr "a tábla elejénél" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Felismerhetetlen utasítástípus." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Nem volt korábban elindított tranzakció." @@ -14092,19 +14094,19 @@ msgstr "Egy új utasítás található, de nincs elválasztó köztük." msgid "Unrecognized keyword." msgstr "Felismerhetetlen kulcsszó." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14805,7 +14807,7 @@ msgstr "Tábla kiírás (vázlat) megtekintése" msgid "Invalid table name" msgstr "Érvénytelen táblanév" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Sor: %1$s, oszlop: %2$s, hiba: %3$s" @@ -15769,7 +15771,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:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15818,7 +15820,7 @@ msgstr "particionált" msgid "Edit partitioning" msgstr "Particionálás eltávolítása" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Nézet szerkesztése" @@ -15937,11 +15939,11 @@ msgstr "NÉZET neve" msgid "Column names" msgstr "Oszlopnevek" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Nézet átnevezése" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "A nézet törlése (DROP)" diff --git a/po/hy.po b/po/hy.po index 6073ded3de..7c6a01a4bc 100644 --- a/po/hy.po +++ b/po/hy.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-12-18 18:19+0000\n" "Last-Translator: Andrey Aleksanyants \n" "Language-Team: Armenian %2$s" msgstr[0] "%1$s համընկնում %2$s-ում" msgstr[1] "%1$s համընկնում %2$s-ում" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3479,30 +3483,30 @@ msgstr "Զտել տողերը" msgid "Search this table" msgstr "Որոնել այս աղյուսակում" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Սկիզբ" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Նախորդ" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Հաջորդ" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Վերջ" @@ -3573,7 +3577,7 @@ msgstr "Կարող է մոտավոր լինել։ Դիմեք [doc@faq3-11]FAQ 3. #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Ձեր SQL հարցումը հաջողությամբ կատարվեց։" @@ -3608,7 +3612,7 @@ msgid "Query took %01.4f seconds." msgstr "Հարցումը տևեց %01.4f վայրկյան։" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3616,7 +3620,7 @@ msgid "With selected:" msgstr "Ներառյալ նշվածները՝" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3696,15 +3700,15 @@ msgstr "Ֆայլի վերբեռնումը կասեցվել է ընդլայնմա msgid "Unknown error in file upload." msgstr "Ֆայլի վերբեռման անհայտ սխալ։" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Վերբեռնված ֆայլի տեղափոխման սխալ, դիմեք [doc@faq1-11]FAQ 1.11[/doc]։" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Վերբեռնված ֆայլի տեղափոխման սխալ։" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Չհաջողվեց կարդալ վերբեռնված ֆայլը։" @@ -3768,8 +3772,8 @@ msgid "Keyname" msgstr "Բանալիի անվանումը" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3817,15 +3821,15 @@ msgstr "Առաջնային բանալին ջնջվեց։" msgid "Index %s has been dropped." msgstr "%s ցուցակագիրը ջնջվեց։" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Ջնջել" @@ -3838,7 +3842,7 @@ msgstr "" "%1$s և %2$s ցուցակարգերը նույնն են, այդպես որ դրանցից մեկը հնարավոր է " "հեռացնել։" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3890,8 +3894,8 @@ msgid "Table" msgstr "Աղյուսակ" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3899,25 +3903,25 @@ msgstr "Աղյուսակ" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Որոնում" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Զետեղել" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3925,24 +3929,24 @@ msgid "Privileges" msgstr "Արտոնություններ" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Գործողություններ" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Հետագծում" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3953,16 +3957,16 @@ msgstr "Ձգաններ" msgid "Database seems to be empty!" msgstr "Տվյալների բազան դատարկ է" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Հարցում" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Գործընթացներ" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3970,16 +3974,16 @@ msgstr "Գործընթացներ" msgid "Events" msgstr "Իրադարձություններ" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Ձևավորող" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Կենտրոնական սյունակներ" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3992,34 +3996,34 @@ msgid "User accounts" msgstr "Օգտվողների հաշիվներ" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Երկուական մատյան" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Կրկնապատկում" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Փոփոխականներ" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Կոդավորումներ" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Պահպանման տեսակներ" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Խրվակներ" @@ -4610,16 +4614,16 @@ msgstr "Տարածական" msgid "Max: %s%s" msgstr "Առավելագույնը՝ %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "Վերլուծման ժամանակ գտնվել է %d սխալ։" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4630,98 +4634,98 @@ msgstr "Վերլուծման ժամանակ գտնվել է %d սխալ։" msgid "MySQL said: " msgstr "MySQL-ի պատասխանը՝ " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL-ի վերլուծում" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Զանցել SQL-ի վերլուծումը" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "Առանց PHP կոդի" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "Կատարել հարցումը" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Ստեղծել PHP կոդը" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Ներտող խմբագրում" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Կիր" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Yթ. ժ. %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s օր, %s ժամ, %s րոպե և %s վայրկյան" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Բացակայող հարաչափը՝" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Զանցել \"%s\" տվյալների բազային։" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Կտտացրեք՝ փոխարկելու համար" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Զննել համակարգիչը՝" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Վերբեռնումների համար նախատեսված պանակը անհասանելի է։" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Վերբեռնելու ֆայլեր չկան։" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Դատարկել" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Կատարել" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Օգտվողներ" @@ -4851,11 +4855,11 @@ msgstr "Ավելացնել նոր սյունակ" msgid "Attributes" msgstr "Հատկանիշներ" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4863,33 +4867,33 @@ msgstr "" "Սա սովորաբար նշանակում է շարահյուսության սխալների առկայություն, խնդրում ենք " "ստուգել ստորև ցուցադրվող սխալները։" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s սպասարկչի համար նշված խնամորդի անունը անվավեր է։ Խնդրում ենք կատարել " "ուղղումներ ձեր կազմաձևի ֆայլում։" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Սպասարկիչ %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Կազմաձևի ֆայլում նշված վավերացման եղանակը անվավեր է՝" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4901,24 +4905,24 @@ msgstr "" "[/em]-ի համար։ Տվյալ պահին phpMyAdmin-ը օգտագործում է սպասարկչի լռելյայն " "ժամային գոտին։" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Անհրաժեշտ է արդիացնել %s-ը %s կամ բարձր տարբերակին։" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Սխալ՝ հետքանշիչի անհամապատասխանություն" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS վրագրելու փորձ" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "հնարավոր խոցելիություն" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "բացահայտվել է թվային ստեղն" @@ -5610,13 +5614,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Սյունակները շրջապատված են" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5634,12 +5638,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -7600,7 +7604,7 @@ msgid "Table %s has been emptied." msgstr "%s աղյուսակը դատարկվել է։" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "%s ներկայացումը ջնջվեց։" @@ -7734,8 +7738,8 @@ msgid "No data to display" msgstr "Ցուցադրելու տվյալներ չկան" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7773,52 +7777,52 @@ msgstr[1] "'%s' անունները ամրագրված են MySQL-ի կողմից msgid "No column selected." msgstr "Ընտրած սյունակներ չկան։" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Հարցման սխալ" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Փոխել" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Ցուցակագիր" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Տարածական" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Ամբողջ գրվածքով" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Հատուկ արժեքները" @@ -7828,7 +7832,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Առանց փոփոխությունների" @@ -8551,54 +8555,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "[Տեղի է ունեցել ՀԵՏԴԱՐՁ]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Խմբագրել կայանքներ %s-ի համար" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Անցնել աղյուսակին՝ %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s-ի կառուցվածքը" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Անցնել ներկայացնամնը (VIEW)՝ %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8646,55 +8650,55 @@ msgstr "Կամ" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Խմբագրել/Զետեղել" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "և հետո" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Զետեղել որպես նոր տող" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Զետեղել որպես նոր տող և անտեսել սխալներ" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Ցուցադրել զետեղման հարցումը" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Վերադառնալ նախորդ էջին" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Զետեղել մեկ այլ նոր տող" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Խմբագրել հաջորդ տողը" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Օգտագործեք TAB ստեղնը՝ արժեքների դաշտերի միջև տեղափոխվելու, կամ CTRL+սլաքեր՝ " "ցանկացած տեղ տեղափոխվելու համար։" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8706,11 +8710,11 @@ msgstr "" msgid "Value" msgstr "Արժեքը" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "SQL հարցման ցուցադրում" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Զետեղված տողի id՝ %1$d" @@ -9532,7 +9536,7 @@ msgstr "Վերականգնել աղյուսակը" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Ջնջել տվյալները կամ աղյուսակը" @@ -9545,32 +9549,32 @@ msgid "Delete the table (DROP)" msgstr "Ջնջել աղյուսակը (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Վերլուծել" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Ստուգում" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Բարելավվում" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Վերակառուցում" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9596,35 +9600,35 @@ msgstr "Հեռացնել մասնաբաժանումը" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Հնարավոր չէ տեղափոխել աղյուսակն իր մեջ։" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Հնարավոր չէ կրկնապատկել աղյուսակն իր մեջ։" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "%s աղյուսակը տեղափոխվել է %s։" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "%s աղյուսակը կրկնապատկվել է %s։" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Աղյուսակի անունը նշված չէ։" @@ -9793,7 +9797,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9817,21 +9821,21 @@ msgstr "Սահմանում" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Աղյուսակի կառուցվածքը" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9921,7 +9925,7 @@ msgid "Database:" msgstr "Տվյալների բազան՝" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Տվյալներ՝" @@ -10013,7 +10017,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Դատարկել աղյուսակը՝ տվյալներ զետեղելուց առաջ" @@ -10084,7 +10088,7 @@ msgstr "Ըստ երևույթի, ձեր ՏԲ-ն օգտագործում է գոր #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10126,52 +10130,52 @@ msgstr "օգտագործվում է" msgid "It appears your database uses views;" msgstr "Ըստ երևույթի, ձեր ՏԲ-ն օգտագործում է ներկայացումներ;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Պահպանված աղյուսակների ցուցակագրերը" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Աղյուսակի ցուցակագրերը" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT՝ պահպանված աղյուսակների համար" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT՝ աղյուսակի համար" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "ԱՂՅՈՒՍԱԿՆԵՐԻ MIME ՏԵՍԱԿՆԵՐԸ" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Ըստ երևույթի, ձեր ՏԲ-ն օգտագործում է ձգաններ;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Տվյալների կարդալու սխալ՝" @@ -10219,33 +10223,33 @@ msgstr "" msgid "Column names: " msgstr "Սյունակների անունները՝ " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10253,7 +10257,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "MediaWiki-ի աղյուսակը" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -10266,15 +10270,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10282,23 +10286,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "ESRI ձևի ֆայլ" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "ESRI ձևի ֆայլը ներմուծելու ժամանակ առաջացել է սխալ՝ \"%s\"։" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -13055,15 +13059,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Սպասվում էր ստորակետը կամ փակող փակագիծը։" @@ -13076,17 +13076,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Սպասվում էր այլանունը։" @@ -13104,19 +13105,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Սպասվում էր աղյուսակի հին անունը։" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Սպասվում էր աղյուսակի նոր անունը։" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Սպասվում էր վերանվանման գործողությունը։" @@ -13142,15 +13143,15 @@ msgstr "Սպասվում էր %1$s փակող չակերտը։" msgid "Variable name was expected." msgstr "Սպասվում էր փոփոխականի անունը։" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13171,15 +13172,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Սպասվում էր առնվազն մեկ սյունակի սահմանումը։" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13846,7 +13847,7 @@ msgstr "" msgid "Invalid table name" msgstr "Անվավեր աղյուսակի անուն" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14744,7 +14745,7 @@ msgid "at beginning of table" msgstr "աղյուսակի սկզբում" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Մասնաբաժիններ" @@ -14777,7 +14778,7 @@ msgstr "Մասնաբաժինների աղյուսակ" msgid "Edit partitioning" msgstr "Խմբագրել մասնաբաժանումը" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Խմբագրել ներկայացումը" @@ -14892,11 +14893,11 @@ msgstr "VIEW անունը" msgid "Column names" msgstr "Սյունակների անուններ" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Վերանվանել ներկայացումը" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Ջնջել ներկայացումը (DROP)" diff --git a/po/ia.po b/po/ia.po index a225f55b12..505f20c7de 100644 --- a/po/ia.po +++ b/po/ia.po @@ -5,13 +5,13 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-02-08 15:27+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" @@ -51,7 +51,7 @@ msgid "Table comments:" msgstr "Commentos de tabella:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -105,7 +105,7 @@ msgstr "Typo" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -167,12 +167,12 @@ msgid "Comments" msgstr "Commentos" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Primari" @@ -205,12 +205,12 @@ msgstr "No" #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -255,8 +255,8 @@ msgid "Tables" msgstr "Tabellas" #: db_export.php:66 libraries/Menu.php:323 libraries/Menu.php:430 -#: libraries/Util.php:3402 libraries/Util.php:3412 libraries/Util.php:3418 -#: libraries/Util.php:3698 libraries/Util.php:4335 libraries/Util.php:4352 +#: libraries/Util.php:3409 libraries/Util.php:3419 libraries/Util.php:3425 +#: libraries/Util.php:3705 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/central_columns.lib.php:725 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,7 +264,7 @@ msgstr "Tabellas" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -476,7 +476,7 @@ msgstr "Adde un geometria" #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -506,7 +506,7 @@ msgstr "Adde un geometria" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Vade" @@ -534,7 +534,7 @@ msgstr "Fallite" msgid "Incomplete params" msgstr "Parametros incomplete" -#: import.php:184 +#: import.php:186 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -543,15 +543,15 @@ msgstr "" "Probabilemente tu es essayante incargar un file troppo grande. Pro favor tu " "refere al %sdocumentation%s pro eluder iste limite." -#: import.php:360 import.php:665 +#: import.php:362 import.php:667 msgid "Showing bookmark" msgstr "Monstrante marcator de libro" -#: import.php:376 import.php:661 +#: import.php:378 import.php:663 msgid "The bookmark has been deleted." msgstr "Le marcator de libro ha essite delite." -#: import.php:474 +#: import.php:476 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -560,12 +560,12 @@ msgstr "" "File incargate non pote esser movite, proque le servitor ha habilitate " "open_base_dir sin accesso al directorio %s (pro files temporanee)." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:492 import.php:569 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "Le file non pote esser legite!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:503 import.php:518 import.php:543 import.php:558 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -575,7 +575,7 @@ msgstr "" "supportate. Le supporto pro iste typo de compression poterea ancora non " "esser actuate o esser dishabilitate in tu configuration." -#: import.php:574 +#: import.php:576 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -585,23 +585,26 @@ msgstr "" "file, o il ha superate le grandor maxime permittite per tu configuration de " "PHP pro incargar un file. Tu vide [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:628 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "" "Il non es possibile cargar plugins de importar, pro favor tu verifica tu " "installation!" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:670 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "Marcator de libro %s create." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "Importation executate con successo, %d demandas executate." +#: import.php:680 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "Importation executate con successo, %d demandas executate." +msgstr[1] "Importation executate con successo, %d demandas executate." -#: import.php:705 +#: import.php:711 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -610,7 +613,7 @@ msgstr "" "Tempore limite excedite, si tu vole terminar le importation, pro favor %stu " "invia de nove le mesme file%s e le processo initiara de nove." -#: import.php:715 +#: import.php:721 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -624,7 +627,7 @@ msgid "Could not load the progress of the import." msgstr "Il non pote incargar le progression del importation." #: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: libraries/Util.php:802 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Retro" @@ -720,10 +723,11 @@ msgstr "Monstra information de PHP" msgid "Version information:" msgstr "Information de version:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:449 libraries/Util.php:516 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Documentation" @@ -1011,7 +1015,7 @@ msgid "Save & close" msgstr "Salveguarda & claude" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Refixa" @@ -1068,7 +1072,7 @@ 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:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:132 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 @@ -1083,7 +1087,7 @@ msgstr "Simula query" msgid "Matched rows:" msgstr "Rangos coincidente trovate:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:137 libraries/Util.php:703 msgid "SQL query:" msgstr "Query SQL:" @@ -1142,12 +1146,12 @@ msgid "Other" msgstr "Altere" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:160 libraries/Util.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:162 libraries/Util.php:1500 msgid "." msgstr "." @@ -1254,40 +1258,40 @@ msgid "Processes" msgstr "Processos" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:202 libraries/Util.php:1442 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:203 libraries/Util.php:1444 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:204 libraries/Util.php:1446 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:205 libraries/Util.php:1448 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:206 libraries/Util.php:1450 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:207 libraries/Util.php:1452 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:208 libraries/Util.php:1454 msgid "EiB" msgstr "EiB" @@ -1305,7 +1309,7 @@ msgstr "Demandas" msgid "Traffic" msgstr "Traffico" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4333 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Preferentias" @@ -1320,7 +1324,7 @@ msgstr "Pro favor tu adde al minus un variabile al series!" #: js/messages.php:219 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1529,7 +1533,7 @@ msgstr "Analysante…" msgid "Explain output" msgstr "Explica le exito" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4329 #: 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:91 libraries/tracking.lib.php:284 @@ -1630,8 +1634,8 @@ msgstr "" "refixa al configuration predefinite…" #: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 -#: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 -#: libraries/Util.php:4357 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:581 libraries/Util.php:4332 libraries/Util.php:4347 +#: libraries/Util.php:4364 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 #: libraries/server_status_monitor.lib.php:313 prefs_manage.php:237 #: setup/frames/menu.inc.php:26 @@ -1785,7 +1789,7 @@ msgstr "Copiante base de datos" msgid "Changing charset" msgstr "Modificante insimul de characteres" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:377 libraries/Util.php:3291 msgid "Enable foreign key checks" msgstr "Habilita le verificationes sur le clave estranie" @@ -1821,9 +1825,9 @@ msgstr "" #: js/messages.php:392 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 -#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 -#: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 -#: libraries/Util.php:4356 libraries/config/messages.inc.php:255 +#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3712 +#: libraries/Util.php:3713 libraries/Util.php:4331 libraries/Util.php:4346 +#: libraries/Util.php:4363 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:168 libraries/rte/rte_list.lib.php:149 #: libraries/server_privileges.lib.php:2513 #: libraries/server_privileges.lib.php:2592 @@ -1874,8 +1878,8 @@ msgstr "Monstra quadro de query" #: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 -#: libraries/Util.php:3703 libraries/Util.php:3704 +#: libraries/Index.php:721 libraries/Util.php:732 libraries/Util.php:1242 +#: libraries/Util.php:3710 libraries/Util.php:3711 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 #: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:182 @@ -2062,7 +2066,7 @@ msgid "No dependencies selected!" msgstr "Necun dependentias seligite!" #: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2150,7 +2154,7 @@ msgid "Data point content" msgstr "Contento del puncto de datos" #: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignora" @@ -2393,7 +2397,7 @@ msgid "Select database first" msgstr "Prime selige un base de datos" #: js/messages.php:599 libraries/DisplayResults.php:5029 -#: libraries/Util.php:4217 +#: libraries/Util.php:4224 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" @@ -2672,63 +2676,63 @@ msgid "December" msgstr "Decembre" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:773 libraries/Util.php:1664 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:775 libraries/Util.php:1666 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:777 libraries/Util.php:1668 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:779 libraries/Util.php:1670 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:781 libraries/Util.php:1672 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:783 libraries/Util.php:1674 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:785 libraries/Util.php:1676 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:787 libraries/Util.php:1678 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:789 libraries/Util.php:1680 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:791 libraries/Util.php:1682 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:793 libraries/Util.php:1684 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:795 libraries/Util.php:1686 msgid "Dec" msgstr "Dec" @@ -2766,32 +2770,32 @@ msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:816 libraries/Util.php:1691 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:818 libraries/Util.php:1693 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:820 libraries/Util.php:1695 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:822 libraries/Util.php:1697 msgid "Thu" msgstr "Jov" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:824 libraries/Util.php:1699 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:826 libraries/Util.php:1701 msgid "Sat" msgstr "Sab" @@ -2932,9 +2936,9 @@ msgstr "Pro favor inserta un data o tempore valide" msgid "Please enter a valid HEX input" msgstr "Pro favor inserta un valide ingresso HEX" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:679 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Error" @@ -2988,18 +2992,18 @@ msgstr "" "Character inexpectate al linea %1$s. Il expectava tab, ma on trovava \"%2$s" "\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Le file de configuration existente (%s) non es legibile." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permissiones incorrecte sur le file de configuration, il non deberea esser " "scribibile per omnes!" -#: libraries/Config.php:1519 +#: libraries/Config.php:1528 msgid "Font size" msgstr "Grandor de font" @@ -3069,7 +3073,7 @@ msgstr "Durante session currente" msgid "Explain" msgstr "Explica" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1328 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profiling" @@ -3103,8 +3107,8 @@ msgid "History" msgstr "Chronologia" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3197,7 +3201,7 @@ msgstr "Cela tracia" msgid "Count:" msgstr "Computo:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:339 libraries/Util.php:1298 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 @@ -3253,7 +3257,6 @@ msgid "Switch to dark theme" msgstr "Commuta a thema obscur" #: libraries/DatabaseInterface.php:1528 -#| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Il falleva fixar connexion de collation configurate!" @@ -3439,9 +3442,9 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s correspondentia in %2$s" msgstr[1] "%1$s correspondentias in %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3498,30 +3501,30 @@ msgstr "Filtra rangos" msgid "Search this table" msgstr "Cerca in iste tabella" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Initio" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Previe" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Proxime" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Ultime" @@ -3592,7 +3595,7 @@ msgstr "Il pote esser approximate. Vide[doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Le demanda (query) SQL ha essite executate con successo." @@ -3627,7 +3630,7 @@ msgid "Query took %01.4f seconds." msgstr "Query prendeva %01.4f secundas." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3635,7 +3638,7 @@ msgid "With selected:" msgstr "Si seligite:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3714,16 +3717,16 @@ msgstr "Le incargamento del file esseva stoppate per le extension errate." msgid "Unknown error in file upload." msgstr "Error incognite durante que il cargava un file." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Error quando on moveva le file incargate, vide [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Error quando on moveva le file incargate." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Il non pote leger le file incargate." @@ -3787,8 +3790,8 @@ msgid "Keyname" msgstr "Nomine clave" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3836,15 +3839,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Lassa cader" @@ -3857,7 +3860,7 @@ msgstr "" "Il sembla que le indices %1$s e %2$s es equal e un de lor poterea esser " "removite." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3908,8 +3911,8 @@ msgid "Table" msgstr "Tabula" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3917,25 +3920,25 @@ msgstr "Tabula" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Cerca" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Inserta" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3943,24 +3946,24 @@ msgid "Privileges" msgstr "Permissiones" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operationes" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Traciamento" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3971,16 +3974,16 @@ msgstr "Triggers" msgid "Database seems to be empty!" msgstr "Le base de datos sembla esser vacue!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Query" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Routines" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3988,16 +3991,16 @@ msgstr "Routines" msgid "Events" msgstr "Eventos" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Designator" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Columnas central" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4010,34 +4013,34 @@ msgid "User accounts" msgstr "Contos de usator" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Registro binari" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replication" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variabiles" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Insimul de characteres" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Motores" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Plugins" @@ -4674,16 +4677,16 @@ msgstr "Spatial" msgid "Max: %s%s" msgstr "Dimension maxime: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Analysis static:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "%d errores esseva trovate durante le analysis." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4694,101 +4697,101 @@ msgstr "%d errores esseva trovate durante le analysis." msgid "MySQL said: " msgstr "Message de MySQL: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Explica SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Non explica SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "Explication de Analysis a %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "Sin codice PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "Submitte query" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Crea codice PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Modifica in linea (inline)" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y a %I:%M %p" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dies, %s horas, %s minutas e %s secundas" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Parametro mancante:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Salta al base de datos \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Le functionalitate %s es influentiate per un error cognoscite, tu vide %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Pulsa pro alternar" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Cerca in tu computator:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, 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:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Il non ha alcun file de incargar!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Vacua" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Executa" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Usatores" @@ -4918,11 +4921,11 @@ msgstr "Adde nove columna" msgid "Attributes" msgstr "Attributos" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Il falleva leger le file de configuration!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4930,33 +4933,33 @@ msgstr "" "Isto usualmente significa que on ha un error de syntaxe in illo, pro favor " "verifica qualcunque error monstrate a basso." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Il non pote incargar configuration predefinite ex: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Indice de servitor invalide: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nomine de hospite pro le servitor %1$s invalide. Pro favor verifica tu " "configuration." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Servitor %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Methodo de authentication invalide fixate in le configuration:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4968,24 +4971,24 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin es currentemente usante le fuso horari " "predefinite de servitor de base de datos." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Tu deberea actualisar a version %s%s o successive." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Error: error de correspondentia in le indicio (token mismatch)" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Tentativa de superscriber GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "possibile exploit" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "clave numeric discoperite" @@ -5740,13 +5743,13 @@ msgstr "Mitte nomines de columnas in le prime rango" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Columnas includite per" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Columnas prefixate per" @@ -5764,12 +5767,12 @@ msgstr "Remove characteres de CRLF intra columnas" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Columnas terminate per" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Rangos terminate per" @@ -7937,7 +7940,7 @@ msgid "Table %s has been emptied." msgstr "Tabella %s ha essite vacuate." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Vista %s ha essite delite." @@ -8071,8 +8074,8 @@ msgid "No data to display" msgstr "Necun dato de monstrar" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8110,17 +8113,17 @@ msgstr[1] "Le nomines '%s' es parolas clave reservate de MySQL." msgid "No column selected." msgstr "Necun columna seligite." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "La columnas ha essite movite successosemente." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Error de query" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." @@ -8128,36 +8131,36 @@ msgstr "" "Tabella %1$s ha essite alterate successosemente. Privilegios ha essite " "adaptate." -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Modifica" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indice" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spatial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Texto complete" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Valores distincte" @@ -8168,7 +8171,7 @@ msgstr "" "Le extension %s es mancante. Pro favor tu verifica tu configuration de PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Necun modification" @@ -8967,56 +8970,56 @@ msgstr "MySQL retornava un insimul de exito vacue (i.e. zero rangos)." msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK occurreva.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Modifica le structura per sequer le ligamine de \"Structura\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Vade al base de datos: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Modifica preferentias per %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Vade a tabella: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Structura de %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Vade a vista: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9064,55 +9067,55 @@ msgstr "O" msgid "web server upload directory:" msgstr "directorio de incargamento de servitor web:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Modifica/Inserta" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Continua insertion con %s rangos" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "e alora" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "inserta como nove rango" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Inserta como nove rango e ignora errores" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Monstra query de insertar" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Vade a previe pagina" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Inserta un altere nove rango" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Vade retro a iste pagina" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Modifica nove rango" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9124,11 +9127,11 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Monstrante query de SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Insertate id de rango: %1$d" @@ -10008,7 +10011,7 @@ msgstr "Repara tabella" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Dele datos o tabella" @@ -10021,32 +10024,32 @@ msgid "Delete the table (DROP)" msgstr "Dele le tabella (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analysa" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Verifica" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimiza" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Reconstrue" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Repara" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Trunca" @@ -10072,35 +10075,35 @@ msgstr "Remove partitionemento" msgid "Check referential integrity:" msgstr "Verifica le integritate referential:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "On non pote mover tabella sur se mesme!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "On non pote copiar tabella sur se mesme!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabella %s ha essite movite in %s. Privilegios ha essite adaptate." -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabella %s ha essite copiate in %s. Privilegios ha essite adaptate." -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabella %s ha essite movite in %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabella %s ha essite copiate in %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Le nomine de tabella es vacue!" @@ -10274,7 +10277,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10298,21 +10301,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10402,7 +10405,7 @@ msgid "Database:" msgstr "Base de datos:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Datos:" @@ -10498,7 +10501,7 @@ msgid "Data creation options" msgstr "Optiones de creation de datos" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10582,7 +10585,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10624,52 +10627,52 @@ msgstr "in uso" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Limites pro tabellas delite (dumped)" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Limites pro tabella" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indices pro tabellas delite (dumped)" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indices pro tabella" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT pro tabellas delite (dumped)" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT pro tabella" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Il habeva un error quando on legeva datos:" @@ -10722,33 +10725,33 @@ msgstr "" msgid "Column names: " msgstr "Nomines de columna: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Parametro invalide per le importation de CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10756,7 +10759,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Invalide formato de ingresso de mediawiki al rango:
%s." @@ -10769,15 +10772,15 @@ msgstr "Importa percentage como valores decimal (ex. 12.00% to .12)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importa numerario (ex. $5.00 to 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10785,23 +10788,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -13522,15 +13525,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "On expectava un comma o un parentheses claudite." @@ -13543,17 +13542,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "On expectava un alias." @@ -13571,19 +13571,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "On expectava le vetule nomine de le tabella." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "On expectava un operation de renominar.." @@ -13609,15 +13609,15 @@ msgstr "" msgid "Variable name was expected." msgstr "On expectava un nomine de variabile." -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Un initio de instruction non expectate." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13638,15 +13638,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "On expectava al minus un definition de columna." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14310,7 +14310,7 @@ msgstr "" msgid "Invalid table name" msgstr "Nomine de tabella invalide" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15213,7 +15213,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:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Partitiones" @@ -15246,7 +15246,7 @@ msgstr "Tabella de partition" msgid "Edit partitioning" msgstr "Modifica partitionemento" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -15361,11 +15361,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/id.po b/po/id.po index bc2a61c2ba..162f8a6729 100644 --- a/po/id.po +++ b/po/id.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-11-23 11:13+0000\n" "Last-Translator: CV. Gavitha Rantama \n" "Language-Team: Indonesian %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s cocok dengan %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3588,30 +3591,30 @@ msgstr "Saring baris" msgid "Search this table" msgstr "Cari di tabel ini" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Awal" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Sebelumnya" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Berikutnya" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Akhir" @@ -3684,7 +3687,7 @@ msgstr "Kemungkinan hanya perkiraan saja. Lihat [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Kueri SQL Anda berhasil dieksekusi." @@ -3719,7 +3722,7 @@ msgid "Query took %01.4f seconds." msgstr "Pencarian dilakukan dalam %01.4f detik." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3727,7 +3730,7 @@ msgid "With selected:" msgstr "Dengan pilihan:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3807,16 +3810,16 @@ msgstr "Pengunggahan berkas dihentikan oleh ekstensi." msgid "Unknown error in file upload." msgstr "Galat tidak dikenal sewaktu mengunggah berkas." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Tidak dapat memindahkan berkas upload, lihat [doc@faq1-11]FAQ 3.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Terjadi galat sewaktu memindahkan berkas unggahan." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -3882,8 +3885,8 @@ msgid "Keyname" msgstr "Nama kunci" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3931,15 +3934,15 @@ msgstr "Kunci primer telah dihapus." msgid "Index %s has been dropped." msgstr "Indeks %s telah dihapus." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Hapus" @@ -3952,7 +3955,7 @@ msgstr "" "Indeks %1$s dan %2$s sepertinya sama dan salah satu dari mereka memungkinkan " "untuk dibuang." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4002,8 +4005,8 @@ msgid "Table" msgstr "Tabel" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4011,25 +4014,25 @@ msgstr "Tabel" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Cari" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Tambahkan" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4037,24 +4040,24 @@ msgid "Privileges" msgstr "Hak Akses" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operasi" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Pelacakan" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4065,16 +4068,16 @@ msgstr "Trigger" msgid "Database seems to be empty!" msgstr "Basis data kelihatannya kosong!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Kueri" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Routine" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4082,16 +4085,16 @@ msgstr "Routine" msgid "Events" msgstr "Event" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Desainer" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Tengah kolom" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4106,34 +4109,34 @@ msgid "User accounts" msgstr "Grup pengguna" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Log biner" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikasi" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variabel" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Set Karakter" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Mesin" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Plugin" @@ -4761,18 +4764,18 @@ msgstr "Spasial" msgid "Max: %s%s" msgstr "Batas ukuran: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Data statis" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4783,106 +4786,106 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL menyatakan: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Jelaskan SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Lewati Penjelasan SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Kode PHP tidak ditemukan" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Kirim Kueri" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Buat kode PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Edit dikotak" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Minggu" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y pada %H.%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s hari, %s jam, %s menit dan %s detik" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Parameter yang hilang:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Langsung ke basis data \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Fungsionalitas %s dipengaruhi oleh suatu bug, lihat %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Klik untuk beralih" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Telusuri komputer Anda:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Pilih dari direktori unggah %s pada web server:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" "Direktori yang telah ditetapkan untuk mengunggah tidak dapat dihubungi." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Tidak ada arsip untuk diunggah!" # Imperative menu -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Kosongkan" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Eksekusi" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Pengguna" @@ -5020,13 +5023,13 @@ msgstr "Tambah kolom" msgid "Attributes" msgstr "Atribut" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to read configuration file!" msgstr "Gagal membaca berkas konfigurasi" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -5034,32 +5037,32 @@ msgstr "" "Hal ini biasanya berarti ada kesalahan sintaks di dalamnya, silahkan cek " "kesalahan di bawah ini." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Tidak dapat memuat konfigurasi default dari: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Indeks server tidak sah: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Hostname tidak sah untuk server %1$s. Harap lihat kembali konfigurasi Anda." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Metode autentikasi dalam konfigurasi tidak sah:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5067,24 +5070,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Anda harus memperbarui ke %s %s atau lebih baru." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Error: Token tidak cocok" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "upaya penimpaan GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "memungkinkan mengeksploitasi" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "tombol angka terdeteksi" @@ -5877,13 +5880,13 @@ msgstr "Masukkan nama kolom pada baris pertama" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Kolom diapit oleh" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Kolom diloloskan oleh" @@ -5901,12 +5904,12 @@ msgstr "Hapus karakter CRLF dalam kolom" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Kolom diakhiri oleh" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Baris diakhir dengan" @@ -8229,7 +8232,7 @@ msgid "Table %s has been emptied." msgstr "Tabel %s telah dikosongkan." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8369,8 +8372,8 @@ msgid "No data to display" msgstr "Tidak ada data" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8411,55 +8414,55 @@ msgstr[0] "Nama kolom '%s' adalah kata kunci pesanan MySQL." msgid "No column selected." msgstr "Tidak ada kolom yang dipilih." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Galat kueri" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Ubah" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spasial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Teks penuh" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8471,7 +8474,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Ekstensi %s tidak ditemukan. Harap periksa konfigurasi PHP Anda." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Tidak ada perubahan" @@ -9336,63 +9339,63 @@ msgstr "MySQL memberikan hasil kosong (atau nol baris)." msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK occurred.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 #, 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:1258 +#: libraries/import.lib.php:1259 #, fuzzy msgid "View a structure's contents by clicking on its name." msgstr "Lihat isi struktur ini dengan mengklik namanya." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, 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:1263 +#: libraries/import.lib.php:1264 #, fuzzy msgid "Edit structure by following the \"Structure\" link." msgstr "Mengedit struktur dengan mengikuti link \"Struktur\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Tuju ke basis data" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Edit pengaturan %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Tuju ke tabel" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struktur %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Tuju ke view" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 #, 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:1614 +#: libraries/import.lib.php:1615 #, fuzzy msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " @@ -9445,48 +9448,48 @@ msgstr "Atau" msgid "web server upload directory:" msgstr "direktori unggahan server web" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Edit/Tambah" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Lanjutkan penambahan untuk %s baris" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "selanjutnya" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Tambahkan sebagai baris baru" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Tambahkan sebagai baris baru dan abaikan galat" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Tampilkan kueri penambahan" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "kembali" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "tambahkan baris baru berikutnya" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Kembali ke halaman ini" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Edit baris berikut" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9496,7 +9499,7 @@ msgstr "" "Gunakan tombol TAB untuk maju dari angka ke angka atau gunakan CTRL+panah " "untuk maju kemana saja" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9508,11 +9511,11 @@ msgstr "" msgid "Value" msgstr "Nilai" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Menampilkan kueri SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Nomor baris baru: %1$d" @@ -10485,7 +10488,7 @@ msgstr "Perbaiki tabel" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Hapus data atau tabel" @@ -10498,32 +10501,32 @@ msgid "Delete the table (DROP)" msgstr "Hapus tabel (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analisis" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Periksa" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimalkan" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Bangun ulang" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Perbaiki" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10550,37 +10553,37 @@ msgstr "Hapus partisi" msgid "Check referential integrity:" msgstr "Cek integriti referensial:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Memindahkan tabel ke diri-sendiri tidak bisa dilakukan!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Penyalinan tabel pada diri-sendiri tidak bisa dilakukan!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s telah dipindahkan ke %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabel %s telah disalin ke %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Nama tabel kosong!" @@ -10766,7 +10769,7 @@ msgstr "Opsi dump data" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dumping data untuk tabel" @@ -10790,21 +10793,21 @@ msgstr "Definisi" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struktur dari tabel" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktur untuk view" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 #, fuzzy msgid "Stand-in structure for view" @@ -10911,7 +10914,7 @@ msgid "Database:" msgstr "Basis data" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11034,7 +11037,7 @@ msgid "Data creation options" msgstr "Opsi pembuatan objek" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 #, fuzzy msgid "Truncate table before insert" msgstr "Truncate table sebelum insert" @@ -11125,7 +11128,7 @@ msgstr "Tampaknya database Anda menggunakan fungsi;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 #, fuzzy msgid "alias export may not work reliably in all cases." msgstr "ekspor alias mungkin tidak bekerja andal dalam semua kasus." @@ -11173,63 +11176,63 @@ msgstr "sedang digunakan" msgid "It appears your database uses views;" msgstr "Tampaknya database Anda menggunakan pandangan;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Ketidakleluasaan untuk tabel" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Dalam tabel:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Tambahkan nilai AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "JENIS MIME UNTUK TABEL" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELASI UNTUK TABEL" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 #, fuzzy msgid "It appears your table uses triggers;" msgstr "Tampaknya meja Anda menggunakan pemicu;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Galat pembacaan data:" @@ -11287,15 +11290,15 @@ msgstr "" msgid "Column names: " msgstr "Nama kolom: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, fuzzy, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Parameter yang salah untuk impor CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, fuzzy, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -11304,18 +11307,18 @@ msgstr "" "Kolom tidak valid (%s) yang ditentukan! Pastikan bahwa nama kolom dieja " "dengan benar, dipisahkan dengan koma, dan tidak tertutup dalam tanda kutip." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Format masukan CSV tidak valid pada baris %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Format masukan CSV tidak valid pada baris %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 #, fuzzy msgid "This plugin does not support compressed imports!" msgstr "Plugin ini tidak mendukung impor dikompresi!" @@ -11324,7 +11327,7 @@ msgstr "Plugin ini tidak mendukung impor dikompresi!" msgid "MediaWiki Table" msgstr "Tabel MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Format valid input mediawiki pada bari:
%s." @@ -11341,9 +11344,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Mata uang impor (ex. $5.00 menjadi 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -11351,7 +11354,7 @@ msgstr "" "Berkas XML yang ditentukan cacat atau tidak lengkap. Harap perbaiki dan coba " "lagi." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11362,12 +11365,12 @@ msgstr "Open Document Spreadsheet" msgid "ESRI Shape File" msgstr "ESRI Shape file" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, fuzzy, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Ada kesalahan mengimpor ESRI bentuk file: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 #, fuzzy msgid "" "You tried to import an invalid file or the imported file contains invalid " @@ -11376,12 +11379,12 @@ msgstr "" "Anda mencoba untuk mengimpor file yang tidak valid atau file yang diimpor " "mengandung data tidak valid!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, fuzzy, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Spatial Ekstensi tidak mendukung ESRI Jenis \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "The imported file does not contain any data" msgid "The imported file does not contain any data!" @@ -14686,15 +14689,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14709,17 +14708,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14741,23 +14741,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Jumlah tabel yang terbuka." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Jumlah tabel yang terbuka." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14790,17 +14790,17 @@ msgstr "Event %1$s telah dibuat." msgid "Variable name was expected." msgstr "Templat nama tabel" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Pada Awal Tabel" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14823,19 +14823,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15586,7 +15586,7 @@ msgstr "Tampilkan Dump (Skema) dari tabel" msgid "Invalid table name" msgstr "Nama tabel tidak valid" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Baris: %1$s, Kolom: %2$s, Kesalahan: %3$s" @@ -16683,7 +16683,7 @@ msgid "at beginning of table" msgstr "Pada Awal Tabel" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16732,7 +16732,7 @@ msgstr "dipartisi" msgid "Edit partitioning" msgstr "Hapus partisi" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Tampilan edit" @@ -16864,11 +16864,11 @@ msgstr "Nama VIEW" msgid "Column names" msgstr "Nama kolom" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Ubah nama tampilan menjadi" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Delete the table (DROP)" msgid "Delete the view (DROP)" diff --git a/po/it.po b/po/it.po index 4956bd19d2..a7bafdddbb 100644 --- a/po/it.po +++ b/po/it.po @@ -1,9 +1,9 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-02-04 11:09+0000\n" "Last-Translator: Stefano Martinelli \n" "Language-Team: Italian %2$s" msgstr[0] "%1$s corrispondenza in %2$s" msgstr[1] "%1$s corrispondenze in %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3508,30 +3512,30 @@ msgstr "Filtra righe" msgid "Search this table" msgstr "Cerca nella tabella" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Inizio" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Precedente" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Prossima" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Ultima" @@ -3602,7 +3606,7 @@ msgstr "Può essere approssimativo. Vedi [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "La query SQL è stata eseguita con successo." @@ -3637,7 +3641,7 @@ msgid "Query took %01.4f seconds." msgstr "La query ha impiegato %01.4f secondi." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3645,7 +3649,7 @@ msgid "With selected:" msgstr "Se selezionati:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3722,16 +3726,16 @@ msgstr "Caricamento del file interrotto per estensione errata." msgid "Unknown error in file upload." msgstr "Si é verificato un errore sconosciuto durante il caricamento del file." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Errore nello spostamento del file caricato, vedi [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Si é verificato un errore durante lo spostamento del file." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Impossibile leggere il file caricato." @@ -3795,8 +3799,8 @@ msgid "Keyname" msgstr "Chiave" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3844,15 +3848,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Elimina" @@ -3865,7 +3869,7 @@ msgstr "" "Sembra che gli indici %1$s e %2$s sono uguali ed uno di questi potrebbe, " "possibilmente, essere rimosso." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3917,8 +3921,8 @@ msgid "Table" msgstr "Tabella" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3926,25 +3930,25 @@ msgstr "Tabella" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Cerca" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Inserisci" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3952,24 +3956,24 @@ msgid "Privileges" msgstr "Privilegi" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operazioni" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Monitoraggio" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3980,16 +3984,16 @@ msgstr "Trigger" msgid "Database seems to be empty!" msgstr "Il database sembra essere vuoto!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Query da esempio" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Routine" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3997,16 +4001,16 @@ msgstr "Routine" msgid "Events" msgstr "Eventi" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Colonne centrali" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4019,34 +4023,34 @@ msgid "User accounts" msgstr "Account utenti" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Log binario" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicazione" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variabili" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Set di caratteri" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Motori" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Plugin" @@ -4684,16 +4688,16 @@ msgstr "Spaziale" msgid "Max: %s%s" msgstr "Dimensione massima: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Analisi statica:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "Sono stati trovati %d errori durante l'analisi." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4704,98 +4708,98 @@ msgstr "Sono stati trovati %d errori durante l'analisi." msgid "MySQL said: " msgstr "Messaggio di MySQL: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Spiega SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Non Spiegare SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "Spiegazione Analisi a %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "Senza codice PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "Invia query" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Crea il codice PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Modifica inline" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y alle %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s giorni, %s ore, %s minuti e %s secondi" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Parametro mancante:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Passa al database \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La %s funzionalità è affetta da un bug noto, vedi %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Clicca per alternare" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Cerca sul tuo computer:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selezionare dalla cartella di upload del server web %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Nessun file da caricare!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Svuota" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Esegui" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Utenti" @@ -4924,11 +4928,11 @@ msgstr "Aggiungi nuovo campo" msgid "Attributes" msgstr "Attributi" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Lettura del file di configurazione fallita!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4936,32 +4940,32 @@ msgstr "" "Questo di solito significa che vi è un errore di sintassi in esso, verifica " "eventuali errori riportati in basso." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Non posso caricare la configurazione predefinita da: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Indice server non valido: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome host per il server %1$s non valido. Controlla la tua configurazione." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Metodo di autenticazione impostato nella configurazione non valido:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4973,24 +4977,24 @@ msgstr "" "['SessionTimeZone'][/em]. Al momento phpMyAdmin sta usando la timezone " "predefinita sul server." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Si dovrebbe aggiornare %s alla versione %s o successiva." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Errore: token non corrispondente" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Tentativo di sovrascrivere GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "possibile exploit" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "chiave numerica rilevata" @@ -5741,13 +5745,13 @@ msgstr "Metti i nomi dei campi nel primo rigo" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Campi limitati da" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Campi prefissati con" @@ -5765,12 +5769,12 @@ msgstr "Rimuovi i caratteri CRLF dai campi" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Campi terminati da" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Linee terminate con" @@ -7950,7 +7954,7 @@ msgid "Table %s has been emptied." msgstr "La tabella %s è stata svuotata." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "La vista %s è stata eliminata." @@ -8085,8 +8089,8 @@ msgid "No data to display" msgstr "Nessun dato da visualizzare" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8124,17 +8128,17 @@ msgstr[1] "I nomi '%s' sono termini riservati MySQL." msgid "No column selected." msgstr "Nessuna colonna selezionata." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "I campi sono stati spostati con successo." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Errore nella query" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." @@ -8142,36 +8146,36 @@ msgstr "" "La tabella %1$s è già stata modificata con successo. I privilegi sono stati " "adattati." -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Modifica" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indice" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spaziale" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Testo completo" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Valori distinti" @@ -8181,7 +8185,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "L'estensione %s è mancante. Controlla la tua configurazione di PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nessun cambiamento" @@ -8982,56 +8986,56 @@ msgstr "MySQL ha restituito un insieme vuoto (i.e. zero righe)." msgid "[ROLLBACK occurred.]" msgstr "[è stato fatto un ROLLBACK.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Modifica la struttura seguendo il link \"Struttura\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Vai al database: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Modifica impostazioni per %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Vai alla tabella: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struttura di %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Vai alla visualizzazione: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9081,55 +9085,55 @@ msgstr "Oppure" msgid "web server upload directory:" msgstr "directory di upload del web-server:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Modifica/Inserisci" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Riprendi inserimento con %s righe" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "e quindi" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Inserisci come nuova riga" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Inserisci come nuova riga e ignora gli errori" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Mostra la insert query" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Indietro" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Inserisci un nuovo record" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Torna a questa pagina" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Modifica il record successivo" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9141,11 +9145,11 @@ msgstr "" msgid "Value" msgstr "Valore" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Visualizzo la query SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserita riga id: %1$d" @@ -10025,7 +10029,7 @@ msgstr "Ripara tabella" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Rimuovi la tabella o i dati" @@ -10038,32 +10042,32 @@ msgid "Delete the table (DROP)" msgstr "Elimina la tabella (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analizza" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Controlla" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Ottimizza" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Ricrea" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Ripara" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Tronca" @@ -10089,35 +10093,35 @@ msgstr "Rimuove partizionamento" msgid "Check referential integrity:" msgstr "Controlla l'integrità delle referenze:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Impossibile spostare la tabella su se stessa!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Impossibile copiare la tabella su se stessa!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "La tabella %s è stata spostata in %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "La tabella %s è stata copiata su %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Il nome della tabella è vuoto!" @@ -10297,7 +10301,7 @@ msgstr "Opzioni del dump dei dati" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dump dei dati per la tabella" @@ -10321,21 +10325,21 @@ msgstr "Definizione" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struttura della tabella" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struttura per la vista" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Struttura stand-in per le viste" @@ -10427,7 +10431,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Dati:" @@ -10531,7 +10535,7 @@ msgid "Data creation options" msgstr "Opzioni di creazione dei dati" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Svuota la tabella prima dell'inserimento" @@ -10614,7 +10618,7 @@ msgstr "Il tuo database sembra utilizzare le funzioni;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" "l'esportazione degli alias potrebbe non funzionare correttamente in tutti i " @@ -10658,52 +10662,52 @@ msgstr "in uso" msgid "It appears your database uses views;" msgstr "Il tuo database sembra utilizzare le viste;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Limiti per le tabelle scaricate" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Limiti per la tabella" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indici per le tabelle scaricate" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indici per le tabelle" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT per le tabelle scaricate" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT per la tabella" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Il tuo database sembra utilizzare i trigger;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "(Vedi sotto per la vista effettiva)" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Si è verificato un errore durante la lettura dei dati:" @@ -10758,15 +10762,15 @@ msgstr "" msgid "Column names: " msgstr "Nomi dei campi: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Parametro non valido per importazione CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10776,18 +10780,18 @@ msgstr "" "scritti correttemente, sono separati da virgole e non racchiusi in " "virgolette." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Formato non valido per l'input CSV alla linea %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Il numero dei campi non é valido nell'input CSV alla linea %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Questo plugin non supporta importazioni di dati compressi!" @@ -10795,7 +10799,7 @@ msgstr "Questo plugin non supporta importazioni di dati compressi!" msgid "MediaWiki Table" msgstr "Tabella MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Formato non valido per mediawiki alla linea:
%s." @@ -10809,9 +10813,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importa valute (ad esempio $5.00 come 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10819,7 +10823,7 @@ msgstr "" "Il file XML specificato era malformato o incompleto. Correggi questo " "problema e prova ancora." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" "Non riesco ad analizzare il foglio di calcolo nel formato OpenDocument!" @@ -10828,13 +10832,13 @@ msgstr "" msgid "ESRI Shape File" msgstr "Shape File ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" "C'è stato un errore durante l'importazione del file shape ESRI: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10842,12 +10846,12 @@ msgstr "" "Hai cercato di importare un file non valido o il file importato contiene " "dati non validi!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "L'Estensione Spaziale di MySQL non supporta il tipo ESRI \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Il file importato non contiene alcun dato!" @@ -13905,15 +13909,11 @@ msgstr "Erano attesi %1$d valori, ma ne sono stati trovati %2$d." msgid "An opening bracket followed by a set of values was expected." msgstr "Era attesa una parentesi aperta seguita da un insieme di valori." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "Era attesa una parentesi aperta." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "Era attesa una virgola o una parentesi chiusa" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Era attesa una virgola o una parentesi chiusa." @@ -13926,17 +13926,18 @@ msgstr "Era attesa una parentesi chiusa." msgid "Unrecognized data type." msgstr "Tipo dati non riconosciuto." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Un alias è stato trovato precedentemente." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Segno di punteggiatura \"punto\" inatteso." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Era atteso un alias." @@ -13954,19 +13955,19 @@ msgstr "Era atteso un offset." msgid "This option conflicts with \"%1$s\"." msgstr "Questa opzione è in conflitto con \"%1$s\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Era atteso il vecchio nome della tabella." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Era attesa la parola chiave \"TO\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Era atteso il nuovo nome della tabella." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Era attesa una operazione di rinomina." @@ -13992,15 +13993,15 @@ 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:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Inizio di statement inatteso." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Tipo statement non riconosciuto." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Non è stata iniziata alcuna transazione in precedenza." @@ -14023,15 +14024,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Parola chiave non riconosciuta." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Era atteso il nome dell'entity." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Era attesa almeno la definizione di un campo." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Era attesa una parola chiave \"RETURNS\"." @@ -14726,7 +14727,7 @@ msgstr "Visualizza dump (schema) della tabella" msgid "Invalid table name" msgstr "Nome tabella non valido" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Riga: %1$s, Campo: %2$s, Errore: %3$s" @@ -15647,7 +15648,7 @@ msgid "at beginning of table" msgstr "All'inizio della tabella" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Partizioni" @@ -15680,7 +15681,7 @@ msgstr "Tabella partizioni" msgid "Edit partitioning" msgstr "Modifica partizionamento" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Modifica la vista" @@ -15795,11 +15796,11 @@ msgstr "Nome VISTA" msgid "Column names" msgstr "Nomi dei campi" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Rinomina la vista in" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Elimina la vista (DROP)" @@ -17109,6 +17110,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert è impostato a 0" +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Era attesa una virgola o una parentesi chiusa" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/ja.po b/po/ja.po index 1090223a63..7167098289 100644 --- a/po/ja.po +++ b/po/ja.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-01-22 11:11+0000\n" "Last-Translator: Masahiro Nishi \n" "Language-Team: Japanese %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s 件 (テーブル %2$s)" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3660,30 +3663,30 @@ msgstr "フィルタ" msgid "Search this table" msgstr "データベース内検索" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "先頭" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "前へ" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "次へ" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "最後" @@ -3760,7 +3763,7 @@ msgstr "正確な数字とは限りません。[doc@faq3-11]FAQ 3.11[/doc] を #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3798,7 +3801,7 @@ msgid "Query took %01.4f seconds." msgstr "クエリの実行時間 %01.4f 秒" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3806,7 +3809,7 @@ msgid "With selected:" msgstr "チェックしたものを:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3894,7 +3897,7 @@ msgstr "拡張によりファイルのアップロードが中断されました msgid "Unknown error in file upload." msgstr "ファイルのアップロード中に予期しないエラーが発生しました。" -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -3902,11 +3905,11 @@ msgstr "" "アップロードされたファイルの移動に失敗しました。[doc@faq1-11]FAQ 1.11[/doc] " "をご覧ください。" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "アップロードされたファイルを移動中にエラーが発生しました。" -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -3976,8 +3979,8 @@ msgid "Keyname" msgstr "キー名" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4025,15 +4028,15 @@ msgstr "主キーを削除しました。" msgid "Index %s has been dropped." msgstr "インデックス %s を削除しました。" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "削除" @@ -4046,7 +4049,7 @@ msgstr "" "インデックス %1$s と %2$s は同一のもののようです。一方は削除してもよいかもし" "れません。" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4096,8 +4099,8 @@ msgid "Table" msgstr "テーブル" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4105,25 +4108,25 @@ msgstr "テーブル" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "検索" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "挿入" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4131,24 +4134,24 @@ msgid "Privileges" msgstr "特権" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "操作" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "SQL コマンドの追跡" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4159,16 +4162,16 @@ msgstr "トリガ" msgid "Database seems to be empty!" msgstr "データベースが空のようです!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "クエリ" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "ルーチン" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4176,18 +4179,18 @@ msgstr "ルーチン" msgid "Events" msgstr "イベント" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "デザイナ" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "textarea の 1 行の文字数" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4202,34 +4205,34 @@ msgid "User accounts" msgstr "ユーザグループ" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "バイナリログ" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "レプリケーション" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "変数" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "文字セット" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "エンジン" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "プラグイン" @@ -4874,18 +4877,18 @@ msgstr "空間データ" msgid "Max: %s%s" msgstr "最長: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "統計データ" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4896,38 +4899,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL のメッセージ: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "EXPLAIN で確認" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "SQL の EXPLAIN 解析をスキップ" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP コードを省略" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "クエリを実行する" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP コードの作成" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -4935,69 +4938,69 @@ msgid "Edit inline" msgstr "インデックスを編集する" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "日" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %B %d 日 %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 日 %s 時間 %s 分 %s 秒" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "パラメータがありません:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "データベース「%s」に移動します。" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s の機能には既知のバグがあります。%s をご覧ください" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "クリックでオン/オフ切り替え" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "アップロードファイル:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ウェブサーバ上のアップロードディレクトリ %s から選択する:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "指定したアップロードディレクトリが利用できません。" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "アップロードファイルがありません" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "空にする" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "実行" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "ユーザ" @@ -5135,13 +5138,13 @@ msgstr "カラムを追加する" msgid "Attributes" msgstr "属性" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to read configuration file!" msgstr "設定ファイルの読み込みに失敗しました" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -5149,32 +5152,32 @@ msgstr "" "通常、これは構文エラーがあることを意味します。以下に示す全てのエラーを確認し" "てください。" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "デフォルトの設定を読み込めませんでした: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "サーバのインデックスが不正です: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "サーバ %1$s のホスト名が不正です。設定を確認してください。" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "サーバ" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "設定ファイルに無効な認証方法が指定されています:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5182,24 +5185,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s を %s 以降にアップグレードしてください。" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS 変数が書き換えられている可能性があります" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "なんらかの攻撃をされている可能性があります" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "グローバル変数から数値キーが検出されました" @@ -6051,7 +6054,7 @@ msgstr "1 行目にカラム名を追加する" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Columns enclosed with:" msgid "Columns enclosed with" @@ -6059,7 +6062,7 @@ msgstr "カラム囲み記号:" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Columns escaped with:" msgid "Columns escaped with" @@ -6079,12 +6082,12 @@ msgstr "カラムに含まれている CRLF 文字を取り除く" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "カラムの終端記号" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated with:" msgid "Lines terminated with" @@ -8643,7 +8646,7 @@ msgid "Table %s has been emptied." msgstr "テーブル %s を空にしました。" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8781,8 +8784,8 @@ msgid "No data to display" msgstr "データが存在しません" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8829,53 +8832,53 @@ msgstr[0] "" msgid "No column selected." msgstr "カラムが選択されていません。" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "カラムは正常に移動されました。" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "クエリエラー" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "変更" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "インデックス" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "空間" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "全文" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "件数集計" @@ -8885,7 +8888,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s 拡張がありません。PHP の設定をチェックしてみてください。" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "変更なし" @@ -9732,19 +9735,19 @@ msgstr "返り値が空でした (行数 0)。" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "以下に示す構成が、作成もしくは変更されました。ここで次のことが行えます。" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 #, 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:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9753,42 +9756,42 @@ msgid "" msgstr "" "「オプション」のリンクをクリックすることで対応する設定の変更が行えます。" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 #, fuzzy #| msgid "Edit structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "名前の後ろにある「構造」のリンクより構造の編集が行えます。" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "データベース %s に移動" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "%s に対する設定の変更を行います" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "テーブル %s に移動" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s の構造" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "ビュー %s に移動" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9838,48 +9841,48 @@ msgstr "または" msgid "web server upload directory:" msgstr "ウェブサーバ上のアップロードディレクトリ" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "編集/挿入" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "%s 行づつ挿入を行う" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "続いて" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "新しい行として挿入する" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "新しい行として挿入し、エラーは無視する" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "挿入クエリ文を表示する" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "前のページに戻る" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "新しいレコードを追加する" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "このページに戻る" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "次の行を編集する" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9889,7 +9892,7 @@ msgstr "" "次の値に移動するときは TAB キーを使ってください。CTRL+カーソルキーを使うと自" "由に移動できます" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9901,11 +9904,11 @@ msgstr "" msgid "Value" msgstr "値" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "SQL クエリを表示" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "id %1$d の行を挿入しました" @@ -10802,7 +10805,7 @@ msgstr "テーブルを修復する" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "データまたはテーブルの削除" @@ -10815,32 +10818,32 @@ msgid "Delete the table (DROP)" msgstr "テーブルを削除する (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "分析" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "確認" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "最適化" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "再構築" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "修復" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10868,37 +10871,37 @@ msgstr "パーティションを削除" msgid "Check referential integrity:" msgstr "参照整合性の確認:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "同じテーブルには移動できません!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "同じテーブルにはコピーできません!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "テーブル %s を %s に移動しました。" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "テーブル %s を %s にコピーしました。" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "テーブル名が空です!" @@ -11079,7 +11082,7 @@ msgstr "データのダンプオプション" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "テーブルのデータのダンプ" @@ -11103,21 +11106,21 @@ msgstr "定義" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "テーブルの構造" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "ビュー用の構造" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "ビュー用の代替構造" @@ -11223,7 +11226,7 @@ msgid "Database:" msgstr "データベース" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11334,7 +11337,7 @@ msgid "Data creation options" msgstr "生成オプション" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "挿入前にテーブルを空にする" @@ -11418,7 +11421,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11464,61 +11467,61 @@ msgstr "使用中" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "ダンプしたテーブルの制約" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "テーブルの制約" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "ダンプしたテーブルの制約" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "検索するテーブル:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "値がゼロのものに対して AUTO_INCREMENT を使用しない" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT 値を追加する" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "テーブルに含まれている MIME タイプ" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "テーブルのリレーション" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "ビュー用の構造" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "データ読み込みエラー:" @@ -11575,15 +11578,15 @@ msgstr "" msgid "Column names: " msgstr "カラム名: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV インポートのパラメータが不正です: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -11592,18 +11595,18 @@ msgstr "" "指定されたカラム (%s) は無効です。カラム名のスペルが正しいか、カンマで区切ら" "れていないか、引用符で囲まれていないかを確認してください。" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "CSV 入力の書式が不正です (行: %d)。" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "CSV 入力のカラム数が不正です (行: %d)。" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "このプラグインでは圧縮されたファイルのインポートはできません!" @@ -11611,7 +11614,7 @@ msgstr "このプラグインでは圧縮されたファイルのインポート msgid "MediaWiki Table" msgstr "MediaWiki テーブル" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." @@ -11625,9 +11628,9 @@ msgstr "パーセントは適切な小数に変換する (例:12.00% を .1 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "金額は単位を取り除く (例:$5.00 を 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -11635,7 +11638,7 @@ msgstr "" "指定された XML ファイルは、不完全もしくはフォーマットが正しくありません。問題" "を修正して再度試してみてください。" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11645,12 +11648,12 @@ msgstr "Open Document スプレッドシート" msgid "ESRI Shape File" msgstr "ESRI シェープファイル" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "ESRI シェープファイルをインポート中にエラーがありました: \"%s\"。" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 #, fuzzy #| msgid "" #| "You tried to import an invalid file or the imported file contains invalid " @@ -11662,12 +11665,12 @@ msgstr "" "無効なファイルもしくは無効なデータが含まれているファイルをインポートしようと" "しました。" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL の空間拡張が ESRI タイプをサポートしていません: \"%s\"。" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "The imported file does not contain any data" msgid "The imported file does not contain any data!" @@ -14842,15 +14845,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14865,17 +14864,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14897,23 +14897,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "開いているテーブルの数。" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "開いているテーブルの数。" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14946,17 +14946,17 @@ msgstr "イベント %1$s を作成しました。" msgid "Variable name was expected." msgstr "テーブル名のテンプレート" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "テーブルの先頭" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14979,19 +14979,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "行を削除しました" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15726,7 +15726,7 @@ msgstr "テーブルのダンプ (スキーマ) 表示" msgid "Invalid table name" msgstr "テーブル名が不正です" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16799,7 +16799,7 @@ msgid "at beginning of table" msgstr "テーブルの先頭" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16848,7 +16848,7 @@ msgstr "パーティション有り" msgid "Edit partitioning" msgstr "パーティションを削除" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "ビューを編集する" @@ -16975,11 +16975,11 @@ msgstr "ビューの名前" msgid "Column names" msgstr "カラム名" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "変更後のビュー名称" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Delete the table (DROP)" msgid "Delete the view (DROP)" diff --git a/po/ka.po b/po/ka.po index ebac7e5b7e..c4eb044367 100644 --- a/po/ka.po +++ b/po/ka.po @@ -1,9 +1,9 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Georgian %2$s" msgstr[0] "%s match(es) inside table %s" msgstr[1] "%s match(es) inside table %s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3896,16 +3898,16 @@ msgstr "ფაილები" msgid "Search this table" msgstr "მონაცემთა ბაზაში ძებნა" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "დასაწყისი" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3914,8 +3916,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "წინა" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -3924,8 +3926,8 @@ msgctxt "Next page" msgid "Next" msgstr "შემდეგი" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -4012,7 +4014,7 @@ msgstr "შეიძლება იყოს მიახლოებითი. #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "%s databases have been dropped successfully." msgid "Your SQL query has been executed successfully." @@ -4049,7 +4051,7 @@ msgid "Query took %01.4f seconds." msgstr "მოთხოვნას დასჭირდა %01.4f წმ" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -4057,7 +4059,7 @@ msgid "With selected:" msgstr "" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4143,17 +4145,17 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "შეიძლება იყოს მიახლოებითი. იხილეთ [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4219,8 +4221,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4268,15 +4270,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -4287,7 +4289,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4337,8 +4339,8 @@ msgid "Table" msgstr "ცხრილი" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4346,25 +4348,25 @@ msgstr "ცხრილი" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "ძებნა" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "ჩასმა" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4372,24 +4374,24 @@ msgid "Privileges" msgstr "პრივილეგიები" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "მოქმედებები" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4400,16 +4402,16 @@ msgstr "ტრიგერები" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "მოთხოვნა" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Routines" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4417,18 +4419,18 @@ msgstr "Routines" msgid "Events" msgstr "მოვლენები" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "შემქნელი" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "CHAR textarea columns" msgid "Central columns" msgstr "CHAR textarea columns" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4443,34 +4445,34 @@ msgid "User accounts" msgstr "მომხმარებელი" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "ბინარული ჟურნალი" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "რეპლიკაცია" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "ცვლადები" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "სიმბოლოთა ნაკრებები" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "ძრავები" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -5083,16 +5085,16 @@ msgstr "Log file count" msgid "Max: %s%s" msgstr "მაქს: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5103,38 +5105,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL-მა თქვა: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL-ის ახსნა" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP კოდის გარეშე" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "მოთხოვნის გაგზავნა" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP კოდის შექმნა" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5142,72 +5144,72 @@ msgid "Edit inline" msgstr "რედაქტირების რეჟიმი" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "კვი" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y, %I:%M %p" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s დღე, %s საათი, %s წუთი და %s წამი" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Routines" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, 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:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 #, fuzzy #| msgid "There are no configured servers" msgid "There are no files to upload!" msgstr "There are no configured servers" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "ცარიელი" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 #, fuzzy #| msgid "User" msgid "Users" @@ -5351,46 +5353,46 @@ msgstr "%s ველის დამატება" msgid "Attributes" msgstr "ატრიბუტები" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Failed to read configuration file!" msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Could not load default configuration from: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Invalid server index: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "სერვერი" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5398,24 +5400,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6231,7 +6233,7 @@ msgstr "Put fields names in the first row" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6239,7 +6241,7 @@ msgstr "Fields enclosed by" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6261,14 +6263,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Lines terminated by" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8549,7 +8551,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "Field %s has been dropped." msgid "View %s has been dropped." @@ -8689,8 +8691,8 @@ msgid "No data to display" msgstr "მონაცემთა ბაზები არაა" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8735,57 +8737,57 @@ msgstr[0] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Ignore errors" msgid "Query error" msgstr "შეცდომების იგნორირება" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "შეცვლა" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "ინდექსი" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Fulltext" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Session value" msgid "Distinct values" @@ -8797,7 +8799,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "ცვლილების გარეშე" @@ -9611,57 +9613,57 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "მონაცემთა ბაზები არაა" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Missing data for %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "მონაცემთა ბაზები არაა" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "მხოლოდ სტრუქტურა" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Export defaults" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9712,57 +9714,57 @@ msgstr "ან" msgid "web server upload directory:" msgstr "web server upload directory" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "ჩასმა" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, 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:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "და შემდეგ" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "ახალი სტრიქონის ჩამატება" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 #, fuzzy msgid "Show insert query" msgstr "Showing SQL query" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "წინა გვერდზე დაბრუნება" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "სხვა ახალი სტრიქონის დამატება" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "ამ გვერდზე დაბრუნება" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "შემდეგი სტრიქონის რედაქტირება" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9774,11 +9776,11 @@ msgstr "" msgid "Value" msgstr "მნიშვნელობა" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "ჩამატებული სტრიქონის id: %1$d" @@ -10666,7 +10668,7 @@ msgstr "ცხრილის აღდგენა" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10681,32 +10683,32 @@ msgid "Delete the table (DROP)" msgstr "მაგიდების წაშლა (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "შემოწმება" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "ოპტიმიზება" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "აღდგენა" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10734,37 +10736,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "ცხრილის სახელი ცარიელია!" @@ -10955,7 +10957,7 @@ msgstr "მონაცემთა ბაზის ჩვენების პ #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10981,21 +10983,21 @@ msgstr "აღწერილობა" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "სტრუქტურა ხედისათვის" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -11113,7 +11115,7 @@ msgid "Database:" msgstr "მონაცემთა ბაზა" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11228,7 +11230,7 @@ msgid "Data creation options" msgstr "გარდაქმნის პარამეტრები" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11297,7 +11299,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11347,61 +11349,61 @@ msgstr "" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "ცხრილ(ებ)ში:" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "ცხრილ(ებ)ში:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Add AUTO_INCREMENT value" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Add AUTO_INCREMENT value" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "სტრუქტურა ხედისათვის" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11458,34 +11460,34 @@ msgstr "" msgid "Column names: " msgstr "სვეტების სახელები" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Invalid field count in CSV input on line %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11493,7 +11495,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." @@ -11507,15 +11509,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11525,23 +11527,23 @@ msgstr "Open Document Spreadsheet" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -14630,15 +14632,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "Remove selected users" @@ -14653,17 +14651,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "Remove selected users" msgid "An alias was expected." @@ -14685,19 +14684,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14726,17 +14725,17 @@ msgstr "Table %1$s has been created." msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "ცხრილის დასაწყისში" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14757,17 +14756,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "სტრიქონი წაიშალა" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15493,7 +15492,7 @@ msgstr "" msgid "Invalid table name" msgstr "ცხრილის არასწორი სახელი" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16627,7 +16626,7 @@ msgid "at beginning of table" msgstr "ცხრილის დასაწყისში" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16676,7 +16675,7 @@ msgstr "დაყოფილი" msgid "Edit partitioning" msgstr "დაყოფილი" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16811,12 +16810,12 @@ msgstr "VIEW name" msgid "Column names" msgstr "სვეტების სახელები" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Rename table to" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Delete the table (DROP)" msgid "Delete the view (DROP)" diff --git a/po/kk.po b/po/kk.po index 719fbb3e5b..cd43011d2d 100644 --- a/po/kk.po +++ b/po/kk.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kazakh %2$s" msgstr[0] "%1$s кестедегi сәйкестiк %2$s" msgstr[1] "%1$s кестедегi сәйкестiктер %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3633,30 +3636,30 @@ msgstr "Сүзгі" msgid "Search this table" msgstr "Дерекқорынан іздеу" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "" @@ -3731,7 +3734,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3767,7 +3770,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3775,7 +3778,7 @@ msgid "With selected:" msgstr "Белгi соғылғандарды:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3857,15 +3860,15 @@ msgstr "Файлды жүктеу, оның кеңейтілім салдары msgid "Unknown error in file upload." msgstr "Файлды жүктеу кезіндегі белгісіз қате." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Жүктелген файлды ауыстыру кезіндегі қате." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -3931,8 +3934,8 @@ msgid "Keyname" msgstr "Индекс атауы" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3980,15 +3983,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "Индекс %s жойылған болатын." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Жою" @@ -3999,7 +4002,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4049,8 +4052,8 @@ msgid "Table" msgstr "Кесте" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4058,25 +4061,25 @@ msgstr "Кесте" msgid "SQL" msgstr "" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Іздеу" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4084,24 +4087,24 @@ msgid "Privileges" msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4112,16 +4115,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4129,18 +4132,18 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add columns" msgid "Central columns" msgstr "Бағаналар қосу" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4153,34 +4156,34 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Репликация" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4768,16 +4771,16 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4788,38 +4791,38 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Created" msgid "Without PHP code" msgstr "Құрылған" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Сұранысты жіберу" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Created" msgid "Create PHP code" msgstr "Құрылған" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit Index" msgctxt "Inline edit query" @@ -4827,67 +4830,67 @@ msgid "Edit inline" msgstr "Индексті өзгерту" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Тазарту" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "" @@ -5023,44 +5026,44 @@ msgstr "Бағандарды Қосу/Өшіру" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Failed to read configuration file!" msgstr "Локальды монитордың баптауы үйлеспеуде" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server:" msgid "Server %d" msgstr "Сервер:" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5068,24 +5071,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5764,13 +5767,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5788,12 +5791,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -7799,7 +7802,7 @@ msgid "Table %s has been emptied." msgstr "%s кестесі аластанды." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format msgid "View %s has been dropped." msgstr "%s көрсетілімі жойылған" @@ -7934,8 +7937,8 @@ msgid "No data to display" msgstr "Мәліметтер жоқ" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7983,52 +7986,52 @@ msgstr[1] "" msgid "No column selected." msgstr "Бірде-бір қатар таңдалынбады" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Өзгерту" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -8040,7 +8043,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8793,54 +8796,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8886,53 +8889,53 @@ msgstr "Немесе" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8944,11 +8947,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9812,7 +9815,7 @@ msgstr "Кестені калпына келтіру" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9825,32 +9828,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9878,35 +9881,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -10078,7 +10081,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10102,21 +10105,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10214,7 +10217,7 @@ msgid "Database:" msgstr "Дерекқор" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Database" msgid "Data:" @@ -10315,7 +10318,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10384,7 +10387,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10430,60 +10433,60 @@ msgstr "қолданыста" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for dumped tables" msgstr "Кесте бойынша:" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Кесте бойынша:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT қосу" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT қосу" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10533,33 +10536,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10567,7 +10570,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -10580,15 +10583,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10596,23 +10599,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -13422,15 +13425,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No rows selected" @@ -13445,17 +13444,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No rows selected" msgid "An alias was expected." @@ -13477,19 +13477,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "Table %s has been emptied." msgid "A rename operation was expected." @@ -13517,17 +13517,17 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "Replace table prefix" msgid "Unexpected beginning of statement." msgstr "Кестениң префиксін ауыстыру" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13548,17 +13548,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "Table %s has been emptied." msgid "At least one column definition was expected." msgstr "%s кестесі аластанды" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14236,7 +14236,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15239,7 +15239,7 @@ msgid "at beginning of table" msgstr "Кестениң префиксін ауыстыру" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -15282,7 +15282,7 @@ msgstr "Сипаттама" msgid "Edit partitioning" msgstr "Индексті өзгерту" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -15410,11 +15410,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Қойылымның атын өзгерту" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Drop the database (DROP)" msgid "Delete the view (DROP)" diff --git a/po/km.po b/po/km.po index 8100f4452a..2b40ed0398 100644 --- a/po/km.po +++ b/po/km.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Central Khmer %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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,30 +3487,30 @@ msgstr "ត្រង​ជួរ​ដេក" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "" @@ -3581,7 +3583,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3614,7 +3616,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3622,7 +3624,7 @@ msgid "With selected:" msgstr "" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3702,15 +3704,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3774,8 +3776,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3823,15 +3825,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "លុប" @@ -3842,7 +3844,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3892,8 +3894,8 @@ msgid "Table" msgstr "តារាង" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3901,25 +3903,25 @@ msgstr "តារាង" msgid "SQL" msgstr "" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3927,24 +3929,24 @@ msgid "Privileges" msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3955,16 +3957,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3972,16 +3974,16 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3994,34 +3996,34 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4587,16 +4589,16 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4607,36 +4609,36 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Created" msgid "Without PHP code" msgstr "បានបង្កើត" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Created" msgid "Create PHP code" msgstr "បានបង្កើត" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit Index" msgctxt "Inline edit query" @@ -4644,67 +4646,67 @@ msgid "Edit inline" msgstr "កែ​សន្ទស្សន៍" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "" @@ -4836,41 +4838,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4878,24 +4880,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5564,13 +5566,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5588,12 +5590,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -7542,7 +7544,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "" @@ -7674,8 +7676,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7712,52 +7714,52 @@ msgstr[0] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7767,7 +7769,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8506,54 +8508,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8599,53 +8601,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8657,11 +8659,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9490,7 +9492,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9503,32 +9505,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9556,35 +9558,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9753,7 +9755,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9777,21 +9779,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9881,7 +9883,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9974,7 +9976,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10043,7 +10045,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10086,52 +10088,52 @@ msgstr "កំពុង​ប្រើ" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10179,33 +10181,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10213,7 +10215,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -10226,15 +10228,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10242,23 +10244,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -13003,15 +13005,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -13026,17 +13024,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -13058,19 +13057,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The bookmark has been deleted." msgid "A rename operation was expected." @@ -13098,15 +13097,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13127,17 +13126,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The bookmark has been deleted." msgid "At least one column definition was expected." msgstr "បាន​លុប​ចំណាំ។" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13802,7 +13801,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14733,7 +14732,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14770,7 +14769,7 @@ msgstr "ការបង្កើត៖" msgid "Edit partitioning" msgstr "កែ​សន្ទស្សន៍" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14889,11 +14888,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/kn.po b/po/kn.po index c2b9d57601..85c0939310 100644 --- a/po/kn.po +++ b/po/kn.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-07-24 13:05+0200\n" "Last-Translator: Shameem Ahmed A Mulla \n" "Language-Team: Kannada %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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,30 +3331,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "" @@ -3422,7 +3425,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3455,7 +3458,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3463,7 +3466,7 @@ msgid "With selected:" msgstr "" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3539,15 +3542,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3611,8 +3614,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3660,15 +3663,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -3679,7 +3682,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3729,8 +3732,8 @@ msgid "Table" msgstr "ಟೇಬಲ್" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3738,25 +3741,25 @@ msgstr "ಟೇಬಲ್" msgid "SQL" msgstr "" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3764,24 +3767,24 @@ msgid "Privileges" msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3792,16 +3795,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3809,16 +3812,16 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3831,34 +3834,34 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4424,16 +4427,16 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4444,102 +4447,102 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Created" msgid "Without PHP code" msgstr "ರಚಿಸಲಾಗಿದೆ" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Created" msgid "Create PHP code" msgstr "ರಚಿಸಲಾಗಿದೆ" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "ರ" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "ಬಳಕೆದಾರರು" @@ -4665,41 +4668,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4707,24 +4710,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5381,13 +5384,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5405,12 +5408,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -7349,7 +7352,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "" @@ -7479,8 +7482,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7518,52 +7521,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7573,7 +7576,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8294,54 +8297,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8387,53 +8390,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8445,11 +8448,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9269,7 +9272,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9282,32 +9285,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9333,35 +9336,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9530,7 +9533,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9554,21 +9557,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9658,7 +9661,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9750,7 +9753,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9819,7 +9822,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9861,52 +9864,52 @@ msgstr "ಬಳಕೆಯಲ್ಲಿ" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -9954,33 +9957,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -9988,7 +9991,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -10001,15 +10004,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10017,23 +10020,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -12750,15 +12753,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "" @@ -12771,17 +12770,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "" @@ -12799,19 +12799,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "" @@ -12837,15 +12837,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12866,15 +12866,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13532,7 +13532,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14437,7 +14437,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14472,7 +14472,7 @@ msgstr "ಸೃಷ್ಟಿ:" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14589,11 +14589,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/ko.po b/po/ko.po index 22750d682f..f6fe207b07 100644 --- a/po/ko.po +++ b/po/ko.po @@ -1,13 +1,13 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-02-08 15:17+0000\n" "Last-Translator: Seongki Shin \n" -"Language-Team: Korean " -"\n" +"Language-Team: Korean \n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,7 +47,7 @@ msgid "Table comments:" msgstr "테이블 설명:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -101,7 +101,7 @@ msgstr "종류" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -163,12 +163,12 @@ msgid "Comments" msgstr "설명" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "기본" @@ -201,12 +201,12 @@ msgstr "아니오" #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -251,8 +251,8 @@ msgid "Tables" msgstr "테이블" #: db_export.php:66 libraries/Menu.php:323 libraries/Menu.php:430 -#: libraries/Util.php:3402 libraries/Util.php:3412 libraries/Util.php:3418 -#: libraries/Util.php:3698 libraries/Util.php:4335 libraries/Util.php:4352 +#: libraries/Util.php:3409 libraries/Util.php:3419 libraries/Util.php:3425 +#: libraries/Util.php:3705 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/central_columns.lib.php:725 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,7 +260,7 @@ msgstr "테이블" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -465,7 +465,7 @@ msgstr "공간 데이터를 추가" #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -495,7 +495,7 @@ msgstr "공간 데이터를 추가" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "실행" @@ -523,7 +523,7 @@ msgstr "실패함" msgid "Incomplete params" msgstr "불완전한 인자" -#: import.php:184 +#: import.php:186 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -532,15 +532,15 @@ msgstr "" "너무 큰 파일을 업로드하려고 시도했습니다. 제한을 해결하기 위해서는 " "%sdocumentation%s를 참조하여 주십시오." -#: import.php:360 import.php:665 +#: import.php:362 import.php:667 msgid "Showing bookmark" msgstr "북마크 보이기" -#: import.php:376 import.php:661 +#: import.php:378 import.php:663 msgid "The bookmark has been deleted." msgstr "북마크를 제거했습니다." -#: import.php:474 +#: import.php:476 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -549,12 +549,12 @@ msgstr "" "업로드된 파일을 이동할 수 없습니다. 서버 설정에 open_basedir이 활성화되어 있" "지만, %s 디렉토리(임시 파일 저장용)에 접근 권한이 없습니다." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:492 import.php:569 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "파일을 읽을 수 없습니다!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:503 import.php:518 import.php:543 import.php:558 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -563,7 +563,7 @@ msgstr "" "지원되지 않는 압축(%s)형식의 파일을 업로드하려고 시도했습니다. 지원이 구현되" "지 않았거나 설정에서 사용하지 않게 되어있습니다." -#: import.php:574 +#: import.php:576 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -572,22 +572,24 @@ msgstr "" "가져올 데이터가 없습니다. 파일이 지정되지 않았거나 파일 크기가 PHP 설정의 최" "대 파일 크기를 초과했을 수 있습니다. [doc@faq1-16]FAQ 1.16[/doc] 참조." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:628 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "" "가져오기 플러그인을 로드할 수 없습니다. 올바로 설치되었는지 확인해주세요!" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:670 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "북마크 %s가 생성되었습니다." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "가져오기를 성공적으로 마쳤습니다. %d 쿼리가 실행되었습니다." +#: import.php:680 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "가져오기를 성공적으로 마쳤습니다. %d 쿼리가 실행되었습니다." -#: import.php:705 +#: import.php:711 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -596,7 +598,7 @@ msgstr "" "스크립트 시간 제한이 초과되었습니다. 이어서 하시려면 같은 파일을 다시 전송해 " "주세요 (%s, %s)." -#: import.php:715 +#: import.php:721 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -609,7 +611,7 @@ msgid "Could not load the progress of the import." msgstr "가져오기에 필요한 절차를 로드할 수 없습니다." #: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: libraries/Util.php:802 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "뒤로" @@ -704,10 +706,11 @@ msgstr "PHP 정보 보기" msgid "Version information:" msgstr "버전 정보:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:449 libraries/Util.php:516 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "문서" @@ -979,7 +982,7 @@ msgid "Save & close" msgstr "저장 & 닫기" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "초기화" @@ -1036,7 +1039,7 @@ msgstr "인덱스에 추가할 열을 선택해주세요." msgid "You have to add at least one column." msgstr "적어도 한 개 이상의 컬럼을 추가해야 합니다." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:132 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 @@ -1051,7 +1054,7 @@ msgstr "쿼리 시뮬레이션 하기" msgid "Matched rows:" msgstr "일치하는 행:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:137 libraries/Util.php:703 msgid "SQL query:" msgstr "SQL 질의:" @@ -1110,12 +1113,12 @@ msgid "Other" msgstr "기타" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:160 libraries/Util.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:162 libraries/Util.php:1500 msgid "." msgstr "." @@ -1220,40 +1223,40 @@ msgid "Processes" msgstr "프로세스" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:202 libraries/Util.php:1442 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:203 libraries/Util.php:1444 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:204 libraries/Util.php:1446 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:205 libraries/Util.php:1448 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:206 libraries/Util.php:1450 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:207 libraries/Util.php:1452 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:208 libraries/Util.php:1454 msgid "EiB" msgstr "EB" @@ -1271,7 +1274,7 @@ msgstr "질의" msgid "Traffic" msgstr "소통량" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4333 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "설정" @@ -1286,7 +1289,7 @@ msgstr "하나 이상의 변수를 시리즈에 추가하십시오!" #: js/messages.php:219 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1487,7 +1490,7 @@ msgstr "분석중…" msgid "Explain output" msgstr "SQL 해석" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4329 #: 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:91 libraries/tracking.lib.php:284 @@ -1584,8 +1587,8 @@ msgid "" msgstr "가져온 설정과 차트 격자를 그리는데 실패했습니다. 기본 설정으로 적용중…" #: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 -#: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 -#: libraries/Util.php:4357 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:581 libraries/Util.php:4332 libraries/Util.php:4347 +#: libraries/Util.php:4364 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 #: libraries/server_status_monitor.lib.php:313 prefs_manage.php:237 #: setup/frames/menu.inc.php:26 @@ -1741,7 +1744,7 @@ msgstr "데이터베이스 복사 중" msgid "Changing charset" msgstr "문자셋 변경 중" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:377 libraries/Util.php:3291 msgid "Enable foreign key checks" msgstr "외래 키(foreign key) 점검 사용" @@ -1775,9 +1778,9 @@ msgstr "저장 함수의 정의는 RETURN문을 포함해야 합니다!" #: js/messages.php:392 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 -#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 -#: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 -#: libraries/Util.php:4356 libraries/config/messages.inc.php:255 +#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3712 +#: libraries/Util.php:3713 libraries/Util.php:4331 libraries/Util.php:4346 +#: libraries/Util.php:4363 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:168 libraries/rte/rte_list.lib.php:149 #: libraries/server_privileges.lib.php:2513 #: libraries/server_privileges.lib.php:2592 @@ -1826,8 +1829,8 @@ msgstr "질의 상자 보이기" #: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 -#: libraries/Util.php:3703 libraries/Util.php:3704 +#: libraries/Index.php:721 libraries/Util.php:732 libraries/Util.php:1242 +#: libraries/Util.php:3710 libraries/Util.php:3711 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 #: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:182 @@ -2006,7 +2009,7 @@ msgid "No dependencies selected!" msgstr "의존성이 선택되지 않았습니다!" #: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2089,7 +2092,7 @@ msgid "Data point content" msgstr "데이터 포인트 내용" #: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "무시" @@ -2325,7 +2328,7 @@ msgid "Select database first" msgstr "데이터베이스를 먼저 선택하세요" #: js/messages.php:599 libraries/DisplayResults.php:5029 -#: libraries/Util.php:4217 +#: libraries/Util.php:4224 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" @@ -2594,63 +2597,63 @@ msgid "December" msgstr "12월" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:773 libraries/Util.php:1664 msgid "Jan" msgstr "1월" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:775 libraries/Util.php:1666 msgid "Feb" msgstr "2월" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:777 libraries/Util.php:1668 msgid "Mar" msgstr "3월" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:779 libraries/Util.php:1670 msgid "Apr" msgstr "4월" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:781 libraries/Util.php:1672 msgctxt "Short month name" msgid "May" msgstr "5월" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:783 libraries/Util.php:1674 msgid "Jun" msgstr "6월" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:785 libraries/Util.php:1676 msgid "Jul" msgstr "7월" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:787 libraries/Util.php:1678 msgid "Aug" msgstr "8월" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:789 libraries/Util.php:1680 msgid "Sep" msgstr "9월" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:791 libraries/Util.php:1682 msgid "Oct" msgstr "10월" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:793 libraries/Util.php:1684 msgid "Nov" msgstr "11월" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:795 libraries/Util.php:1686 msgid "Dec" msgstr "12월" @@ -2688,32 +2691,32 @@ msgid "Sun" msgstr "일" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:816 libraries/Util.php:1691 msgid "Mon" msgstr "월" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:818 libraries/Util.php:1693 msgid "Tue" msgstr "화" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:820 libraries/Util.php:1695 msgid "Wed" msgstr "수" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:822 libraries/Util.php:1697 msgid "Thu" msgstr "목" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:824 libraries/Util.php:1699 msgid "Fri" msgstr "금" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:826 libraries/Util.php:1701 msgid "Sat" msgstr "토" @@ -2854,9 +2857,9 @@ msgstr "올바른 날짜 또는 시간을 입력하세요" msgid "Please enter a valid HEX input" msgstr "올바른 HEX값을 입력하세요" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:679 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "오류" @@ -2908,17 +2911,17 @@ msgstr "" "%1$s 행에 알 수 없는 문자가 있습니다. 탭 문자가 있어야 하지만, \"%2$s\"가 있" "습니다." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "이미 존재하고 있는 환경설정 파일 (%s) 을 읽을 수 없습니다." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "설정 파일에 잘못된 권한이 지정되어있습니다. 익명 쓰기 권한이면 안됩니다!" -#: libraries/Config.php:1519 +#: libraries/Config.php:1528 msgid "Font size" msgstr "글꼴 크기" @@ -2987,7 +2990,7 @@ msgstr "" msgid "Explain" msgstr "설명" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1328 libraries/sql.lib.php:228 msgid "Profiling" msgstr "프로파일링" @@ -3021,8 +3024,8 @@ msgid "History" msgstr "최근 기록" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3115,7 +3118,7 @@ msgstr "추적 숨기기" msgid "Count:" msgstr "개수:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:339 libraries/Util.php:1298 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 @@ -3350,9 +3353,9 @@ msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%2$s 에서 %1$s 건 일치" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3409,30 +3412,30 @@ msgstr "행 필터링" msgid "Search this table" msgstr "현재 테이블 검색" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "처음" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "이전" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "다음" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "마지막" @@ -3505,7 +3508,7 @@ msgstr "근사값입니다. [doc@faq3-11]FAQ 3.11[/doc]를 참조하세요." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "쿼리가 성공적으로 실행되었습니다." @@ -3539,7 +3542,7 @@ msgid "Query took %01.4f seconds." msgstr "질의 실행시간 %01.4f 초." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3547,7 +3550,7 @@ msgid "With selected:" msgstr "선택한 것을:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3625,16 +3628,16 @@ msgstr "확장프로그램 때문에 파일 업로드가 중지되었습니다." msgid "Unknown error in file upload." msgstr "파일 업로드 중에 알 수 없는 오류가 발생했습니다." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "업로드된 파일을 이동시킬 수 없습니다. [doc@faq1-11]FAQ 1.11[/doc] 참조." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "업로드된 파일을 이동하는 중에 오류가 발생하였습니다." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "업로드한 파일을 읽을 수 없습니다." @@ -3698,8 +3701,8 @@ msgid "Keyname" msgstr "키 이름" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3747,15 +3750,15 @@ msgstr "기본 키를 제거했습니다." msgid "Index %s has been dropped." msgstr "인덱스 %s 를 제거했습니다." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "삭제" @@ -3767,7 +3770,7 @@ msgid "" msgstr "" "인덱스 %1$s와 %2$s는 동일한 것으로, 두 가지 중 하나는 제거해도 상관없습니다." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3817,8 +3820,8 @@ msgid "Table" msgstr "테이블" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3826,25 +3829,25 @@ msgstr "테이블" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "검색" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "삽입" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3852,24 +3855,24 @@ msgid "Privileges" msgstr "사용권한" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "테이블 작업" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "SQL 명령어 트래킹" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3880,16 +3883,16 @@ msgstr "트리거" msgid "Database seems to be empty!" msgstr "데이터베이스가 비어있는 것 같습니다!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "질의 마법사" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "루틴" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3897,16 +3900,16 @@ msgstr "루틴" msgid "Events" msgstr "이벤트" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "디자이너" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "중심 열" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3919,34 +3922,34 @@ msgid "User accounts" msgstr "사용자 계정" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "바이너리 로그" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "복제" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "환경설정값" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "문자셋" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "엔진" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "플러그인" @@ -4557,16 +4560,16 @@ msgstr "공간(좌표)형" msgid "Max: %s%s" msgstr "최대: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4577,102 +4580,102 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL 메시지: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL 해석" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "SQL 해석 생략" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP 코드 없이 보기" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "질의 실행" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "PHP 코드 보기" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "인라인 편집" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "일" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%y-%m-%d %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s일 %s시간 %s분 %s초" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "매개 변수 누락:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "데이터베이스 \"%s\" 로 이동." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 기능은 알려진 버그가 있습니다. %s 문서를 참조하십시오" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "토글하려면 클릭" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "업로드 파일:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "웹 서버 업로드 디렉토리중 %s에서 선택:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "설정한 업로드 디렉토리에 접근할 수 없습니다." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "업로드할 파일이 없습니다!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "비우기" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "실행하기" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "사용자" @@ -4798,11 +4801,11 @@ msgstr "새 컬럼 추가" msgid "Attributes" msgstr "보기" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "설정 파일을 읽는데 실패했습니다!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4810,31 +4813,31 @@ msgstr "" "일반적으로 이것은 문법 오류가 있음을 의미합니다. 다음의 모든 오류를 확인하십" "시오." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "기본 설정을 가져올 수 없습니다: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "잘못된 서버 인덱스: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "서버 %1$s의 호스트 이름이 잘못되었습니다. 설정을 확인하십시오." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "서버 %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "설정 파일에 잘못된 인증 방식 설정되어 있습니다.:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4842,24 +4845,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s를 %s 이상으로 업그레이드 하십시오." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "오류: 토큰 불일치" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS 덮어쓰기 시도" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "어떤 공격을 받고있을 가능성이 있습니다" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "전역 변수에서 숫자로 된 키가 발견 되었습니다" @@ -5576,13 +5579,13 @@ msgstr "첫 줄에 열 이름을 넣기" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "열을 시작하는 문자" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "특수 문자 구분에 사용된 문자" @@ -5600,12 +5603,12 @@ msgstr "열 내의 CRLF 문자를 제거하기" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "열을 종료하는 문자" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "행을 종료하는 문자" @@ -7739,7 +7742,7 @@ msgid "Table %s has been emptied." msgstr "테이블 %s 을 비웠습니다." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -7874,8 +7877,8 @@ msgid "No data to display" msgstr "표시할 데이터 없음" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7917,53 +7920,53 @@ msgstr[0] "'%s'라는 컬럼명은 MySQL 예약어입니다." msgid "No column selected." msgstr "선택된 열이 없습니다." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "컬럼을 이동했습니다." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "질의 오류" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "변경" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "인덱스" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Fulltext" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "중복되지 않은 값" @@ -7973,7 +7976,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s 확장기능이 설치되지 않았습니다. PHP의 설정을 확인하십시오." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "변화 없음" @@ -8760,54 +8763,54 @@ msgstr "결과값이 없습니다. (빈 레코드 리턴)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "데이터베이스 이동: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "%s 에 대한 설정 변경" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "테이블 이동: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s 의 구조" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "뷰로 이동: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8853,48 +8856,48 @@ msgstr "또는" msgid "web server upload directory:" msgstr "웹 서버 업로드 디렉터리:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "편집/삽입" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "%s 개의 행을 추가로 삽입" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "이어서" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "새 행을 삽입합니다" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "새 행을 삽입하고 에러를 무시합니다" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "삽입 쿼리 보기" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "이전 페이지로 되돌아가기" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "새 행(레코드) 삽입하기" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "이 페이지로 되돌아가기" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "다음 행 수정" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -8902,7 +8905,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8914,11 +8917,11 @@ msgstr "TAB 키나 CTRL+화살표로 값 사이를 이동할 수 있습니다" msgid "Value" msgstr "값" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "SQL 쿼리 보기" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "삽입된 행의 id: %1$d" @@ -9767,7 +9770,7 @@ msgstr "테이블 복구" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "데이터나 테이블 삭제" @@ -9780,32 +9783,32 @@ msgid "Delete the table (DROP)" msgstr "테이블 삭제(DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "분석" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "검사" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "옵티마이저" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "리빌드" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "복구" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9833,37 +9836,37 @@ msgstr "파티셔닝 삭제" msgid "Check referential integrity:" msgstr "referential 무결성 검사:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "같은 테이블이 있어 옮길 수 없음!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "같은 테이블이 있어 복사할 수 없음!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "테이블 %s 을 %s 로 옮겼습니다." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "%s 테이블이 %s 으로 복사되었습니다." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "테이블명이 없습니다!" @@ -10044,7 +10047,7 @@ msgstr "데이터 덤프 옵션" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "테이블의 덤프 데이터" @@ -10068,21 +10071,21 @@ msgstr "정의" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "테이블 구조" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "뷰 구조" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10174,7 +10177,7 @@ msgid "Database:" msgstr "데이터베이스:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "데이터:" @@ -10277,7 +10280,7 @@ msgid "Data creation options" msgstr "데이터 생성 옵션" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "삽입 전에 테이블 비우기" @@ -10354,7 +10357,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10398,53 +10401,53 @@ msgstr "사용중" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "덤프된 테이블의 제약사항" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "테이블의 제약사항" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "덤프된 테이블의 인덱스" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "테이블의 인덱스" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "덤프된 테이블의 AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "테이블의 AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "뷰 구조" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "데이터 읽기 오류:" @@ -10494,15 +10497,15 @@ msgstr "" msgid "Column names: " msgstr "열(컬럼) 이름: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV를 가져오기 위한 파라미터가 잘못됨: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10511,20 +10514,20 @@ msgstr "" "지정한 컬럼(%s)이 잘못되었습니다. 각 컬럼의 이름에 대해, 오타가 없는지, 콤마" "로 구분되어 있는지 확인하시고, 컬럼 이름을 따옴표로 묶지 않도록 하세요." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, fuzzy, php-format #| msgid "Invalid rule declaration on line %s." msgid "Invalid format of CSV input on line %d." msgstr "%s 행에 잘못된 규칙 선언" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid rule declaration on line %s." msgid "Invalid column count in CSV input on line %d." msgstr "%s 행에 잘못된 규칙 선언" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "이 플러그인은 압축파일의 가져오기를 지원하지 않습니다!" @@ -10532,7 +10535,7 @@ msgstr "이 플러그인은 압축파일의 가져오기를 지원하지 않습 msgid "MediaWiki Table" msgstr "MediaWiki 테이블" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "잘못된 mediawiki 입력 행:
%s." @@ -10545,9 +10548,9 @@ msgstr "퍼센테이지를 소수로 변경(예: 12.00% 를 .12 로)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "통화 단위 제거 (예: $5.00 를 5.00 로)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10555,7 +10558,7 @@ msgstr "" "해당 XML 파일의 포멧이 잘못되었거나 미완성 상태입니다. 문제점을 수정한 후 재" "시도 하세요." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Open Document 스프레드시트 형식을 해석할 수 없습니다!" @@ -10563,24 +10566,24 @@ msgstr "Open Document 스프레드시트 형식을 해석할 수 없습니다!" msgid "ESRI Shape File" msgstr "ESRI Shapefile" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "ESRI 형태의 파일을 가져오는 도중 에러가 발생했습니다: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" "가져오기한 파일이 잘못된 파일이거나 파일이 잘못된 값을 포함하고 있습니다!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "가져온 파일에 아무런 데이터도 없습니다!" @@ -13481,15 +13484,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -13504,17 +13503,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -13536,23 +13536,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "열린 테이블 수." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "열린 테이블 수." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -13585,17 +13585,17 @@ msgstr "이벤트 %1$s 를 생성했습니다." msgid "Variable name was expected." msgstr "파일명 템플릿" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "테이블의 처음" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13618,19 +13618,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "행을 삭제 하였습니다." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14332,7 +14332,7 @@ msgstr "테이블의 덤프(스키마) 데이터 보기" msgid "Invalid table name" msgstr "잘못된 테이블 이름" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15345,7 +15345,7 @@ msgid "at beginning of table" msgstr "테이블의 처음" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15392,7 +15392,7 @@ msgstr "파티션 있음" msgid "Edit partitioning" msgstr "파티셔닝 삭제" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "뷰 편집" @@ -15517,11 +15517,11 @@ msgstr "뷰 이름" msgid "Column names" msgstr "열(칼럼) 이름" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "뷰 이름 변경" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "뷰 삭제(DROP)" diff --git a/po/ksh.po b/po/ksh.po index 21cb5815be..ce0516c2fd 100644 --- a/po/ksh.po +++ b/po/ksh.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2014-10-02 15:09+0200\n" "Last-Translator: Purodha \n" "Language-Team: Colognian %s:" msgstr "" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "" @@ -4700,41 +4704,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4742,24 +4746,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5426,13 +5430,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5450,12 +5454,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -7395,7 +7399,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "" @@ -7528,8 +7532,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7568,52 +7572,52 @@ msgstr[2] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7623,7 +7627,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8354,54 +8358,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8447,53 +8451,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8505,11 +8509,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9333,7 +9337,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9346,32 +9350,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9397,35 +9401,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9594,7 +9598,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9618,21 +9622,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9722,7 +9726,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9814,7 +9818,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9883,7 +9887,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9925,52 +9929,52 @@ msgstr "weed jebruch" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10018,33 +10022,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10052,7 +10056,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -10065,15 +10069,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10081,23 +10085,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -12814,15 +12818,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "" @@ -12835,17 +12835,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "" @@ -12863,19 +12864,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "" @@ -12901,15 +12902,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12930,15 +12931,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13596,7 +13597,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14499,7 +14500,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14533,7 +14534,7 @@ msgstr "Ein Tabäll" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14648,11 +14649,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/ky.po b/po/ky.po index 9f34b4a7c1..64285f45b0 100644 --- a/po/ky.po +++ b/po/ky.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kyrgyz %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3378,30 +3381,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "" @@ -3476,7 +3479,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3509,7 +3512,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3517,7 +3520,7 @@ msgid "With selected:" msgstr "" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3598,15 +3601,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3670,8 +3673,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3719,15 +3722,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Алып сал" @@ -3738,7 +3741,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3788,8 +3791,8 @@ msgid "Table" msgstr "Жадыбал" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3797,25 +3800,25 @@ msgstr "Жадыбал" msgid "SQL" msgstr "" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3823,24 +3826,24 @@ msgid "Privileges" msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3851,16 +3854,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3868,18 +3871,18 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Value for the column \"%s\"" msgid "Central columns" msgstr "\"%s\" мамычанын мааниси" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3892,34 +3895,34 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4485,16 +4488,16 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4505,102 +4508,102 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Created" msgid "Without PHP code" msgstr "Жасалды" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Created" msgid "Create PHP code" msgstr "Жасалды" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "" @@ -4732,41 +4735,41 @@ msgstr "\"%s\" мамычанын мааниси" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4774,24 +4777,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5460,13 +5463,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5484,12 +5487,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -7437,7 +7440,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "View %s has been dropped." @@ -7571,8 +7574,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7612,52 +7615,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7667,7 +7670,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8404,54 +8407,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8497,53 +8500,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8555,11 +8558,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9388,7 +9391,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9401,32 +9404,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9452,35 +9455,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9649,7 +9652,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9673,21 +9676,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9777,7 +9780,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9869,7 +9872,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9938,7 +9941,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9980,52 +9983,52 @@ msgstr "колдонууда" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10073,33 +10076,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10107,7 +10110,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -10120,15 +10123,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10136,23 +10139,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -12886,15 +12889,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "Database %1$s has been created." @@ -12909,17 +12908,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "Database %1$s has been created." msgid "An alias was expected." @@ -12939,19 +12939,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "Database %1$s has been created." msgid "A rename operation was expected." @@ -12979,15 +12979,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13008,17 +13008,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13681,7 +13681,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14608,7 +14608,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14643,7 +14643,7 @@ msgstr "Тузуу:" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14760,11 +14760,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/li.po b/po/li.po index 14cfee733a..b456624a44 100644 --- a/po/li.po +++ b/po/li.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-12-29 15:36+0000\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: Limburgish %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3315,30 +3318,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "" @@ -3409,7 +3412,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3442,7 +3445,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3450,7 +3453,7 @@ msgid "With selected:" msgstr "" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3526,15 +3529,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3598,8 +3601,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3647,15 +3650,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -3666,7 +3669,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3716,8 +3719,8 @@ msgid "Table" msgstr "" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3725,25 +3728,25 @@ msgstr "" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3751,24 +3754,24 @@ msgid "Privileges" msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3779,16 +3782,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3796,16 +3799,16 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3818,34 +3821,34 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4411,16 +4414,16 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4431,98 +4434,98 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "" @@ -4648,41 +4651,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4690,24 +4693,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5364,13 +5367,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5388,12 +5391,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -7332,7 +7335,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "" @@ -7462,8 +7465,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7501,52 +7504,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7556,7 +7559,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8275,54 +8278,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8368,53 +8371,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8426,11 +8429,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9250,7 +9253,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9263,32 +9266,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9314,35 +9317,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9511,7 +9514,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9535,21 +9538,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9639,7 +9642,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9731,7 +9734,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9800,7 +9803,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9842,52 +9845,52 @@ msgstr "" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -9935,33 +9938,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -9969,7 +9972,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -9982,15 +9985,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -9998,23 +10001,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -12727,15 +12730,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "" @@ -12748,17 +12747,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "" @@ -12776,19 +12776,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "" @@ -12814,15 +12814,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12843,15 +12843,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13509,7 +13509,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14405,7 +14405,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14438,7 +14438,7 @@ msgstr "" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14553,11 +14553,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/lt.po b/po/lt.po index 57309c98e4..ce0104bb7e 100644 --- a/po/lt.po +++ b/po/lt.po @@ -1,9 +1,9 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Lithuanian %s
" msgstr[1] "%s atitikmenys lentelėse %s" msgstr[2] "%s atitikmenų lentelėse %s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3782,16 +3787,16 @@ msgstr "Filtrai" msgid "Search this table" msgstr "Paieška duomenų bazėje" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Pradžia" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3800,8 +3805,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Ankstesnis" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -3810,8 +3815,8 @@ msgctxt "Next page" msgid "Next" msgstr "Kitas" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3892,7 +3897,7 @@ msgstr "Gali būti apytikslis. Žiūrėkite [doc@faq3-11]DUK 3.11[/doc]" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3932,7 +3937,7 @@ msgid "Query took %01.4f seconds." msgstr "Užklausa užtruko %01.4f sek." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3940,7 +3945,7 @@ msgid "With selected:" msgstr "Pasirinktus:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4026,17 +4031,17 @@ msgstr "Failo įkėlimas sustabdytas dėl failo plėtinio." msgid "Unknown error in file upload." msgstr "Nežinoma klaida failų įkėlime." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Klaida perkeliant įkeltą failą, žiūrėti [doc@faq1-11]DUK 1.11[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Klaida perkeliant atsiųstą failą." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -4106,8 +4111,8 @@ msgid "Keyname" msgstr "Indekso pavadinimas" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4155,15 +4160,15 @@ msgstr "Panaikintas pirminis raktas." msgid "Index %s has been dropped." msgstr "Indeksas %s ištrintas." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Šalinti" @@ -4175,7 +4180,7 @@ msgid "" msgstr "" "Žurnalai %1$s ir %2$s atrodo vienodi ir vienas iš jų gali būti pašalintas." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4225,8 +4230,8 @@ msgid "Table" msgstr "Lentelė" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4234,25 +4239,25 @@ msgstr "Lentelė" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Paieška" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Įterpti" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4260,24 +4265,24 @@ msgid "Privileges" msgstr "Privilegijos" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Veiksmai" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Sekimas" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4288,16 +4293,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "Duomenų bazė atrodo tuščia!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "SQL užklausa" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4305,18 +4310,18 @@ msgstr "" msgid "Events" msgstr "Įvykiai" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Projektavimas" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "Textarea stulpeliai" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4331,34 +4336,34 @@ msgid "User accounts" msgstr "Naudotojai" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Dvejetainis log'as" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikavimas" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Kintamieji" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Koduotės" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Varikliai" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4976,18 +4981,18 @@ msgstr "" msgid "Max: %s%s" msgstr "Didžiausias dydis: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Statiniai duomenys" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4998,38 +5003,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL atsakymas: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Paaiškinti SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Praleisti SQL užklausos aiškinimą" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "be PHP kodo" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Vykdyti užklausą" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP kodas" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5037,69 +5042,69 @@ msgid "Edit inline" msgstr "Redagavimo režimas" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Sek" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y m. %B %d d. %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s d., %s val., %s min. ir %s s" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Trūkstamas parametras:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Pereiti į „%s“ duomenų bazę." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s funkcionalumas paveiktas žinomos klaidos, žiūrėti %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Spustelėkite suskleidimui/atskleidimui" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Naršyti savo kompiuteryje:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Pasirinkti iš saityno serverio atsisiuntimų katalogą %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Aplankas, kuris nurodytas įkeliamiems failams, nepasiekiamas." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "Nėra failų išsiuntimui" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Išvalyti" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Vykdyti" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Naudotojai" @@ -5239,13 +5244,13 @@ msgstr "Pridėti stulpelį" msgid "Attributes" msgstr "Atributai" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to read configuration file!" msgstr "Nepavyko perskaityti konfigūracijos failo" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -5253,32 +5258,32 @@ msgstr "" "Tai dažniausiai reiškia, kad yra įvelta sintaksės klaida, prašome patikrinti " "žemiau esančias klaidas." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nepavyko užkrauti numatytų nustatymų failo iš: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Blogas serverio indeksas: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Blogas serverio %1$s hostname. Prašome peržiūrėti nustatymus." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Serveris" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Blogai nustatytas identifikavimo metodas nustatymuose:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5286,24 +5291,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Rekomenduojame atnaujint %s iki %s ar vėlesnės versijos." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "galimas pažeidžiamumas" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6123,7 +6128,7 @@ msgstr "Stulpelių pavadinimus įrašyti pirmoje eilutėje" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Columns enclosed with:" msgid "Columns enclosed with" @@ -6131,7 +6136,7 @@ msgstr "Laukų reikšmės apskliaustos su:" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Columns escaped with:" msgid "Columns escaped with" @@ -6153,14 +6158,14 @@ msgstr "Pašalinti CRLF simbolius laukeliuose" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "Laukai baigiasi" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated with:" msgid "Lines terminated with" @@ -8646,7 +8651,7 @@ msgid "Table %s has been emptied." msgstr "Lentelės reikšmės %s ištuštintos." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8787,8 +8792,8 @@ msgid "No data to display" msgstr "Nėra duomenų" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8839,55 +8844,55 @@ msgstr[2] "" msgid "No column selected." msgstr "Nepasirinkti įrašai" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Užklausos klaida" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Redaguoti" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeksas" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Fulltext" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8899,7 +8904,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s plėtinys nerastas. Prašome patikrinti PHP nustatymus." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nėra pakeitimų" @@ -9707,18 +9712,18 @@ msgstr "MySQL gražino tuščią rezultatų rinkinį (nėra eilučių)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 #, 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:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9727,45 +9732,45 @@ msgid "" msgstr "" "Keisti bet kuriuos iš šių nustatymų spauskite atitinkamą „Nustatymai“ nuorodą" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 #, 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:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Eiti į duomenų bazę" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Keisti nustatymus %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Eiti į lentelę" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struktūra %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Eiti į rodinį (view)" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9815,50 +9820,50 @@ msgstr "Arba" msgid "web server upload directory:" msgstr "web serverio katalogas atsiuntimams" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Įterpti" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Tęstį įterpimą su %s eilučių" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "ir tada" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Įterpti kaip naują įrašą" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Įterpti kaip naują eilutę ir ignoruoti klaidas" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Rodyti įterptą užklausą" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Sugrįžti į buvusį puslapį" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Įterpti kitą naują eilutę" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Grįžti atgal į šį puslapį" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Redaguoti kitą įrašą" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9867,7 +9872,7 @@ msgid "" msgstr "" "Šokinėjimui tarp reikšmių naudokite TAB mygtuką arba naudokite CTRL+rodyklės" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9879,11 +9884,11 @@ msgstr "" msgid "Value" msgstr "Reikšmė" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Rodoma SQL užklausa" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Įterpto įrašo id: %1$d" @@ -10765,7 +10770,7 @@ msgstr "Taisyti lentelę" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Ištrinti duomenis arba lentelę" @@ -10778,32 +10783,32 @@ msgid "Delete the table (DROP)" msgstr "Ištrinti lentelę (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analizuoti" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Pažymėti" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimizuoti" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Perdaryti" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Taisyti" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10831,37 +10836,37 @@ msgstr "Pašalinti skaidymą" msgid "Check referential integrity:" msgstr "Patikrinti sąryšių vientisumą:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Negalima perkelti lentelės į ją pačią!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Negalima kopijuoti lentelės į ją pačią!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Lentelė %s perkelta į %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Letelė %s nukopijuota į %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Tuščias lentelės vardas!" @@ -11044,7 +11049,7 @@ msgstr "Duomenų išvedimo nustatymai" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Sukurta duomenų kopija lentelei" @@ -11070,21 +11075,21 @@ msgstr "Paaiškinimas" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Sukurta duomenų struktūra lentelei" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktūra peržiūrėjimui" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Tik struktūra rodiniui" @@ -11190,7 +11195,7 @@ msgid "Database:" msgstr "Duomenų bazė" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11307,7 +11312,7 @@ msgid "Data creation options" msgstr "Objekto kūrimo nustatymai" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11392,7 +11397,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11438,61 +11443,61 @@ msgstr "šiuo metu naudojama" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Apribojimai eksportuotom lentelėm" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Apribojimai lentelei" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Apribojimai eksportuotom lentelėm" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Viduje lentelių:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Pridėti AUTO_INCREMENT reikšmę" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPAI LENTELEI" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "SĄRYŠIAI LENTELEI" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Klaida skaitant duomenis:" @@ -11546,15 +11551,15 @@ msgstr "" msgid "Column names: " msgstr "Stulpelių vardai: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Negalimas parametras CSV importavimui: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -11563,18 +11568,18 @@ msgstr "" "Blogai nurodyti stulpeliai (%s)! Įsitikinkite, kad stulpelių vardai parašyti " "gerai, atskirti kableliais ir apskliausti (apimti, aptverti) kabutėmis." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Neteisingas CSV įvedimo formatas eilutėje %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Neteisingas stulpelių skaičius CSV įvedimo eilutėje %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Priedas nepalaiko suglaudintų importų!" @@ -11582,7 +11587,7 @@ msgstr "Priedas nepalaiko suglaudintų importų!" msgid "MediaWiki Table" msgstr "MediaWiki lentelė" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." @@ -11597,9 +11602,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importuoti valiutas (pavyzdžiui. $5.00 į 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -11607,7 +11612,7 @@ msgstr "" "XML failo specifikacija yra neteisinga arba neišbaigta. Prašome pataisyti " "klaidas ir bandyti dar kartą." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11617,23 +11622,23 @@ msgstr "Open Document skaičiuoklė" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "This page does not contain any tables!" msgid "The imported file does not contain any data!" @@ -14729,15 +14734,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14752,17 +14753,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14784,23 +14786,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Lentelių kurios yra atidarytos skaičius." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Lentelių kurios yra atidarytos skaičius." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14831,17 +14833,17 @@ msgstr "Įvykis %1$s buvo sukurtas." msgid "Variable name was expected." msgstr "Lentelės vardo šablonas" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Lentelės pradžioje" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14862,19 +14864,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15589,7 +15591,7 @@ msgstr "Peržiūrėti lentelės struktūros atvaizdį" msgid "Invalid table name" msgstr "Neteisingas lentelės vardas" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16700,7 +16702,7 @@ msgid "at beginning of table" msgstr "Lentelės pradžioje" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16747,7 +16749,7 @@ msgstr "Skaidinys %s" msgid "Edit partitioning" msgstr "Pašalinti skaidymą" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Keisti rodinį" @@ -16878,11 +16880,11 @@ msgstr "VIEW pavadinimas" msgid "Column names" msgstr "Stulpelių vardai" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Pervadinti rodinį į" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Delete the table (DROP)" msgid "Delete the view (DROP)" diff --git a/po/lv.po b/po/lv.po index 7d292c0999..17ec009706 100644 --- a/po/lv.po +++ b/po/lv.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-01-23 11:11+0000\n" "Last-Translator: Arturs Nikolajevs \n" "Language-Team: Latvian %2$s" msgstr[0] "%s rezultāti tabulā %s" msgstr[1] "%s rezultāti tabulā %s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3758,16 +3763,16 @@ msgstr "Filtrs" msgid "Search this table" msgstr "Meklēt datubāzē" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Sākums" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3776,8 +3781,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Iepriekšējie" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -3786,8 +3791,8 @@ msgctxt "Next page" msgid "Next" msgstr "Nākamie" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3875,7 +3880,7 @@ msgstr "Var būt aptuvens skaits. Skatīt [doc@faq3-11]FAQ 3.11[/doc]" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3913,7 +3918,7 @@ msgid "Query took %01.4f seconds." msgstr "Vaicājums ilga %01.4f s" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3921,7 +3926,7 @@ msgid "With selected:" msgstr "Ar iezīmēto:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4006,16 +4011,16 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4082,8 +4087,8 @@ msgid "Keyname" msgstr "Atslēgas nosaukums" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4132,15 +4137,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Likvidēt" @@ -4151,7 +4156,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4201,8 +4206,8 @@ msgid "Table" msgstr "Tabula" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4210,25 +4215,25 @@ msgstr "Tabula" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Meklēt" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Pievienot" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4236,24 +4241,24 @@ msgid "Privileges" msgstr "Privilēģijas" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Darbības" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4264,16 +4269,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Vaicājums pēc parauga" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4281,18 +4286,18 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4307,12 +4312,12 @@ msgid "User accounts" msgstr "Lietotājs" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binārais log-fails" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 #, fuzzy @@ -4320,22 +4325,22 @@ msgid "Replication" msgstr "Relācijas" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Mainīgie" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Rakstzīmju kodējumi" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4946,16 +4951,16 @@ msgstr "Kopā" msgid "Max: %s%s" msgstr "Maksimālais izmērs: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4966,38 +4971,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL teica: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Izskaidrot SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Neizskaidrot SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Bez PHP koda" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Izpildīt vaicājumu" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Izveidot PHP kodu" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5005,70 +5010,70 @@ msgid "Edit inline" msgstr "Pievienot jaunu lauku" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Sv" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dienas, %s stundas, %s minūtes un %s sekundes" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "Pievienot jaunu lauku" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "pāriet pie datubāzes \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, 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:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Iztukšot" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 #, fuzzy #| msgid "User" msgid "Users" @@ -5212,42 +5217,42 @@ msgstr "Pievienot %s lauku(s)" msgid "Attributes" msgstr "Atribūti" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Serveris" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5255,24 +5260,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Jums ir jāuzliek %s %s vai jaunāks." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5979,7 +5984,7 @@ msgstr "Likt kolonnu nosaukumus pirmajā rindā" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -5987,7 +5992,7 @@ msgstr "Lauki iekļauti iekš" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6009,14 +6014,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Rindas atdalītas ar" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8127,7 +8132,7 @@ msgid "Table %s has been emptied." msgstr "Tabula %s tika iztukšota." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format msgid "View %s has been dropped." msgstr "Lauks %s tika izdzēsts" @@ -8267,8 +8272,8 @@ msgid "No data to display" msgstr "Dati netika atrasti" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." @@ -8316,56 +8321,56 @@ msgstr[2] "" msgid "No column selected." msgstr "Nav izvēlēta kolonna." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Vaicājuma tips" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Labot" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indekss" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Pilni teksti" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy msgid "Distinct values" msgstr "Pārlūkot ārējās vērtības" @@ -8376,7 +8381,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Netika labots" @@ -9174,55 +9179,55 @@ msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Nav datubāzu" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Nav datubāzu" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tikai struktūra" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9273,50 +9278,50 @@ msgstr "Vai" msgid "web server upload directory:" msgstr "web servera augšupielādes direktorija" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Pievienot" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Ievietot kā jaunu rindu" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Atgriezties atpakaļ iepriekšējā lapā" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Ievietot vēl vienu rindu" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Atgriezties šajā lapā" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9326,7 +9331,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9338,11 +9343,11 @@ msgstr "" msgid "Value" msgstr "Vērtība" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10226,7 +10231,7 @@ msgstr "Restaurēt tabulu" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10242,34 +10247,34 @@ msgid "Delete the table (DROP)" msgstr "Nav datubāzu" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 #, fuzzy msgid "Check" msgstr "Čehu" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 #, fuzzy msgid "Repair" msgstr "Restaurēt tabulu" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10298,37 +10303,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Pārbaudīt referenciālo integritāti:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Nevar pārvietot tabulu uz viņu pašu!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Nevar nokopēt tabulu uz viņu pašu!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabula %s tika pārvietota uz %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabula %s tika pārkopēta uz %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Tabulas nosaukums nav norādīts!" @@ -10521,7 +10526,7 @@ msgstr "Datubāzu eksporta opcijas" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dati tabulai" @@ -10548,14 +10553,14 @@ msgstr "Apraksts" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tabulas struktūra tabulai" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10563,7 +10568,7 @@ msgstr "Tikai struktūra" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10681,7 +10686,7 @@ msgid "Database:" msgstr "Datubāze" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10796,7 +10801,7 @@ msgid "Data creation options" msgstr "Transformācijas opcijas" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10865,7 +10870,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10911,60 +10916,60 @@ msgstr "lietošanā" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Ierobežojumi izmestām tabulām" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Ierobežojumi tabulai" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ierobežojumi izmestām tabulām" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Tabulā(s):" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Pievienot AUTO_INCREMENT vērtību" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Pievienot AUTO_INCREMENT vērtību" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPI TABULAI" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELĀCIJAS TABULAI" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Tikai struktūra" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11020,33 +11025,33 @@ msgstr "" msgid "Column names: " msgstr "Kolonnu nosaukumi" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11054,7 +11059,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -11067,15 +11072,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11085,23 +11090,23 @@ msgstr "Dokumentācija" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -14159,15 +14164,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14182,17 +14183,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14214,19 +14216,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14255,17 +14257,17 @@ msgstr "Tabula %s tika izdzēsta" msgid "Variable name was expected." msgstr "Faila nosaukuma šablons" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Tabulas sākumā" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14286,17 +14288,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15005,7 +15007,7 @@ msgstr "Apskatīt tabulas dampu (shēmu)" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16126,7 +16128,7 @@ msgid "at beginning of table" msgstr "Tabulas sākumā" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16171,7 +16173,7 @@ msgstr "Pozīcija" msgid "Edit partitioning" msgstr "Pievienot jaunu lauku" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16307,12 +16309,12 @@ msgstr "" msgid "Column names" msgstr "Kolonnu nosaukumi" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Pārsaukt tabulu uz" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Nav datubāzu" diff --git a/po/mk.po b/po/mk.po index e912dbf994..1ba36f1c3c 100644 --- a/po/mk.po +++ b/po/mk.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:23+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Macedonian %2$s" msgstr[0] "%s погодоци во табелата %s" msgstr[1] "%s погодоци во табелата %s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3822,16 +3825,16 @@ msgstr "Полиња" msgid "Search this table" msgstr "Пребарување низ базата на податоци" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Почеток" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3840,8 +3843,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Претходна" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -3850,8 +3853,8 @@ msgctxt "Next page" msgid "Next" msgstr "Следен" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3941,7 +3944,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3979,7 +3982,7 @@ msgid "Query took %01.4f seconds." msgstr "време на извршување на упитот %01.4f секунди" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3987,7 +3990,7 @@ msgid "With selected:" msgstr "Обележаното:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4072,18 +4075,18 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Бројот на записи може да биде приближен. За подетални информации види FAQ " "3.11" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4151,8 +4154,8 @@ msgid "Keyname" msgstr "Име на клуч" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4201,15 +4204,15 @@ msgstr "Примарниот клуч е избришан." msgid "Index %s has been dropped." msgstr "Клучот %s е избиршан." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Бриши" @@ -4220,7 +4223,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4270,8 +4273,8 @@ msgid "Table" msgstr "Табела" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4279,25 +4282,25 @@ msgstr "Табела" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Пребарување" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Нов запис" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4305,24 +4308,24 @@ msgid "Privileges" msgstr "Привилегии" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Операции" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4333,16 +4336,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Упит по пример" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Рутини" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4350,18 +4353,18 @@ msgstr "Рутини" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Додади/избриши колона" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4376,12 +4379,12 @@ msgid "User accounts" msgstr "Корисник" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Бинарен дневник" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 #, fuzzy @@ -4389,22 +4392,22 @@ msgid "Replication" msgstr "Релации" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Променливи" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Кодни страници" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Складишта" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -5016,16 +5019,16 @@ msgstr "Вкупно" msgid "Max: %s%s" msgstr "Максимална големина: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5036,38 +5039,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL порака: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Објасни SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Прескокни ги објаснувањата на SQL-от" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "без PHP код" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Изврши SQL" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Направи PHP код" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5075,70 +5078,70 @@ msgid "Edit inline" msgstr "Додади ново поле" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Нед" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. во %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s денови, %s часови, %s минути и %s секунди" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Рутини" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Премин на базата \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "директориум за праќање на веб серверот " -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Директориумот кој го избравте за праќање не е достапен." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Испразни" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 #, fuzzy #| msgid "User" msgid "Users" @@ -5282,42 +5285,42 @@ msgstr "Додади %s полиња" msgid "Attributes" msgstr "Атрибути" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Сервер" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5325,25 +5328,25 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" "Би требало да го надоградите вашиот %s сервер на верзија %s или понова." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6049,7 +6052,7 @@ msgstr "Стави ги имињата на полињата во првата #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6057,7 +6060,7 @@ msgstr "Полињата се раздвоени со" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6079,14 +6082,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Линиите се завршуваат со" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8210,7 +8213,7 @@ msgid "Table %s has been emptied." msgstr "Табелата %s е испразнета." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8351,8 +8354,8 @@ msgid "No data to display" msgstr "Базата на податоци не постои" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." @@ -8400,56 +8403,56 @@ msgstr[1] "" msgid "No column selected." msgstr "Нема селектирани записи" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Изабраните корисници успешно се избришани." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Вид на упит" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, fuzzy, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "Изабраните корисници успешно се избришани." -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Промени" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Клуч" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Текст клуч" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy msgid "Distinct values" msgstr "Прегледни ги надворешните вредности" @@ -8460,7 +8463,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Нема измени" @@ -9276,55 +9279,55 @@ msgstr "MySQL врати празен резултат (нула записи)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Базата на податоци не постои" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Базата на податоци не постои" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Само структура" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9377,50 +9380,50 @@ msgstr "или" msgid "web server upload directory:" msgstr "директориум за праќање на веб серверот" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Нов запис" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Внеси како нов запис" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Назад на претходната страница" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Додади уште еден нов запис" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Врати се на оваа страница" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Ажурирање на следниот запис" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9430,7 +9433,7 @@ msgstr "" "Користете го TAB тастерот за движење од поле во поле, или CTRL+стрелка за " "слободно движење" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9442,11 +9445,11 @@ msgstr "" msgid "Value" msgstr "Вредност" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10331,7 +10334,7 @@ msgstr "Поправка на табелата" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10347,34 +10350,34 @@ msgid "Delete the table (DROP)" msgstr "Базата на податоци не постои" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 #, fuzzy msgid "Check" msgstr "Чешки" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 #, fuzzy msgid "Repair" msgstr "Поправка на табелата" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10402,37 +10405,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Провери го референцијалниот интегритет:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Не може да ја преместам табелата во самата себе!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Не можам да ја копирам табелата во самата себе!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Табелата %s е преместена во %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Табелата %s е копирана во %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Името на табелата е празно!" @@ -10626,7 +10629,7 @@ msgstr "Опции за извоз на бази на податоци" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Приказ на податоци од табелата" @@ -10653,14 +10656,14 @@ msgstr "Опис" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Структура на табелата" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10668,7 +10671,7 @@ msgstr "Само структура" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10786,7 +10789,7 @@ msgid "Database:" msgstr "База на податоци" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10901,7 +10904,7 @@ msgid "Data creation options" msgstr "Опции на трансформацијата" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10970,7 +10973,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11022,60 +11025,60 @@ msgstr "се користи" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Ограничувања за извезените табели" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Ограничувања за табелите" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ограничувања за извезените табели" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "во табела(и):" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Додади AUTO_INCREMENT вредност" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Додади AUTO_INCREMENT вредност" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВИ ЗА ТАБЕЛА" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИИ НА ТАБЕЛИТЕ" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Само структура" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11131,33 +11134,33 @@ msgstr "" msgid "Column names: " msgstr "Имиња на колони" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11165,7 +11168,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -11178,15 +11181,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11196,23 +11199,23 @@ msgstr "Документација" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -14302,15 +14305,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14325,17 +14324,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14357,19 +14357,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14398,17 +14398,17 @@ msgstr "Табелата %s е избришана" msgid "Variable name was expected." msgstr "Шаблон на име на податотека" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "на почетокот од табелата" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14429,17 +14429,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Записот е избришан" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15145,7 +15145,7 @@ msgstr "Прикажи содржина (шема) на табелите" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16270,7 +16270,7 @@ msgid "at beginning of table" msgstr "на почетокот од табелата" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16315,7 +16315,7 @@ msgstr "Позиција" msgid "Edit partitioning" msgstr "Додади ново поле" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16450,12 +16450,12 @@ msgstr "" msgid "Column names" msgstr "Имиња на колони" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Промени го името на табелата во " -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Базата на податоци не постои" diff --git a/po/ml.po b/po/ml.po index 58ede00906..a1f7c8f599 100644 --- a/po/ml.po +++ b/po/ml.po @@ -3,9 +3,9 @@ # This file is distributed under the same license as the phpMyAdmin package. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malayalam %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3418,30 +3421,30 @@ msgstr "തരംതിരിക്കുക" msgid "Search this table" msgstr "ഈ വില ഉപയോഗിക്കൂ" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "" @@ -3516,7 +3519,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Database %s has been dropped." msgid "Your SQL query has been executed successfully." @@ -3553,7 +3556,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3561,7 +3564,7 @@ msgid "With selected:" msgstr "" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3641,15 +3644,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3713,8 +3716,8 @@ msgid "Keyname" msgstr "കീനാമം" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3762,15 +3765,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -3781,7 +3784,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3831,8 +3834,8 @@ msgid "Table" msgstr "പട്ടിക" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3840,25 +3843,25 @@ msgstr "പട്ടിക" msgid "SQL" msgstr "" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "തിരയൂ" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3866,24 +3869,24 @@ msgid "Privileges" msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3894,16 +3897,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3911,18 +3914,18 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete columns" msgid "Central columns" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3935,34 +3938,34 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4537,16 +4540,16 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4557,100 +4560,100 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "അഭ്യർത്ഥന സമർപ്പിക്കുക" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "" @@ -4784,41 +4787,41 @@ msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4826,24 +4829,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5518,13 +5521,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5542,12 +5545,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -7530,7 +7533,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "View %s has been dropped." @@ -7665,8 +7668,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7708,54 +7711,54 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -7767,7 +7770,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8504,55 +8507,55 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Copy database to" msgid "Go to database: %s" msgstr "വിവരശേഖരം പകർത്തുക" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8598,53 +8601,53 @@ msgstr "അല്ലെനങ്കിൽ" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8656,11 +8659,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9508,7 +9511,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9521,32 +9524,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9572,35 +9575,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9769,7 +9772,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9793,21 +9796,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9901,7 +9904,7 @@ msgid "Database:" msgstr "വിവരശേഖര അഭിപ്രായം: " #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9998,7 +10001,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10067,7 +10070,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10116,52 +10119,52 @@ msgstr "ഉപയോഗത്തിൽ" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10211,33 +10214,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10245,7 +10248,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -10258,15 +10261,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10274,23 +10277,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -13048,15 +13051,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "Remove database" @@ -13071,17 +13070,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "Remove database" msgid "An alias was expected." @@ -13103,19 +13103,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "Database %1$s has been created." msgid "A rename operation was expected." @@ -13143,15 +13143,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13172,17 +13172,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13842,7 +13842,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14799,7 +14799,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14838,7 +14838,7 @@ msgstr "വിവരണം" msgid "Edit partitioning" msgstr "വിവരണം" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14961,11 +14961,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Drop the database (DROP)" msgid "Delete the view (DROP)" diff --git a/po/mn.po b/po/mn.po index 85a0c4c088..070fdc881f 100644 --- a/po/mn.po +++ b/po/mn.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:25+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Mongolian %2$s" msgstr[0] "%s олдоц(ууд) хүснэгт %s-д" msgstr[1] "%s олдоц(ууд) хүснэгт %s-д" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3893,16 +3897,16 @@ msgstr "Файлууд" msgid "Search this table" msgstr "Өгөгдлийн санд хайх" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Эхлэл" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3911,8 +3915,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Өмнөх" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -3921,8 +3925,8 @@ msgctxt "Next page" msgid "Next" msgstr "Цааш" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -4007,7 +4011,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4045,7 +4049,7 @@ msgid "Query took %01.4f seconds." msgstr "Асуулт нь %01.4f сек авлаа" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -4053,7 +4057,7 @@ msgid "With selected:" msgstr "Сонгогдсонтой:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4139,15 +4143,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4215,8 +4219,8 @@ msgid "Keyname" msgstr "Түлхүүрийн нэр" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4264,15 +4268,15 @@ msgstr "Үндсэн түлхүүр устгагдлаа." msgid "Index %s has been dropped." msgstr "Индекс %s нь устгагдсан." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Устгах" @@ -4283,7 +4287,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4333,8 +4337,8 @@ msgid "Table" msgstr "Хүснэгт" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4342,25 +4346,25 @@ msgstr "Хүснэгт" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Хайх" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Оруулах" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4368,24 +4372,24 @@ msgid "Privileges" msgstr "Онцгой эрхүүд" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Үйлдлүүд" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4396,16 +4400,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "Өгөгдлийн сан хоосон санагдаж байна!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Асуулт (Query)" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4413,18 +4417,18 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Дизайнч" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Багана нэмэх/устгах" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4439,34 +4443,34 @@ msgid "User accounts" msgstr "Хэрэглэгч" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Хоёртын log" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Олшруулалт" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Утгууд" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Кодлолууд" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Хөдөлгүүрүүд" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -5083,16 +5087,16 @@ msgstr "Нийт" msgid "Max: %s%s" msgstr "ХИ хэмжээ: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5103,38 +5107,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL хэлэх нь: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL тайлбар" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "SQL тайлбарлахыг орхих" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP-кодгүй" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Асуултыг илгээх" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP-код үүсгэх" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5142,70 +5146,70 @@ msgid "Edit inline" msgstr "Шинэ талбар нэмэх" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Ня" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y оны %B сарын %d., %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s өдөр, %s цаг, %s минут, %s секунд" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "Шинэ талбар нэмэх" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "\"%s\" өгөгдлийн сан руу үсрэх." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web-сервэр түлхэх хавтас" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй байна." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Хоосон" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 #, fuzzy #| msgid "User" msgid "Users" @@ -5349,46 +5353,46 @@ msgstr "%s талбар(ууд) нэмэх" msgid "Attributes" msgstr "Атрибутууд" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file!" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Сервэрийн буруу индекс нь: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "%1$s сервэрийн хост буруу. Өөрийн тохиргоогоо нягтална уу." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Сервэр" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Тохиргоонд сонгогдсон буруу зөвшөөрлийн арга:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5396,24 +5400,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Та хувилбар %s -г %s -ээр сайжруулах хэрэгтэй эсвэл дараа." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6119,7 +6123,7 @@ msgstr "Эхний мөрт талбаруудын нэрийг тавих" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6127,7 +6131,7 @@ msgstr "Талбарыг хаасан" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6149,14 +6153,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Шугамыг төгсгөгч" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8279,7 +8283,7 @@ msgid "Table %s has been emptied." msgstr "Хүснэгт %s нь хоослогдлоо." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8420,8 +8424,8 @@ msgid "No data to display" msgstr "ӨС байхгүй" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8471,57 +8475,57 @@ msgstr[1] "" msgid "No column selected." msgstr "Сонгогдсон мөргүй" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Сонгогдсон хэрэглэгч устгагдлаа." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Асуултын төрөл" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Солих" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Индекс" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Бүтэнбичвэр" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8533,7 +8537,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Солигдохгүй" @@ -9365,57 +9369,57 @@ msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г. msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "ӨС байхгүй" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "No tables" msgid "Go to table: %s" msgstr "Хүснэгт алга" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Зөвхөн бүтэц" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9466,50 +9470,50 @@ msgstr "Эсвэл" msgid "web server upload directory:" msgstr "web-сервэр түлхэх хавтас" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Оруулах" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "ба тэгээд" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Шинэ мөр оруулаад" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Буцах" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Өөр шинэ мөр оруулах" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Энэ хуудас руу буцах" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Дараагийн мөрийг засах" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9519,7 +9523,7 @@ msgstr "" "TAB товчийг хэрэглэн утгаас утгын хооронд шилжинэ, эсвэл CTRL+сумууд-аар " "зөөгдөнө" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9531,11 +9535,11 @@ msgstr "" msgid "Value" msgstr "Утга" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "SQL асуудал харуулах" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10430,7 +10434,7 @@ msgstr "Хүснэгт засах" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10447,32 +10451,32 @@ msgid "Delete the table (DROP)" msgstr "Өгөгдлийн сан хуулах нь" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10498,37 +10502,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Үнэн зөв өгөгдлийг шалгах:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Адил нэр байсан тул хүснэгтийг зөөсөнгүй!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Адил нэртэй хүснэгт рүү хуулж чадсангүй!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Хүснэгт %s нь %s руу зөөгдөв." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "%s хүснэгт %s руу хуулагдлаа." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Хүснэгтийн нэр хоосон байна!" @@ -10721,7 +10725,7 @@ msgstr "ӨС гаргах сонголтууд" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Хүснэгтийн өгөгдлийг устгах" @@ -10747,21 +10751,21 @@ msgstr "Тайлбар" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Хүснэгтийн бүтэц" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Харах бүтэц" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10879,7 +10883,7 @@ msgid "Database:" msgstr "ӨС" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10997,7 +11001,7 @@ msgid "Data creation options" msgstr "Өөрчлөлийн сонголтууд" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11066,7 +11070,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11118,61 +11122,61 @@ msgstr "хэрэглэгдэж байна" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Асгарсан хүснэгтийг хүчлэх" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Асгарсан хүснэгтийг хүчлэх" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Хүснэгт(үүд) дотор:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT утга нэмэх" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT утга нэмэх" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "Хүснэгтийн MIME-төрлүүд" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "Хүснэгтийн хамаарал" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Харах бүтэц" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11228,34 +11232,34 @@ msgstr "" msgid "Column names: " msgstr "Баганын нэрс" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV оруулалтад буруу параметр нь: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "CSV оруулалтад %d мөрөнд буруу тогтнол байна." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "CSV оруулалтад %d мөрөнд буруу талбарын тоо байна." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Энэ нэмэлт нь шахагдсан оруулалтыг дэмжихгүй!" @@ -11263,7 +11267,7 @@ msgstr "Энэ нэмэлт нь шахагдсан оруулалтыг дэм msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." @@ -11277,15 +11281,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11295,23 +11299,23 @@ msgstr "Баримт" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -14447,15 +14451,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14470,17 +14470,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14502,19 +14503,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14543,17 +14544,17 @@ msgstr "Хүснэгт %s нь устгагдлаа" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Хүснэгтийн эхэнд" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14574,17 +14575,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Мөр устгагдсан" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15289,7 +15290,7 @@ msgstr "Хүснэгтийн схем харах" msgid "Invalid table name" msgstr "Хүснэгтийн буруу нэр" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16419,7 +16420,7 @@ msgid "at beginning of table" msgstr "Хүснэгтийн эхэнд" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16464,7 +16465,7 @@ msgstr "Байрлал" msgid "Edit partitioning" msgstr "Шинэ талбар нэмэх" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16600,11 +16601,11 @@ msgstr "" msgid "Column names" msgstr "Баганын нэрс" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Copy database to" msgid "Delete the view (DROP)" diff --git a/po/ms.po b/po/ms.po index 119e12a359..c3e82941be 100644 --- a/po/ms.po +++ b/po/ms.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malay %2$s" msgstr[0] "%s padanan di dalam jadual %s" msgstr[1] "%s padanan di dalam jadual %s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3745,16 +3747,16 @@ msgstr "Medan" msgid "Search this table" msgstr "Cari di pangkalan data" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Mula" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3763,8 +3765,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Terdahulu" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -3773,8 +3775,8 @@ msgctxt "Next page" msgid "Next" msgstr "Berikut" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3859,7 +3861,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3896,7 +3898,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3904,7 +3906,7 @@ msgid "With selected:" msgstr "Dengan pilihan:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3988,15 +3990,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4063,8 +4065,8 @@ msgid "Keyname" msgstr "Nama Kekunci" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4113,15 +4115,15 @@ msgstr "Kekunci utama telah digugurkan." msgid "Index %s has been dropped." msgstr "Indeks %s telah digugurkan." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Gugur" @@ -4132,7 +4134,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4182,8 +4184,8 @@ msgid "Table" msgstr "Jadual" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4191,25 +4193,25 @@ msgstr "Jadual" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Cari" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Selit" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4217,24 +4219,24 @@ msgid "Privileges" msgstr "Privilej" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operasi" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4245,16 +4247,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Kueri" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4262,18 +4264,18 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Tambah/Padam Kolum Medan" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4288,35 +4290,35 @@ msgid "User accounts" msgstr "Pengguna" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 #, fuzzy msgid "Binary log" msgstr "Binari" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikasi" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Pemboleh-pembolehubah" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4916,16 +4918,16 @@ msgstr "Jumlah" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4936,38 +4938,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL berkata: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Terangkan Kod SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Tanpa Kod PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Hantar Kueri" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Cipta Kod PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -4975,68 +4977,68 @@ msgid "Edit inline" msgstr "Paparan Cetak" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Aha" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s hari, %s jam, %s minit dan %s saat" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, 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:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Kosong" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 #, fuzzy #| msgid "User" msgid "Users" @@ -5177,42 +5179,42 @@ msgstr "Tambah medan baru" msgid "Attributes" msgstr "Atribut" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Pelayan" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5220,24 +5222,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5940,7 +5942,7 @@ msgstr "Letakkan medan di baris pertama" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -5948,7 +5950,7 @@ msgstr "Medan disertai oleh" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -5968,14 +5970,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Baris ditamatkan oleh" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8065,7 +8067,7 @@ msgid "Table %s has been emptied." msgstr "Jadual %s telah dikosongkan." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8204,8 +8206,8 @@ msgid "No data to display" msgstr "Tiada pangkalan data" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8250,57 +8252,57 @@ msgstr[0] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Jenis Kueri" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Ubah" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Tekspenuh" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Session value" msgid "Distinct values" @@ -8312,7 +8314,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Tiada perubahan" @@ -9105,55 +9107,55 @@ msgstr "MySQL memulangkan set hasil kosong (i.e. sifar baris)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Tiada pangkalan data" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Tiada pangkalan data" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Struktur sahaja" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9204,56 +9206,56 @@ msgstr "Atau" msgid "web server upload directory:" msgstr "direktori muatnaik pelayan-web" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Selit" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Selitkan baris baru" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Kembali ke muka sebelumnya" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Tambah baris yang baru" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 #, fuzzy msgid "Go back to this page" msgstr "Kembali ke muka sebelumnya" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9265,11 +9267,11 @@ msgstr "" msgid "Value" msgstr "Nilai" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10145,7 +10147,7 @@ msgstr "Baiki jadual" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10161,33 +10163,33 @@ msgid "Delete the table (DROP)" msgstr "Tiada pangkalan data" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 #, fuzzy msgid "Repair" msgstr "Baiki jadual" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10215,37 +10217,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Semak integriti rujukan:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Jadual %s telah dipindahkan ke %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Jadual %s telah disalin ke %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Nama jadual adalah kosong!" @@ -10427,7 +10429,7 @@ msgstr "Statistik pangkalan data" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Melonggok data bagi jadual" @@ -10454,14 +10456,14 @@ msgstr "Keterangan" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struktur jadual bagi jadual" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10469,7 +10471,7 @@ msgstr "Struktur sahaja" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10581,7 +10583,7 @@ msgid "Database:" msgstr "Pangkalan Data" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10692,7 +10694,7 @@ msgid "Data creation options" msgstr "Statistik pangkalan data" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10761,7 +10763,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10812,60 +10814,60 @@ msgstr "sedang digunakan" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for dumped tables" msgstr "Di dalam jadual:" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Di dalam jadual:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Tambahkan nilai AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Tambahkan nilai AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Struktur sahaja" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10917,33 +10919,33 @@ msgstr "" msgid "Column names: " msgstr "Nama Kolum" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10951,7 +10953,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -10964,15 +10966,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -10982,23 +10984,23 @@ msgstr "Dokumentasi" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -13923,15 +13925,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "With selected:" @@ -13946,17 +13944,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "With selected:" msgid "An alias was expected." @@ -13978,19 +13977,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14018,17 +14017,17 @@ msgstr "Jadual %s telah digugurkan" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Pada Awalan Jadual" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14049,17 +14048,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14759,7 +14758,7 @@ msgstr "Lihat longgokan (skema) pangkalan data" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15843,7 +15842,7 @@ msgid "at beginning of table" msgstr "Pada Awalan Jadual" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy msgid "Partitions" msgstr "Operasi" @@ -15886,7 +15885,7 @@ msgstr "Operasi" msgid "Edit partitioning" msgstr "Paparan Cetak" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16018,12 +16017,12 @@ msgstr "" msgid "Column names" msgstr "Nama Kolum" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Tukarnama jadual ke" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Tiada pangkalan data" diff --git a/po/nb.po b/po/nb.po index ea75adeccf..85515d6284 100644 --- a/po/nb.po +++ b/po/nb.po @@ -1,9 +1,9 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-11-11 21:15+0000\n" "Last-Translator: nils kristian tomren \n" "Language-Team: Norwegian Bokmål %2$s" msgstr[0] "%1$s treff i %2$s" msgstr[1] "%1$s treff i %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3550,30 +3554,30 @@ msgstr "Filter rader" msgid "Search this table" msgstr "Søk i denne tabellen" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Start" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Forrige" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Neste" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Siste" @@ -3646,7 +3650,7 @@ msgstr "Kan være unøyaktig. Se [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Kommandoen/spørringen er utført." @@ -3679,7 +3683,7 @@ msgid "Query took %01.4f seconds." msgstr "Spørring tok %01.4f sekunder." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3687,7 +3691,7 @@ msgid "With selected:" msgstr "Med avkrysset:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3769,17 +3773,17 @@ msgstr "Filopplasting stoppet av utvidelse." msgid "Unknown error in file upload." msgstr "Ukjent feil oppstod under filopplastingen." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Feil oppstod under forsøk på flytting av den opplastede filen, se " "[doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Feil oppstod imens den opplastede filen ble flyttet." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -3845,8 +3849,8 @@ msgid "Keyname" msgstr "Nøkkel" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3894,15 +3898,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Slett" @@ -3915,7 +3919,7 @@ msgstr "" "Indeksene %1$s og %2$s ser ut til å være like og en av dem burde kunne " "fjernes." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3965,8 +3969,8 @@ msgid "Table" msgstr "Tabell" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3974,25 +3978,25 @@ msgstr "Tabell" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Søk" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Sett inn" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4000,24 +4004,24 @@ msgid "Privileges" msgstr "Privilegier" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operasjoner" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Overvåkning" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4028,16 +4032,16 @@ msgstr "Triggere" msgid "Database seems to be empty!" msgstr "Databasen ser ut til å være tom!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Spørring ved eksempel (Query by Example)" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutiner" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4045,16 +4049,16 @@ msgstr "Rutiner" msgid "Events" msgstr "Hendelser" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Senter kolonner" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4069,34 +4073,34 @@ msgid "User accounts" msgstr "Brukere" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binærlogg" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikering" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variabler" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Tegnsett" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Motorer" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Programtillegg" @@ -4725,18 +4729,18 @@ msgstr "Romtyper" msgid "Max: %s%s" msgstr "Maksimum størrelse: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Statistikkdata" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4747,104 +4751,104 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL sa: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Forklar SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Ikke forklar SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "uten PHP kode" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Kjør spørring" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Lag PHP kode" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Rediger innenfor" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Søn" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B, %Y %H:%M %p" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dager, %s timer, %s minutter og %s sekunder" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Mangler parametere:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Hopp til databasen \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funksjonaliteten %s er påvirket av en kjent feil, se %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Klikk for å endre" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Bla gjennom datamaskinen:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Merk fra opplastingskatalogen på vevtjeneren %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Katalogen du anga for opplasting kan ikke nåes." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Det er ingen filer å laste opp!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Tøm" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Utfør" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Brukere" @@ -4975,11 +4979,11 @@ msgstr "Legg til ny kolonne" msgid "Attributes" msgstr "Attributter" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Kunne ikke lese konfigurasjonsfilen!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4987,31 +4991,31 @@ msgstr "" "Dette mener vanligvis at det er en syntaksfeil i det, sjekk mulige feil som " "vises under." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Kunne ikke laste standard konfigurasjonsfil fra: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Ugyldig tjenerindeks: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ugyldig tjenernavn for tjener %1$s. Kontroller din konfigurasjon." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Ugyldig autentiseringsmetode satt opp i konfigureringen:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5019,24 +5023,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du burde oppgradere til %s %s eller nyere." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "mulig sikkerhetshull" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "numerisk nøkkel oppdaget" @@ -5896,13 +5900,13 @@ msgstr "Sett inn kolonnenavn i første rad" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Kolonner omsluttet av" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Columns escaped by" msgid "Columns escaped with" @@ -5922,14 +5926,14 @@ msgstr "Fjern CRLF tegn inne i kolonner" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "Kolonner avsluttet med" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8429,7 +8433,7 @@ msgid "Table %s has been emptied." msgstr "Tabellen %s har blitt tømt." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8569,8 +8573,8 @@ msgid "No data to display" msgstr "Ingen data funnet" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8614,57 +8618,57 @@ msgstr[1] "" msgid "No column selected." msgstr "Ingen rader valgt" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Gather errors" msgid "Query error" msgstr "Samle feilmeldinger" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Endre" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Fulltekst" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8676,7 +8680,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s tillegget mangler. Kontroller din PHP konfigurasjon." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ingen endring" @@ -9522,19 +9526,19 @@ msgstr "MySQL returnerte ett tomt resultat (m.a.o. ingen rader)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 #, 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:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9544,47 +9548,47 @@ msgstr "" "Endre noen av dens innstillinger ved å klikke på den tilhørende " "\"Innstillinger\" link" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 #, 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:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Gå til database" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Mangler data for %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Gå til tabell" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Kun struktur" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Gå til visning" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9636,49 +9640,49 @@ msgstr "Eller" msgid "web server upload directory:" msgstr "webtjener opplastingskatalog" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Rediger/Sett inn" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, 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:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "og så" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Sett inn som ny rad" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Sett inn som ny rad og ignorer feil" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Viser SQL spørring" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Returner" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Sett inn en ny post" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Tilbake til denne siden" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Rediger neste rad" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9688,7 +9692,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9700,11 +9704,11 @@ msgstr "" msgid "Value" msgstr "Verdi" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Viser SQL spørring" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Insatt rad id: %1$d" @@ -10588,7 +10592,7 @@ msgstr "Reparer tabell" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" @@ -10605,32 +10609,32 @@ msgid "Delete the table (DROP)" msgstr "Gå til database" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analyser" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Kontroller" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimaliser" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Gjenoppbygg" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Reparer" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10658,37 +10662,37 @@ msgstr "Fjern partisjonering" msgid "Check referential integrity:" msgstr "Sjekk referanseintegritet:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Kan ikke flytte tabellen til samme navn!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Kan ikke kopiere tabellen til samme navn!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabellen %s har blitt flyttet til %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabellen %s er kopiert til %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Tabellnavnet er tomt!" @@ -10880,7 +10884,7 @@ msgstr "Databasevisningsinnstillinger" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dataark for tabell" @@ -10906,21 +10910,21 @@ msgstr "Beskrivelse" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tabellstruktur for tabell" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Visningsstruktur" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Erstatningsstruktur for visning" @@ -11030,7 +11034,7 @@ msgid "Database:" msgstr "Database" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11150,7 +11154,7 @@ msgid "Data creation options" msgstr "Transformasjonsvalg" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11219,7 +11223,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11265,61 +11269,61 @@ msgstr "i bruk" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Begrensninger for dumpede tabeller" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Begrensninger for tabell" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Begrensninger for dumpede tabeller" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "I tabellene:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Legg til AUTO_INCREMENT verdi" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPER FOR TABELLEN" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELASJONER FOR TABELLEN" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Visningsstruktur" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11373,33 +11377,33 @@ msgstr "" msgid "Column names: " msgstr "Kolonnenavn: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Ugyldig parameter for CSV import: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Ugyldig format i CSV importen i linje %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Ugyldig antall kolonner i CSV importen i linje %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Dette tillegget støtter ikke komprimerte importeringer!" @@ -11407,7 +11411,7 @@ msgstr "Dette tillegget støtter ikke komprimerte importeringer!" msgid "MediaWiki Table" msgstr "MediaWiki Tabell" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." @@ -11425,9 +11429,9 @@ msgstr "Importer prosenter som ekte desimaler (12.00% til .12)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importer valuta ($5.00 til 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -11435,7 +11439,7 @@ msgstr "" "Den spesifiserte XML-filen var enten skadet eller ufulstendig. Korriger " "problemet og prøv igjen." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11445,23 +11449,23 @@ msgstr "Open Document regneark" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Den importerte filen inneholder ingen data!" @@ -14762,15 +14766,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14785,17 +14785,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14817,23 +14818,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Antall åpne tabeller." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Antall åpne tabeller." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14866,17 +14867,17 @@ msgstr "Tabellen %1$s har blitt opprettet." msgid "Variable name was expected." msgstr "Tabellnavnmal" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Ved begynnelsen av tabellen" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14899,19 +14900,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15659,7 +15660,7 @@ msgstr "Vis dump (skjema) av tabell" msgid "Invalid table name" msgstr "Ugylding tabellnavn" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16770,7 +16771,7 @@ msgid "at beginning of table" msgstr "Ved begynnelsen av tabellen" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16819,7 +16820,7 @@ msgstr "partisjonert" msgid "Edit partitioning" msgstr "Fjern partisjonering" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16950,11 +16951,11 @@ msgstr "VIEW navn" msgid "Column names" msgstr "Kolonnenavn" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Endre tabellens navn" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Go to database" msgid "Delete the view (DROP)" diff --git a/po/ne.po b/po/ne.po index d0dfeaf6df..2b50c52f71 100644 --- a/po/ne.po +++ b/po/ne.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Nepali %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3348,30 +3351,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "" @@ -3442,7 +3445,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3475,7 +3478,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3483,7 +3486,7 @@ msgid "With selected:" msgstr "" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3560,15 +3563,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3632,8 +3635,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3681,15 +3684,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "हटाउ" @@ -3700,7 +3703,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3750,8 +3753,8 @@ msgid "Table" msgstr "टेबल" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3759,25 +3762,25 @@ msgstr "टेबल" msgid "SQL" msgstr "" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3785,24 +3788,24 @@ msgid "Privileges" msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3813,16 +3816,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3830,16 +3833,16 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3852,34 +3855,34 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4445,16 +4448,16 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4465,102 +4468,102 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Created" msgid "Without PHP code" msgstr "निर्माण गरियो/गरिएको छ" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Created" msgid "Create PHP code" msgstr "निर्माण गरियो/गरिएको छ" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "" @@ -4686,41 +4689,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4728,24 +4731,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5410,13 +5413,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5434,12 +5437,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -7385,7 +7388,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "" @@ -7517,8 +7520,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7556,52 +7559,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7611,7 +7614,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8334,54 +8337,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8427,53 +8430,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8485,11 +8488,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9310,7 +9313,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9323,32 +9326,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9374,35 +9377,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9571,7 +9574,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9595,21 +9598,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9699,7 +9702,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9791,7 +9794,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9860,7 +9863,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9903,52 +9906,52 @@ msgstr "प्रयोगमा" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -9996,33 +9999,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10030,7 +10033,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -10043,15 +10046,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10059,23 +10062,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -12794,15 +12797,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "" @@ -12815,17 +12814,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "" @@ -12843,19 +12843,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "" @@ -12881,15 +12881,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12910,15 +12910,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13587,7 +13587,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14496,7 +14496,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14531,7 +14531,7 @@ msgstr "निर्माण:" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14649,11 +14649,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/nl.po b/po/nl.po index 59f38bf275..ba784dbe41 100644 --- a/po/nl.po +++ b/po/nl.po @@ -1,13 +1,13 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-02-08 11:22+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" @@ -47,7 +47,7 @@ msgid "Table comments:" msgstr "Tabelopmerkingen:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -101,7 +101,7 @@ msgstr "Type" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -163,12 +163,12 @@ msgid "Comments" msgstr "Opmerkingen" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Primaire sleutel" @@ -201,12 +201,12 @@ msgstr "Nee" #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -251,8 +251,8 @@ msgid "Tables" msgstr "Tabellen" #: db_export.php:66 libraries/Menu.php:323 libraries/Menu.php:430 -#: libraries/Util.php:3402 libraries/Util.php:3412 libraries/Util.php:3418 -#: libraries/Util.php:3698 libraries/Util.php:4335 libraries/Util.php:4352 +#: libraries/Util.php:3409 libraries/Util.php:3419 libraries/Util.php:3425 +#: libraries/Util.php:3705 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/central_columns.lib.php:725 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,7 +260,7 @@ msgstr "Tabellen" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -471,7 +471,7 @@ msgstr "Geometrie toevoegen" #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -501,7 +501,7 @@ msgstr "Geometrie toevoegen" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Starten" @@ -529,7 +529,7 @@ msgstr "Mislukt" msgid "Incomplete params" msgstr "Onvolledige parameters" -#: import.php:184 +#: import.php:186 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -538,15 +538,15 @@ msgstr "" "U probeerde waarschijnlijk een bestand te uploaden dat te groot is. Zie " "%sdocumentatie%s om deze limiet te omzeilen." -#: import.php:360 import.php:665 +#: import.php:362 import.php:667 msgid "Showing bookmark" msgstr "Bladwijzer tonen" -#: import.php:376 import.php:661 +#: import.php:378 import.php:663 msgid "The bookmark has been deleted." msgstr "De bladwijzer is verwijderd." -#: import.php:474 +#: import.php:476 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -556,12 +556,12 @@ msgstr "" "'open_basedir' ingeschakeld is zonder toegang tot de map %s (voor tijdelijke " "bestanden)." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:492 import.php:569 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "Bestand kon niet worden gelezen!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:503 import.php:518 import.php:543 import.php:558 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -571,7 +571,7 @@ msgstr "" "uploaden. De ondersteuning is niet geïmplementeerd of uitgeschakeld in de " "configuratie." -#: import.php:574 +#: import.php:576 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -582,22 +582,25 @@ msgstr "" "bestandsgrootte zoals opgegeven in de PHP-configuratie. Zie [doc@faq1-16]FAQ " "1.16[/doc]." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:628 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "" "De importeer-plugins konden niet worden geladen, controleer de installatie!" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:670 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "Bladwijzer %s is aangemaakt." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "Het importeren is geslaagd, %d query's uitgevoerd." +#: import.php:680 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "Het importeren is geslaagd, %d query's uitgevoerd." +msgstr[1] "Het importeren is geslaagd, %d query's uitgevoerd." -#: import.php:705 +#: import.php:711 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -606,7 +609,7 @@ msgstr "" "De maximale uitvoertijd is verstreken, als u het importeren wilt afmaken, " "%sresubmit dezelfde file%s opnieuw en de import zal hervat worden." -#: import.php:715 +#: import.php:721 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -620,7 +623,7 @@ msgid "Could not load the progress of the import." msgstr "Voortgang van de import kon niet worden ingelezen." #: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: libraries/Util.php:802 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Terug" @@ -715,10 +718,11 @@ msgstr "Informatie over PHP weergeven" msgid "Version information:" msgstr "Versie-informatie:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:449 libraries/Util.php:516 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Documentatie" @@ -1012,7 +1016,7 @@ msgid "Save & close" msgstr "Opslaan & sluiten" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Herstellen" @@ -1069,7 +1073,7 @@ 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:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:132 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 @@ -1084,7 +1088,7 @@ msgstr "Query simuleren" msgid "Matched rows:" msgstr "Overeenkomende rijen:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:137 libraries/Util.php:703 msgid "SQL query:" msgstr "SQL-query:" @@ -1143,12 +1147,12 @@ msgid "Other" msgstr "Andere" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:160 libraries/Util.php:1498 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:162 libraries/Util.php:1500 msgid "." msgstr "," @@ -1255,40 +1259,40 @@ msgid "Processes" msgstr "Processen" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:202 libraries/Util.php:1442 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:203 libraries/Util.php:1444 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:204 libraries/Util.php:1446 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:205 libraries/Util.php:1448 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:206 libraries/Util.php:1450 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:207 libraries/Util.php:1452 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:208 libraries/Util.php:1454 msgid "EiB" msgstr "EiB" @@ -1306,7 +1310,7 @@ msgstr "Questions" msgid "Traffic" msgstr "Verkeer" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4333 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Instellingen" @@ -1321,7 +1325,7 @@ msgstr "Voeg tenminste één variabele toe aan de reeks!" #: js/messages.php:219 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1524,7 +1528,7 @@ msgstr "Gegevens worden geanalyseerd…" msgid "Explain output" msgstr "Verklaar resultaat" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4329 #: 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:91 libraries/tracking.lib.php:284 @@ -1627,8 +1631,8 @@ msgstr "" "configuratie is mislukt. Standaard configuratie wordt gebruikt in de plaats…" #: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 -#: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 -#: libraries/Util.php:4357 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:581 libraries/Util.php:4332 libraries/Util.php:4347 +#: libraries/Util.php:4364 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 #: libraries/server_status_monitor.lib.php:313 prefs_manage.php:237 #: setup/frames/menu.inc.php:26 @@ -1782,7 +1786,7 @@ msgstr "Database kopiëren" msgid "Changing charset" msgstr "Karakterset aanpassen" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:377 libraries/Util.php:3291 msgid "Enable foreign key checks" msgstr "Controle op externe sleutelvelden inschakelen" @@ -1817,9 +1821,9 @@ msgstr "" #: js/messages.php:392 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 -#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 -#: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 -#: libraries/Util.php:4356 libraries/config/messages.inc.php:255 +#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3712 +#: libraries/Util.php:3713 libraries/Util.php:4331 libraries/Util.php:4346 +#: libraries/Util.php:4363 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:168 libraries/rte/rte_list.lib.php:149 #: libraries/server_privileges.lib.php:2513 #: libraries/server_privileges.lib.php:2592 @@ -1870,8 +1874,8 @@ msgstr "SQL-queryveld tonen" #: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 -#: libraries/Util.php:3703 libraries/Util.php:3704 +#: libraries/Index.php:721 libraries/Util.php:732 libraries/Util.php:1242 +#: libraries/Util.php:3710 libraries/Util.php:3711 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 #: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:182 @@ -2059,7 +2063,7 @@ msgid "No dependencies selected!" msgstr "Er zijn geen afhankelijkheden geselecteerd!" #: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2146,7 +2150,7 @@ msgid "Data point content" msgstr "Inhoud gegevenspunt" #: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Negeren" @@ -2389,7 +2393,7 @@ msgid "Select database first" msgstr "Selecteer eerst een database" #: js/messages.php:599 libraries/DisplayResults.php:5029 -#: libraries/Util.php:4217 +#: libraries/Util.php:4224 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" @@ -2668,63 +2672,63 @@ msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:773 libraries/Util.php:1664 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:775 libraries/Util.php:1666 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:777 libraries/Util.php:1668 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:779 libraries/Util.php:1670 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:781 libraries/Util.php:1672 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:783 libraries/Util.php:1674 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:785 libraries/Util.php:1676 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:787 libraries/Util.php:1678 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:789 libraries/Util.php:1680 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:791 libraries/Util.php:1682 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:793 libraries/Util.php:1684 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:795 libraries/Util.php:1686 msgid "Dec" msgstr "dec" @@ -2762,32 +2766,32 @@ msgid "Sun" msgstr "zo" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:816 libraries/Util.php:1691 msgid "Mon" msgstr "ma" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:818 libraries/Util.php:1693 msgid "Tue" msgstr "di" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:820 libraries/Util.php:1695 msgid "Wed" msgstr "wo" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:822 libraries/Util.php:1697 msgid "Thu" msgstr "do" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:824 libraries/Util.php:1699 msgid "Fri" msgstr "vr" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:826 libraries/Util.php:1701 msgid "Sat" msgstr "za" @@ -2928,9 +2932,9 @@ msgstr "Vul a.u.b. een geldige datum of tijd in" msgid "Please enter a valid HEX input" msgstr "Vul a.u.b.een geldige waarde in HEX in" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:679 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Fout" @@ -2982,18 +2986,18 @@ msgstr "Onverwachte tekens op lijn %s." msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "Onverwacht teken op lijn %1$s. Tab verwacht, \"%2$s\" gevonden." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Het bestaande configuratiebestand (%s) is niet leesbaar." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Verkeerde rechten ingesteld op het configuratiebestand, dit mag niet " "leesbaar zijn voor iedereen!" -#: libraries/Config.php:1519 +#: libraries/Config.php:1528 msgid "Font size" msgstr "Lettertypegrootte" @@ -3063,7 +3067,7 @@ msgstr "Tijdens de huidige sessie" msgid "Explain" msgstr "Verklaar" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1328 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profiling" @@ -3097,8 +3101,8 @@ msgid "History" msgstr "Geschiedenis" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3191,7 +3195,7 @@ msgstr "Verberg bewerkingen" msgid "Count:" msgstr "Aantal:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:339 libraries/Util.php:1298 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 @@ -3247,7 +3251,6 @@ msgid "Switch to dark theme" msgstr "Wissel naar donker thema" #: libraries/DatabaseInterface.php:1528 -#| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Instellen van de configuratie voor vergelijkingen is mislukt!" @@ -3430,9 +3433,9 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s overeenkomst in %2$s" msgstr[1] "%1$s overeenkomsten in %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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,30 +3492,30 @@ msgstr "Filter rijen" msgid "Search this table" msgstr "Zoek in deze tabel" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Begin" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Vorige" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Volgende" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Einde" @@ -3583,7 +3586,7 @@ msgstr "Bij benadering. Zie [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Uw SQL-query is succesvol uitgevoerd." @@ -3617,7 +3620,7 @@ msgid "Query took %01.4f seconds." msgstr "Query duurde %01.4f seconden." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3625,7 +3628,7 @@ msgid "With selected:" msgstr "Met geselecteerd:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3705,17 +3708,17 @@ msgstr "Upload afgebroken vanwege de extensie." msgid "Unknown error in file upload." msgstr "Onbekende fout bij het uploaden." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Fout bij het verplaatsen van het geüploade bestand, zie [doc@faq1-11]FAQ " "1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Fout bij het verplaatsen van het geüploade bestand." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Kan het geüploade bestand niet lezen." @@ -3779,8 +3782,8 @@ msgid "Keyname" msgstr "Sleutelnaam" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3828,15 +3831,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Verwijderen" @@ -3849,7 +3852,7 @@ msgstr "" "De indexen %1$s en %2$s lijken hetzelfde, mogelijk kan een van beide worden " "verwijderd." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3901,8 +3904,8 @@ msgid "Table" msgstr "Tabel" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3910,25 +3913,25 @@ msgstr "Tabel" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Zoeken" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Invoegen" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3936,24 +3939,24 @@ msgid "Privileges" msgstr "Rechten" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Handelingen" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Traceren" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3964,16 +3967,16 @@ msgstr "Triggers" msgid "Database seems to be empty!" msgstr "Database lijkt leeg te zijn!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Query opbouwen" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Routines" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3981,16 +3984,16 @@ msgstr "Routines" msgid "Events" msgstr "Gebeurtenissen" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Ontwerper" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Centrale kolommen" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4003,34 +4006,34 @@ msgid "User accounts" msgstr "Gebruikersaccounts" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binaire log" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicatie" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variabelen" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Karaktersets" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Engines" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Plug-ins" @@ -4670,16 +4673,16 @@ msgstr "Ruimtelijk" msgid "Max: %s%s" msgstr "Maximale grootte: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Statische analyse:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "%d fouten werden gevonden tijdens de analyse." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4690,98 +4693,98 @@ msgstr "%d fouten werden gevonden tijdens de analyse." msgid "MySQL said: " msgstr "MySQL meldt: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Verklaar SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Uitleg SQL overslaan" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "Analyseer uitleg op %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "Zonder PHP-code" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "Query verzenden" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Genereer PHP-code" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Inline bewerken" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "zo" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y om %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dagen, %s uren, %s minuten en %s seconden" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Ontbrekende parameter:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Ga naar database \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "De %s functionaliteit heeft last van een bekend probleem, zie %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Klik om te wisselen" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Blader op uw eigen pc:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selecteer uit de webserver uploadmap %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Er zijn geen bestanden om te uploaden!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Legen" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Uitvoeren" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Gebruikers" @@ -4911,11 +4914,11 @@ msgstr "Nieuwe kolom toevoegen" msgid "Attributes" msgstr "Attributen" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Lezen van het configuratiebestand is niet gelukt!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4924,31 +4927,31 @@ msgstr "" "foutmeldingen." # 'kon niet vanuit "%1$s" geladen worden' is juister. -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Standaard configuratiebestand kon niet geladen worden vanuit: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Ongeldige serverindex: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ongeldige hostnaam voor server %1$s. Controleer uw configuratie." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Ongeldige authenticatiemethode opgegeven in configuratie:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4960,24 +4963,24 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin gebruikt nu de standaard tijdzone van " "de database server." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "U moet upgraden naar %s %s of hoger." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Fout: token niet hetzelfde" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "poging om GLOBALS te overschrijven" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "mogelijk misbruik" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "numerieke toets gedetecteerd" @@ -5724,13 +5727,13 @@ msgstr "Kolomnamen in de eerste rij plaatsen" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Kolommen ingesloten door" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Kolommen omgezet met wisselteken" @@ -5748,12 +5751,12 @@ msgstr "Verwijder CRLF-tekens uit kolommen" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Kolommen beëindigd met" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Regels beëindigd door" @@ -7919,7 +7922,7 @@ msgid "Table %s has been emptied." msgstr "Tabel %s is leeggemaakt." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "View %s werd verwijderd." @@ -8053,8 +8056,8 @@ msgid "No data to display" msgstr "Geen gegevens om weer te geven" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8092,52 +8095,52 @@ msgstr[1] "De namen '%s' zijn gereserveerde MySQL sleutelwoorden." msgid "No column selected." msgstr "Geen kolom geselecteerd." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "De geselecteerde kolommen zijn met succes verplaatst." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Fout in query" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Veranderen" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Index" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Ruimtelijk" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Volledige tekst" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Onderscheidbare waarden" @@ -8147,7 +8150,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "De extensie %s ontbreekt. Controleer uw PHP-configuratie." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Geen verandering" @@ -8951,56 +8954,56 @@ msgstr "MySQL gaf een lege resultatenset terug (0 rijen)." msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK is uitgevoerd]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Klik op de \"Structuur\"-link om de structuur aan te passen." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Ga naar database: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Instellingen voor %s wijzigen" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Ga naar tabel: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Structuur van %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Ga naar view: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9049,55 +9052,55 @@ msgstr "Of" msgid "web server upload directory:" msgstr "uploadmap op webserver:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Aanpassen/Invoegen" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Herstart invoegen met %s rijen" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "en dan" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Toevoegen als nieuwe rij" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Toevoegen als nieuwe rij en foutmeldingen negeren" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Toon insert-query" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Terug" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Een nieuwe rij toevoegen" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Ga terug naar deze pagina" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Volgende rij bewerken" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9109,11 +9112,11 @@ msgstr "" msgid "Value" msgstr "Waarde" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Toont SQL-query" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Toegevoegd rijnummer: %1$d" @@ -9993,7 +9996,7 @@ msgstr "Repareer tabel" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Gegevens of tabel verwijderen" @@ -10006,32 +10009,32 @@ msgid "Delete the table (DROP)" msgstr "De tabel verwijderen (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analyseren" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Controleren" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimaliseren" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Heropbouwen" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Repareren" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Afbreken" @@ -10057,35 +10060,35 @@ msgstr "Partitionering verwijderen" msgid "Check referential integrity:" msgstr "Controleer referentiële integriteit:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Kan de tabel niet naar dezelfde verplaatsen!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Kan de tabel niet naar dezelfde kopiëren!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s is verplaatst naar %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabel %s is gekopieerd naar %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "De tabelnaam is leeg!" @@ -10264,7 +10267,7 @@ msgstr "Dataexport-opties" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Gegevens worden geëxporteerd voor tabel" @@ -10288,21 +10291,21 @@ msgstr "Definitie" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tabelstructuur voor tabel" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Structuur voor de view" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Stand-in structuur voor view" @@ -10393,7 +10396,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Gegevens:" @@ -10495,7 +10498,7 @@ msgid "Data creation options" msgstr "Data-aanmaakopties" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Tabel leegmaken voor invoegen" @@ -10579,7 +10582,7 @@ msgstr "Het lijkt erop dat uw database programmaroutines gebruikt;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "alias uitvoer mogelijk niet betrouwbaar in alle gevallen." @@ -10621,52 +10624,52 @@ msgstr "in gebruik" msgid "It appears your database uses views;" msgstr "Het lijkt erop dat uw databaseviews gebruikt;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Beperkingen voor geëxporteerde tabellen" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Beperkingen voor tabel" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indexen voor geëxporteerde tabellen" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indexen voor tabel" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT voor geëxporteerde tabellen" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT voor een tabel" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYPES VOOR TABEL" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIES VOOR TABEL" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Het lijkt erop dat uw tabel triggers gebruikt;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "(Zie onder voor de actuele view)" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Fout bij het lezen van gegevens:" @@ -10722,15 +10725,15 @@ msgstr "" msgid "Column names: " msgstr "Kolomnamen: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Ongeldige parameter voor CSV-import: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10739,18 +10742,18 @@ msgstr "" "Ongeldige kolom (%s) gespecificeerd! Zorg ervoor dat de kolomnamen juist " "gespeld zijn, gescheiden door komma's en niet voorzien van aanhalingstekens." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Ongeldig formaat van CSV-invoer op regel %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Verkeerd aantal kolommen in CSV-invoer op regel %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Deze plugin heeft geen ondersteuning voor gecomprimeerde imports!" @@ -10758,7 +10761,7 @@ msgstr "Deze plugin heeft geen ondersteuning voor gecomprimeerde imports!" msgid "MediaWiki Table" msgstr "MediaWiki-tabel" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Ongeldig formaat van mediawiki-invoer op regel:
%s." @@ -10771,9 +10774,9 @@ msgstr "Percentages als decimalen importeren (12.00% naar ,12)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Valuta importeren ($5.00 naar 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10781,7 +10784,7 @@ msgstr "" "Het XML-bestand was beschadigd of onvolledig. Repareer het bestand en " "probeer opnieuw." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Kon OpenDocument-rekenblad niet inlezen!" @@ -10789,14 +10792,14 @@ msgstr "Kon OpenDocument-rekenblad niet inlezen!" msgid "ESRI Shape File" msgstr "ESRI-vormbestand" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" "Er is een fout opgetreden bij het importeren van het ESRI-vormbestand: \"%s" "\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10804,12 +10807,12 @@ msgstr "" "U probeerde een ongeldig bestand te importeren, of het geïmporteerde bestand " "bevat ongeldige gegevens!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "De extensie MySQL Spatial ondersteunt ESRI-type \"%s\" niet." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Het geïmporteerde bestand bevat geen gegevens!" @@ -13862,15 +13865,11 @@ msgstr "%1$d waarden werden verwacht, maar %2$d gevonden." msgid "An opening bracket followed by a set of values was expected." msgstr "Een openingshaakje gevolgd door een set met waardes werd verwacht." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "Een openingshaakje werd verwacht." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "Een komma of een sluitingshaakje werd verwacht" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Een komma of een sluitingshaakje werd verwacht." @@ -13883,17 +13882,18 @@ msgstr "Een sluitingshaakje werd verwacht." msgid "Unrecognized data type." msgstr "Onbekend gegevenstype." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Een alias was eerder al gevonden." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Onverwachte punt." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Een alias werd verwacht." @@ -13911,19 +13911,19 @@ msgstr "Een offset werd verwacht." msgid "This option conflicts with \"%1$s\"." msgstr "Deze optie conflicteert met \"%1$s\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "De oude naam van de tabel werd verwacht." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Sleutelwoord \"TO\" werd verwacht." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "De nieuwe naam van de tabel werd verwacht." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Een hernoem bewerking werd verwacht." @@ -13949,15 +13949,15 @@ msgstr "Eindquote %1$s werd verwacht." msgid "Variable name was expected." msgstr "Naam van variabele werd verwacht." -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Onverwacht begin van opdracht." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Opdracht type niet herkent." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Er is geen transactie gestart." @@ -13980,15 +13980,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Sleutelwoord niet herkent." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "De naam van de entiteit werd verwacht." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Er werd minimaal één kolomdefinitie verwacht." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Een \"RETURNS\" sleutelwoord werd verwacht." @@ -14688,7 +14688,7 @@ msgstr "Een export (schema) van tabel bekijken" msgid "Invalid table name" msgstr "Ongeldige tabelnaam" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Rij: %1$s, Kolom: %2$s, Fout: %3$s" @@ -15615,7 +15615,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:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Partities %s" @@ -15648,7 +15648,7 @@ msgstr "Partitietabel" msgid "Edit partitioning" msgstr "Partitionering bewerken" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "View bewerken" @@ -15763,11 +15763,11 @@ msgstr "VIEW-naam" msgid "Column names" msgstr "Kolomnamen" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "View hernoemen naar" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "De VIEW verwijderen (DROP)" @@ -17064,6 +17064,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert is ingesteld op 0" +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Een komma of een sluitingshaakje werd verwacht" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/pa.po b/po/pa.po index e1d86f9785..c4ebe902c9 100644 --- a/po/pa.po +++ b/po/pa.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2014-01-06 12:13+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Punjabi %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3336,30 +3339,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "" @@ -3432,7 +3435,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3465,7 +3468,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3473,7 +3476,7 @@ msgid "With selected:" msgstr "" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3549,15 +3552,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3621,8 +3624,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3670,15 +3673,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -3689,7 +3692,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3739,8 +3742,8 @@ msgid "Table" msgstr "" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3748,25 +3751,25 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "ਲੱਭੋ" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3774,24 +3777,24 @@ msgid "Privileges" msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3802,16 +3805,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3819,16 +3822,16 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3841,34 +3844,34 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4440,16 +4443,16 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4460,98 +4463,98 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "ਐਤ" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "" @@ -4679,41 +4682,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4721,24 +4724,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5397,13 +5400,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5421,12 +5424,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -7389,7 +7392,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "View %s has been dropped." @@ -7521,8 +7524,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7562,52 +7565,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7617,7 +7620,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8336,54 +8339,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8429,53 +8432,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8487,11 +8490,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9313,7 +9316,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9326,32 +9329,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9377,35 +9380,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9574,7 +9577,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9598,21 +9601,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9702,7 +9705,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9794,7 +9797,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9863,7 +9866,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9905,52 +9908,52 @@ msgstr "" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -9998,33 +10001,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10032,7 +10035,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -10045,15 +10048,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10061,23 +10064,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -12806,15 +12809,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "Database %1$s has been created." @@ -12829,17 +12828,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "Database %1$s has been created." msgid "An alias was expected." @@ -12859,19 +12859,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "Database %1$s has been created." msgid "A rename operation was expected." @@ -12899,15 +12899,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12928,17 +12928,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13596,7 +13596,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14503,7 +14503,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14538,7 +14538,7 @@ msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14655,11 +14655,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 535a768f03..249a68d829 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ msgid "Table comments:" msgstr "" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -102,7 +102,7 @@ msgstr "" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -164,12 +164,12 @@ msgid "Comments" msgstr "" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "" @@ -202,12 +202,12 @@ msgstr "" #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -252,8 +252,8 @@ msgid "Tables" msgstr "" #: db_export.php:66 libraries/Menu.php:323 libraries/Menu.php:430 -#: libraries/Util.php:3402 libraries/Util.php:3412 libraries/Util.php:3418 -#: libraries/Util.php:3698 libraries/Util.php:4335 libraries/Util.php:4352 +#: libraries/Util.php:3409 libraries/Util.php:3419 libraries/Util.php:3425 +#: libraries/Util.php:3705 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/central_columns.lib.php:725 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 @@ -261,7 +261,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -463,7 +463,7 @@ msgstr "" #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -493,7 +493,7 @@ msgstr "" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "" @@ -519,69 +519,71 @@ msgstr "" msgid "Incomplete params" msgstr "" -#: import.php:184 +#: import.php:186 #, possible-php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " "%sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:360 import.php:665 +#: import.php:362 import.php:667 msgid "Showing bookmark" msgstr "" -#: import.php:376 import.php:661 +#: import.php:378 import.php:663 msgid "The bookmark has been deleted." msgstr "" -#: import.php:474 +#: import.php:476 #, possible-php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " "without access to the %s directory (for temporary files)." msgstr "" -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:492 import.php:569 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:503 import.php:518 import.php:543 import.php:558 +#: libraries/File.php:584 #, possible-php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:574 +#: import.php:576 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[doc@faq1-16]FAQ 1.16[/doc]." msgstr "" -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:628 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:670 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, possible-php-format msgid "Bookmark %s has been created." msgstr "" -#: import.php:677 +#: import.php:680 #, possible-php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "" +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "" +msgstr[1] "" -#: import.php:705 +#: import.php:711 #, possible-php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " "same file%s and import will resume." msgstr "" -#: import.php:715 +#: import.php:721 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -592,7 +594,7 @@ msgid "Could not load the progress of the import." msgstr "" #: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: libraries/Util.php:802 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "" @@ -685,10 +687,11 @@ msgstr "" msgid "Version information:" msgstr "" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:449 libraries/Util.php:516 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "" @@ -932,7 +935,7 @@ msgid "Save & close" msgstr "" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "" @@ -989,7 +992,7 @@ msgstr "" msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:132 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 @@ -1004,7 +1007,7 @@ msgstr "" msgid "Matched rows:" msgstr "" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:137 libraries/Util.php:703 msgid "SQL query:" msgstr "" @@ -1063,12 +1066,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:160 libraries/Util.php:1498 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:162 libraries/Util.php:1500 msgid "." msgstr "" @@ -1170,40 +1173,40 @@ msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:202 libraries/Util.php:1442 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:203 libraries/Util.php:1444 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:204 libraries/Util.php:1446 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:205 libraries/Util.php:1448 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:206 libraries/Util.php:1450 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:207 libraries/Util.php:1452 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:208 libraries/Util.php:1454 msgid "EiB" msgstr "" @@ -1221,7 +1224,7 @@ msgstr "" msgid "Traffic" msgstr "" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4333 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "" @@ -1236,7 +1239,7 @@ msgstr "" #: js/messages.php:219 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1425,7 +1428,7 @@ msgstr "" msgid "Explain output" msgstr "" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4329 #: 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:91 libraries/tracking.lib.php:284 @@ -1519,8 +1522,8 @@ msgid "" msgstr "" #: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 -#: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 -#: libraries/Util.php:4357 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:581 libraries/Util.php:4332 libraries/Util.php:4347 +#: libraries/Util.php:4364 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 #: libraries/server_status_monitor.lib.php:313 prefs_manage.php:237 #: setup/frames/menu.inc.php:26 @@ -1674,7 +1677,7 @@ msgstr "" msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:377 libraries/Util.php:3291 msgid "Enable foreign key checks" msgstr "" @@ -1708,9 +1711,9 @@ msgstr "" #: js/messages.php:392 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 -#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 -#: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 -#: libraries/Util.php:4356 libraries/config/messages.inc.php:255 +#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3712 +#: libraries/Util.php:3713 libraries/Util.php:4331 libraries/Util.php:4346 +#: libraries/Util.php:4363 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:168 libraries/rte/rte_list.lib.php:149 #: libraries/server_privileges.lib.php:2513 #: libraries/server_privileges.lib.php:2592 @@ -1759,8 +1762,8 @@ msgstr "" #: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 -#: libraries/Util.php:3703 libraries/Util.php:3704 +#: libraries/Index.php:721 libraries/Util.php:732 libraries/Util.php:1242 +#: libraries/Util.php:3710 libraries/Util.php:3711 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 #: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:182 @@ -1937,7 +1940,7 @@ msgid "No dependencies selected!" msgstr "" #: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2020,7 +2023,7 @@ msgid "Data point content" msgstr "" #: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "" @@ -2245,7 +2248,7 @@ msgid "Select database first" msgstr "" #: js/messages.php:599 libraries/DisplayResults.php:5029 -#: libraries/Util.php:4217 +#: libraries/Util.php:4224 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" @@ -2503,63 +2506,63 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:773 libraries/Util.php:1664 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:775 libraries/Util.php:1666 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:777 libraries/Util.php:1668 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:779 libraries/Util.php:1670 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:781 libraries/Util.php:1672 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:783 libraries/Util.php:1674 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:785 libraries/Util.php:1676 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:787 libraries/Util.php:1678 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:789 libraries/Util.php:1680 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:791 libraries/Util.php:1682 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:793 libraries/Util.php:1684 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:795 libraries/Util.php:1686 msgid "Dec" msgstr "" @@ -2597,32 +2600,32 @@ msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:816 libraries/Util.php:1691 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:818 libraries/Util.php:1693 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:820 libraries/Util.php:1695 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:822 libraries/Util.php:1697 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:824 libraries/Util.php:1699 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:826 libraries/Util.php:1701 msgid "Sat" msgstr "" @@ -2763,9 +2766,9 @@ msgstr "" msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:679 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "" @@ -2815,16 +2818,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, possible-php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1519 +#: libraries/Config.php:1528 msgid "Font size" msgstr "" @@ -2894,7 +2897,7 @@ msgstr "" msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1328 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" @@ -2928,8 +2931,8 @@ msgid "History" msgstr "" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3022,7 +3025,7 @@ msgstr "" msgid "Count:" msgstr "" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:339 libraries/Util.php:1298 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 @@ -3255,9 +3258,9 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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,30 +3317,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "" @@ -3408,7 +3411,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3441,7 +3444,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3449,7 +3452,7 @@ msgid "With selected:" msgstr "" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3525,15 +3528,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3597,8 +3600,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3646,15 +3649,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -3665,7 +3668,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3715,8 +3718,8 @@ msgid "Table" msgstr "" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3724,25 +3727,25 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3750,24 +3753,24 @@ msgid "Privileges" msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3778,16 +3781,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3795,16 +3798,16 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3817,34 +3820,34 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4410,16 +4413,16 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, possible-php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4430,98 +4433,98 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, possible-php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, possible-php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, possible-php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, possible-php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, possible-php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "" @@ -4647,41 +4650,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, possible-php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, possible-php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, possible-php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, possible-php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, possible-php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4689,24 +4692,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, possible-php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5363,13 +5366,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5387,12 +5390,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -7331,7 +7334,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, possible-php-format msgid "View %s has been dropped." msgstr "" @@ -7461,8 +7464,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, possible-php-format msgid "Table %1$s has been altered successfully." @@ -7500,52 +7503,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, possible-php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7555,7 +7558,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8274,54 +8277,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, possible-php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, possible-php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, possible-php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, possible-php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, possible-php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8367,53 +8370,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, possible-php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8425,11 +8428,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, possible-php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9249,7 +9252,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9262,32 +9265,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9313,35 +9316,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, possible-php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, possible-php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, possible-php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, possible-php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9510,7 +9513,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9534,21 +9537,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9638,7 +9641,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9730,7 +9733,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9799,7 +9802,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9841,52 +9844,52 @@ msgstr "" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, possible-php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -9934,33 +9937,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, possible-php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, possible-php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, possible-php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, possible-php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -9968,7 +9971,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, possible-php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -9981,15 +9984,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -9997,23 +10000,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, possible-php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, possible-php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -12726,15 +12729,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "" @@ -12747,17 +12746,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "" @@ -12775,19 +12775,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "" @@ -12813,15 +12813,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12842,15 +12842,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13508,7 +13508,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, possible-php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14404,7 +14404,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14437,7 +14437,7 @@ msgstr "" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14552,11 +14552,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/pl.po b/po/pl.po index 5a53656064..f70d0c96a1 100644 --- a/po/pl.po +++ b/po/pl.po @@ -1,9 +1,9 @@ # iMutrix , 2012. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-12-31 14:50+0000\n" "Last-Translator: Sebastian Weremczuk \n" "Language-Team: Polish %2$s" msgstr[1] "%1$s dopasowania w %2$s" msgstr[2] "%1$s dopasowań w %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3493,30 +3498,30 @@ msgstr "Filtrowanie wierszy" msgid "Search this table" msgstr "Szukaj w tej tabeli" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Początek" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Poprzednie" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Następne" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Koniec" @@ -3589,7 +3594,7 @@ msgstr "Może być w przybliżeniu. Zobacz [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Zapytanie SQL zostało wykonane pomyślnie." @@ -3624,7 +3629,7 @@ msgid "Query took %01.4f seconds." msgstr "Wykonanie zapytania trwało %01.4f sekund(y)." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3632,7 +3637,7 @@ msgid "With selected:" msgstr "Z zaznaczonymi:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3711,16 +3716,16 @@ msgstr "Przesłanie pliku zostało zatrzymane przez rozszerzenie." msgid "Unknown error in file upload." msgstr "Nieznany błąd w przesyłania pliku." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Błąd przenoszenia przesłanego pliku, patrz [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Błąd podczas przenoszenia plików na serwerze." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Nie można odczytać przesłanego pliku." @@ -3784,8 +3789,8 @@ msgid "Keyname" msgstr "Nazwa klucza" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3833,15 +3838,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Usuń" @@ -3854,7 +3859,7 @@ msgstr "" "Indeksy %1$s i %2$s wyglądają na identyczne i jeden z nich mógłby zostać " "usunięty." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3904,8 +3909,8 @@ msgid "Table" msgstr "Tabela" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3913,25 +3918,25 @@ msgstr "Tabela" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Szukaj" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Wstaw" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3939,24 +3944,24 @@ msgid "Privileges" msgstr "Uprawnienia" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operacje" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Śledzenie" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3967,16 +3972,16 @@ msgstr "Wyzwalacze" msgid "Database seems to be empty!" msgstr "Baza danych wydaje się pusta!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Zapytanie" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Procedury i funkcje" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3984,16 +3989,16 @@ msgstr "Procedury i funkcje" msgid "Events" msgstr "Zdarzenia" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Widok projektu" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Centralne kolumny" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4006,34 +4011,34 @@ msgid "User accounts" msgstr "Konta użytkowników" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Dziennik binarny" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikacja" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Zmienne" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Kodowania znaków" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Mechanizmy" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Wtyczki" @@ -4667,18 +4672,18 @@ msgstr "Przestrzenny" msgid "Max: %s%s" msgstr "Maksymalny rozmiar: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Dane statyczne" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "%d błędów zostało znalezionych podczas analizy." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4689,36 +4694,36 @@ msgstr "%d błędów zostało znalezionych podczas analizy." msgid "MySQL said: " msgstr "MySQL zwrócił komunikat: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Wyjaśnij SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Pomiń wyjaśnienie SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Bez kodu PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Wyślij zapytanie" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Utwórz kod PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -4726,67 +4731,67 @@ msgid "Edit inline" msgstr "Edytuj indeks" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Nie" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dni, %s godzin, %s minut i %s sekund" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Brakuje parametru:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Przejście do bazy danych \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkcja %s jest dotknięta przez znany błąd, zobacz %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Kliknij, aby przełączać" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Wyszukaj w komputerze:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Wybierz katalog serwera WWW dla uploadu %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Brak plików do załadowania!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Opróżnij" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Wykonaj" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Użytkownicy" @@ -4914,11 +4919,11 @@ msgstr "Dodaj nową kolumnę" msgid "Attributes" msgstr "Atrybuty" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Nie można odczytać pliku konfiguracyjnego!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4926,32 +4931,32 @@ msgstr "" "To zazwyczaj oznacza, że jest błąd składni w tym, sprawdź wszelkie błędy " "poniżej." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nie można załadować domyślnej konfiguracji z: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Niewłaściwy indeks serwera: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Niewłaściwa nazwa hosta serwera %1$s. Proszę przyjrzeć się konfiguracji." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Serwer %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "W konfiguracji ustawiono błędną metodę uwierzytelniania:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4962,24 +4967,24 @@ msgstr "" "pliki konfiguracyjne [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em]. " "phpMyAdmin obecnie używa domyślnej strefy czasowej serwera." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Należy uaktualnić do %s %s lub nowszej." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Błąd: Token niedopasowany" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Próba nadpisania GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "można wykorzystać" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "wykryty klawisz numeryczny" @@ -5764,13 +5769,13 @@ msgstr "Umieść nazwy kolumn w pierwszym wierszu" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Kolumn ujęte w" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Columns escaped with:" msgid "Columns escaped with" @@ -5790,12 +5795,12 @@ msgstr "Usuń znaki nowej lini z kolumn" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Kolumny zakończone" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Linie zakończone z" @@ -8178,7 +8183,7 @@ msgid "Table %s has been emptied." msgstr "Tabela %s została opróżniona." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8316,8 +8321,8 @@ msgid "No data to display" msgstr "Brak danych do wyświetlenia" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8367,53 +8372,53 @@ msgstr[2] "Nazwa kolumny '%s' jest słowem kluczowym MySQL." msgid "No column selected." msgstr "Nie wybrano żadnej kolumny." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Kolumny przeniesiono pomyślnie." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Błąd zapytania" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Zmień" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Przestrzenny" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Pełny tekst" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Różne wartości" @@ -8423,7 +8428,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Brak rozszerzenia %s. Proszę sprawdzić konfigurację PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Bez zmian" @@ -9263,17 +9268,17 @@ msgstr "MySQL zwrócił pusty wynik (zero wierszy)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "Zobacz zawartość struktury klikając jej nazwę." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9281,42 +9286,42 @@ 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:1263 +#: libraries/import.lib.php:1264 #, 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:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Idź do bazy danych: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Edytuj ustawienia dla %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Przejdź do tabeli: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Przejdź do widoku: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9364,48 +9369,48 @@ msgstr "Lub" msgid "web server upload directory:" msgstr "katalog przesyłania serwera web:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Edycja/Wstaw" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Kontynuuj wstawianie %s wierszy" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "i potem" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Wstaw jako nowy wiersz" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Wstaw jko nowy wiersz i ignoruj błędy" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Pokaż wstawiane zapytanie" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Wróć" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Wstaw nowy wiersz" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Powrót do tej strony" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Edytuj następny wiersz" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9415,7 +9420,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9427,11 +9432,11 @@ msgstr "" msgid "Value" msgstr "Wartość" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Wyświetl zapytanie SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Id wstawionego wiersza: %1$d" @@ -10301,7 +10306,7 @@ msgstr "Napraw tabelę" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Usuń dane lub tabelę" @@ -10314,32 +10319,32 @@ msgid "Delete the table (DROP)" msgstr "Usuń tabelę (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analizuj" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Sprawdź" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optymalizuj" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Przebuduj" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Napraw" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10367,37 +10372,37 @@ msgstr "Usuń partycjonowanie" msgid "Check referential integrity:" msgstr "Sprawdź spójność powiązań:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Nie można przenieść tabeli do niej samej!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Nie można przekopiować tabeli do niej samej!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s została przeniesiona do %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s została przekopiowana do %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Nazwa tabeli jest pusta!" @@ -10576,7 +10581,7 @@ msgstr "Opcje eksportu danych" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Zrzut danych tabeli" @@ -10600,21 +10605,21 @@ msgstr "Określenie" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struktura tabeli dla tabeli" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktura widoku" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Zastąpiona struktura widoku" @@ -10706,7 +10711,7 @@ msgid "Database:" msgstr "Baza danych:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Dane:" @@ -10815,7 +10820,7 @@ msgid "Data creation options" msgstr "Opcje tworzenia danych" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Tabela Truncate przed wstawieniem" @@ -10902,7 +10907,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10948,57 +10953,57 @@ msgstr "w użyciu" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Ograniczenia dla zrzutów tabel" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Ograniczenia dla tabeli" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indeksy dla zrzutów tabel" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Wewnątrz tabel:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT dla tabeli" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "TYPY MIME TABELI" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELACJE TABELI" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Struktura widoku" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Błąd odczytu danych:" @@ -11053,15 +11058,15 @@ msgstr "" msgid "Column names: " msgstr "Nazwy kolumn: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Niewłaściwy parametr importu CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -11070,18 +11075,18 @@ msgstr "" "Nieprawidłowa kolumna (%s) określona! Upewnij się, że nazwy kolumn są " "napisane poprawnie, oddzielone przecinkami, a nie w cudzysłowie." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Niewłaściwy format w linii %d danych wejściowych CSV." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Niewłaściwa suma kolumn w CSV w linii %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Ten moduł nie obsługuje skompresowanych importów!" @@ -11089,7 +11094,7 @@ msgstr "Ten moduł nie obsługuje skompresowanych importów!" msgid "MediaWiki Table" msgstr "Tabela MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Nieprawidłowy format danych wejściowych mediawiki w wierszu:
%s." @@ -11103,9 +11108,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importuj waluty (np. $5.00 do 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -11113,7 +11118,7 @@ msgstr "" "Plik XML ma nieprawidłową strukturę lub jest niekompletny. Proszę skorygować " "problem i spróbować ponownie." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11123,12 +11128,12 @@ msgstr "Otwórz dokument arkusza kalkulacyjnego" msgid "ESRI Shape File" msgstr "Plik kształtu ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Wystąpił błąd podczas importowania pliku kształtów ESRI: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -11136,12 +11141,12 @@ msgstr "" "Próbujesz importować nieprawidłowy plik lub zaimportować plik zawierający " "nieprawidłowe dane!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Spatial Extension nie obsługuje typu ESRI \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Importowany plik nie zawiera żadnych danych!" @@ -14318,15 +14323,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14341,17 +14342,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14373,23 +14375,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Liczba otwartych tabel." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Liczba otwartych tabel." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14422,17 +14424,17 @@ msgstr "Zdarzenie %1$s zostało utworzone." msgid "Variable name was expected." msgstr "Nazwa szablonu tabeli" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Na początku tabeli" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14455,19 +14457,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15176,7 +15178,7 @@ msgstr "Pokaż zrzut (schemat) tabeli" msgid "Invalid table name" msgstr "Niewłaściwa nazwa tabeli" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16221,7 +16223,7 @@ msgid "at beginning of table" msgstr "Na początku tabeli" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16270,7 +16272,7 @@ msgstr "partycjonowanie" msgid "Edit partitioning" msgstr "Usuń partycjonowanie" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Edycja widoku" @@ -16397,11 +16399,11 @@ msgstr "Nazwa widoku" msgid "Column names" msgstr "Nazwy kolumn" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Zmień nazwę widoku na" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Usuń widok (DROP)" diff --git a/po/pt.po b/po/pt.po index d6aec3ab37..3d755b9c65 100644 --- a/po/pt.po +++ b/po/pt.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-12-27 20:05+0000\n" "Last-Translator: João Machaqueiro \n" "Language-Team: Portuguese %2$s" msgstr[0] "%1$s resultado em %2$s" msgstr[1] "%1$s resultados em %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3604,30 +3608,30 @@ msgstr "Filtrar registos" msgid "Search this table" msgstr "Pesquisar esta tabela" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Início" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Seguinte" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Fim" @@ -3700,7 +3704,7 @@ msgstr "Pode ser aproximado. Veja o [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "A sua consulta SQL foi executada com êxito." @@ -3735,7 +3739,7 @@ msgid "Query took %01.4f seconds." msgstr "A consulta demorou %01.4f segundos." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3743,7 +3747,7 @@ msgid "With selected:" msgstr "Com os seleccionados:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3825,15 +3829,15 @@ msgstr "Carregamento do ficheiro parado pela extensão." msgid "Unknown error in file upload." msgstr "Erro desconhecido no upload do ficheiro." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Erro ao mover o ficheiro carregado, veja [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Erro ao mover o arquivo enviado." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Ficheiro carregado não pode ser lido." @@ -3897,8 +3901,8 @@ msgid "Keyname" msgstr "Nome da chave" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3946,15 +3950,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Elimina" @@ -3966,7 +3970,7 @@ msgid "" msgstr "" "Os Índices %1$s e %2$s parecem ser iguais ou um deles pode ter sido removido." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4016,8 +4020,8 @@ msgid "Table" msgstr "Tabela" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4025,25 +4029,25 @@ msgstr "Tabela" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Pesquisar" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Insere" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4051,24 +4055,24 @@ msgid "Privileges" msgstr "Privilégios" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operações" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Rastreando" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4079,16 +4083,16 @@ msgstr "Acionadores" msgid "Database seems to be empty!" msgstr "A Base de Dados aparenta estar vazia!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Pesquisa por formulário" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rotinas" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4096,16 +4100,16 @@ msgstr "Rotinas" msgid "Events" msgstr "Eventos" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Desenhador" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Colunas centrais" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4118,34 +4122,34 @@ msgid "User accounts" msgstr "Contas de usuário" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Registo binário" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicação" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variáveis" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Mapas de Caracteres" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Motores" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Plugins" @@ -4778,18 +4782,18 @@ msgstr "Espacial" msgid "Max: %s%s" msgstr "Tamanho máximo: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Dados estáticos" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, fuzzy, php-format msgid "%d errors were found during analysis." msgstr "%d erros foram encontrados na análise." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4800,36 +4804,36 @@ msgstr "%d erros foram encontrados na análise." msgid "MySQL said: " msgstr "Mensagens do MySQL : " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Saltar Explicar SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Sem código PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Executar Consulta" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Criar código PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -4837,67 +4841,67 @@ msgid "Edit inline" msgstr "Vista de impressão" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%B-%Y às %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dias, %s horas, %s minutos e %s segundos" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Parâmetros em falta:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Saltar para a Base de Dados \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A funcionalidade %s é afectada por um bug conhecido, veja %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Clique para alternar" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Procurar no seu computador:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, 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:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Não existem ficheiros para fazer upload!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Limpa" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Executar" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Utilizadores" @@ -5031,11 +5035,11 @@ msgstr "Adicionar nova coluna" msgid "Attributes" msgstr "Atributos" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Falhou ao ler o arquivo de configuração!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -5043,33 +5047,33 @@ msgstr "" "Isto geralmente significa que há um erro de sintaxe, por favor verifique " "qualquer erro mostrado abaixo." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Não foi possível carregar configuração padrão de: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Índice de servidor inválido: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome de servidor inválido para o servidor %1$s. Verifique as suas " "configurações." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Servidor %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Método de autenticação definido nas configurações inválido:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5077,24 +5081,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "deve actualizar para %s %s ou mais recente." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Erro: testemunho inválido ou trocado" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Tentativa de sobrescrever GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "possível 'exploit'" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "Tecla numérica detectada" @@ -5857,13 +5861,13 @@ msgstr "Colocar os nomes das colunas na primeira linha" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Colunas delimitadas com" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Colunas precedidas com" @@ -5881,12 +5885,12 @@ msgstr "Remover caracteres CRLF nas colunas" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Colunas terminadas com" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Linhas terminadas com" @@ -8145,7 +8149,7 @@ msgid "Table %s has been emptied." msgstr "A tabela %s foi limpa." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8288,8 +8292,8 @@ msgid "No data to display" msgstr "Dados não encontrados." #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." @@ -8335,56 +8339,56 @@ msgstr[1] "" msgid "No column selected." msgstr "Nenhuma coluna seleccionada." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Tipo de Query" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Muda" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Índice" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Texto Completo" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Session value" msgid "Distinct values" @@ -8398,7 +8402,7 @@ msgstr "" "PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Sem alterações" @@ -9201,55 +9205,55 @@ msgstr "MySQL não retornou nenhum registo." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Sem bases de dados" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Sem bases de dados" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Somente a estrutura" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9300,54 +9304,54 @@ msgstr "Ou" msgid "web server upload directory:" msgstr "Directoria no servidor web para fazer upload" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Inserir/Editar" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Insere como novo registo" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Voltar atrás" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Inserir novo registo" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 #, fuzzy msgid "Go back to this page" msgstr "Voltar atrás" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Editar próxima coluna" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9359,12 +9363,12 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 #, fuzzy msgid "Showing SQL query" msgstr "Mostrar queries completos" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10252,7 +10256,7 @@ msgstr "Reparar tabela" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10268,34 +10272,34 @@ msgid "Delete the table (DROP)" msgstr "Sem bases de dados" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 #, fuzzy msgid "Check" msgstr "Checo" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 #, fuzzy msgid "Repair" msgstr "Reparar tabela" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10324,37 +10328,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Verificar Integridade referencial:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Não é posivel mover a tabela para o mesmo!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Não é possivel copiar a tabela para o mesmo!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "A tabela %s foi movida para %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s copiada para %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "O nome da tabela está vazio!" @@ -10551,7 +10555,7 @@ msgstr "Opções de exportação da Base de Dados" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Extraindo dados da tabela" @@ -10578,14 +10582,14 @@ msgstr "Descrição" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Estrutura da tabela" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10593,7 +10597,7 @@ msgstr "Somente estrutura" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 #, fuzzy msgid "Stand-in structure for view" @@ -10706,7 +10710,7 @@ msgid "Database:" msgstr "Base de Dados" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10822,7 +10826,7 @@ msgid "Data creation options" msgstr "Opções de tranformação" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10894,7 +10898,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10940,60 +10944,60 @@ msgstr "em utilização" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 #, fuzzy msgid "Constraints for dumped tables" msgstr "Limitadores para a tabela" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Limitadores para a tabela" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy msgid "Indexes for dumped tables" msgstr "Limitadores para a tabela" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Dentro de Tabela(s):" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Adicionar valor AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Somente estrutura" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11050,33 +11054,33 @@ msgstr "" msgid "Column names: " msgstr "Nome dos Campos" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11084,7 +11088,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -11097,15 +11101,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11115,23 +11119,23 @@ msgstr "Abrir Documento" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "This page does not contain any tables!" msgid "The imported file does not contain any data!" @@ -14133,15 +14137,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14156,17 +14156,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14188,21 +14189,21 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "Title of browser window when a table is selected." msgid "The old name of the table was expected." msgstr "Título da janela do navegador quando uma tabela estiver selecionada." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14234,17 +14235,17 @@ msgstr "A tabela %s foi eliminada" msgid "Variable name was expected." msgstr "Modelo de nome da tabela" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "No Início da Tabela" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14267,17 +14268,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15006,7 +15007,7 @@ msgstr "Ver o esquema da tabela" msgid "Invalid table name" msgstr "Nome de tabela inválido" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16101,7 +16102,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:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16144,7 +16145,7 @@ msgstr "Posição" msgid "Edit partitioning" msgstr "Vista de impressão" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16282,12 +16283,12 @@ msgstr "" msgid "Column names" msgstr "Nome dos Campos" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Renomeia a vista para " -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Sem bases de dados" diff --git a/po/pt_BR.po b/po/pt_BR.po index 222796f4e9..d07133165e 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -1,13 +1,13 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-02-10 17:03+0000\n" "Last-Translator: Rodrigo Moreira \n" -"Language-Team: Portuguese (Brazil) " -"\n" +"Language-Team: Portuguese (Brazil) \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,7 +47,7 @@ msgid "Table comments:" msgstr "Comentários de tabela:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -101,7 +101,7 @@ msgstr "Tipo" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -163,12 +163,12 @@ msgid "Comments" msgstr "Comentários" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Primária" @@ -201,12 +201,12 @@ msgstr "Não" #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -251,8 +251,8 @@ msgid "Tables" msgstr "Tabelas" #: db_export.php:66 libraries/Menu.php:323 libraries/Menu.php:430 -#: libraries/Util.php:3402 libraries/Util.php:3412 libraries/Util.php:3418 -#: libraries/Util.php:3698 libraries/Util.php:4335 libraries/Util.php:4352 +#: libraries/Util.php:3409 libraries/Util.php:3419 libraries/Util.php:3425 +#: libraries/Util.php:3705 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/central_columns.lib.php:725 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,7 +260,7 @@ msgstr "Tabelas" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -472,7 +472,7 @@ msgstr "Adicionar geometria" #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -502,7 +502,7 @@ msgstr "Adicionar geometria" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Executar" @@ -530,7 +530,7 @@ msgstr "Falha" msgid "Incomplete params" msgstr "Parâmetros incompletos" -#: import.php:184 +#: import.php:186 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -539,15 +539,15 @@ msgstr "" "Você provavelmente tentou carregar um arquivo muito grande. Veja referências " "na %sdocumentação%s para resolver esse problema." -#: import.php:360 import.php:665 +#: import.php:362 import.php:667 msgid "Showing bookmark" msgstr "Exibindo marcadores" -#: import.php:376 import.php:661 +#: import.php:378 import.php:663 msgid "The bookmark has been deleted." msgstr "O marcador foi removido." -#: import.php:474 +#: import.php:476 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -557,12 +557,12 @@ msgstr "" "open_basedir habilitada sem acesso ao diretório %s (para arquivos " "temporários)." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:492 import.php:569 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "O arquivo não pôde ser lido!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:503 import.php:518 import.php:543 import.php:558 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -572,7 +572,7 @@ msgstr "" "suporte para ele não está implementado ou pode ter sido desabilitado por sua " "configuração." -#: import.php:574 +#: import.php:576 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -582,21 +582,24 @@ msgstr "" "enviado, ou o tamanho do arquivo excedeu o tamanho máximo permitido pela sua " "configuração do PHP. Verifique a [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:628 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "Não foi possível carregar os plugins, verifique sua instalação!" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:670 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "Marcador %s criado." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "Importação finalizada com sucesso, %d consultas executadas." +#: import.php:680 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "Importação finalizada com sucesso, %d consultas executadas." +msgstr[1] "Importação finalizada com sucesso, %d consultas executadas." -#: import.php:705 +#: import.php:711 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -605,7 +608,7 @@ msgstr "" "Script passou do tempo limite, se você deseja terminar a importação, " "%sreenvie o mesmo arquivo%s e a importação será resumida." -#: import.php:715 +#: import.php:721 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -619,7 +622,7 @@ msgid "Could not load the progress of the import." msgstr "Não foi possível carregar o progresso da importação." #: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: libraries/Util.php:802 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Voltar" @@ -715,10 +718,11 @@ msgstr "Mostrar informações do PHP" msgid "Version information:" msgstr "Informações da versão:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:449 libraries/Util.php:516 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Documentação" @@ -1013,7 +1017,7 @@ msgid "Save & close" msgstr "Salvar & fechar" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Resetar" @@ -1070,7 +1074,7 @@ msgstr "Por favor. Selecione a(as) coluna(as)para o Índice." msgid "You have to add at least one column." msgstr "Você deve adicionar pelo menos uma coluna." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:132 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 @@ -1085,7 +1089,7 @@ msgstr "Simular query" msgid "Matched rows:" msgstr "Linhas afetadas:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:137 libraries/Util.php:703 msgid "SQL query:" msgstr "Query SQL:" @@ -1150,12 +1154,12 @@ msgid "Other" msgstr "Outro" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:160 libraries/Util.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:162 libraries/Util.php:1500 msgid "." msgstr "." @@ -1271,40 +1275,40 @@ msgid "Processes" msgstr "Processos" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:202 libraries/Util.php:1442 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:203 libraries/Util.php:1444 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:204 libraries/Util.php:1446 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:205 libraries/Util.php:1448 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:206 libraries/Util.php:1450 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:207 libraries/Util.php:1452 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:208 libraries/Util.php:1454 msgid "EiB" msgstr "EB" @@ -1322,7 +1326,7 @@ msgstr "Requisições" msgid "Traffic" msgstr "Tráfego" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4333 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Configurações" @@ -1340,7 +1344,7 @@ msgstr "Por favor adicione no mínimo uma variável à série!" #: js/messages.php:219 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1548,7 +1552,7 @@ msgstr "Analisando…" msgid "Explain output" msgstr "Demonstrar saída" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4329 #: 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:91 libraries/tracking.lib.php:284 @@ -1649,8 +1653,8 @@ msgstr "" "Resetando para a configuração padrão…" #: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 -#: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 -#: libraries/Util.php:4357 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:581 libraries/Util.php:4332 libraries/Util.php:4347 +#: libraries/Util.php:4364 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 #: libraries/server_status_monitor.lib.php:313 prefs_manage.php:237 #: setup/frames/menu.inc.php:26 @@ -1712,7 +1716,6 @@ msgid "Formatting SQL…" msgstr "Formatando SQL…" #: js/messages.php:346 -#| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Parâmetros incorretos!" @@ -1742,7 +1745,6 @@ msgid "Loading…" msgstr "Carregando…" #: js/messages.php:358 -#| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "Requisição abortada!!" @@ -1753,7 +1755,6 @@ msgid "Processing request" msgstr "Processando a requisição" #: js/messages.php:360 -#| msgid "Request Failed!!" msgid "Request failed!!" msgstr "Requisição falhou!!" @@ -1784,7 +1785,6 @@ msgid "Dropping column" msgstr "Excluindo coluna" #: js/messages.php:366 -#| msgid "Add primary key" msgid "Adding primary key" msgstr "Adicionando chave primária" @@ -1803,21 +1803,18 @@ msgid "Click to dismiss this notification" msgstr "Clique para fechar este aviso" #: js/messages.php:371 -#| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Renomeando banco de dados" #: js/messages.php:372 -#| msgid "Copying Database" msgid "Copying database" msgstr "Copiando o banco de dados" #: js/messages.php:373 -#| msgid "Changing Charset" msgid "Changing charset" msgstr "Alterando o conjunto de caracteres" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:377 libraries/Util.php:3291 msgid "Enable foreign key checks" msgstr "Habilitar verificação de chaves estrangeiras" @@ -1852,9 +1849,9 @@ msgstr "" #: js/messages.php:392 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 -#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 -#: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 -#: libraries/Util.php:4356 libraries/config/messages.inc.php:255 +#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3712 +#: libraries/Util.php:3713 libraries/Util.php:4331 libraries/Util.php:4346 +#: libraries/Util.php:4363 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:168 libraries/rte/rte_list.lib.php:149 #: libraries/server_privileges.lib.php:2513 #: libraries/server_privileges.lib.php:2592 @@ -1904,8 +1901,8 @@ msgstr "Mostrar caixa de consulta" #: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 -#: libraries/Util.php:3703 libraries/Util.php:3704 +#: libraries/Index.php:721 libraries/Util.php:732 libraries/Util.php:1242 +#: libraries/Util.php:3710 libraries/Util.php:3711 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 #: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:182 @@ -2092,7 +2089,7 @@ msgid "No dependencies selected!" msgstr "Nenhuma dependência selecionada!" #: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2178,7 +2175,7 @@ msgid "Data point content" msgstr "Conteúdo do ponteiro de dados" #: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignorar" @@ -2211,7 +2208,6 @@ msgid "Inner ring" msgstr "Anel interno" #: js/messages.php:516 -#| msgid "Outer ring:" msgid "Outer ring" msgstr "Anel externo" @@ -2423,7 +2419,7 @@ msgid "Select database first" msgstr "Primeiro escolha um banco de dados" #: js/messages.php:599 libraries/DisplayResults.php:5029 -#: libraries/Util.php:4217 +#: libraries/Util.php:4224 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" @@ -2474,7 +2470,6 @@ msgid "Show panel" msgstr "Mostrar painel" #: js/messages.php:632 -#| msgid "Hide Panel" msgid "Hide panel" msgstr "Ocultar painel" @@ -2519,12 +2514,10 @@ msgid "Create view" msgstr "Criar view" #: js/messages.php:653 -#| msgid "Send error reports" msgid "Send error report" msgstr "Enviar relatório de erros" #: js/messages.php:654 -#| msgid "Submit Error Report" msgid "Submit error report" msgstr "Cadastrar relatório de erro" @@ -2537,12 +2530,10 @@ msgstr "" "erros?" #: js/messages.php:658 -#| msgid "Change Report Settings" msgid "Change report settings" msgstr "Alterar configurações de relatórios" #: js/messages.php:659 -#| msgid "Show Report Details" msgid "Show report details" msgstr "Exibir detalhes de relatório" @@ -2607,7 +2598,6 @@ msgid "%s argument(s) passed" msgstr "%s parâmetro(s) passado(s)" #: js/messages.php:706 -#| msgid "Show table comments" msgid "Show arguments" msgstr "Mostrar comentários" @@ -2637,12 +2627,10 @@ msgstr "" "normalmente causado pelo \"Navegação Privada\"." #: js/messages.php:711 -#| msgid "Copy database to" msgid "Copy tables to" msgstr "Copiar tabelas para" #: js/messages.php:712 -#| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Adicionar prefixo de tabela" @@ -2720,63 +2708,63 @@ msgid "December" msgstr "Dezembro" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:773 libraries/Util.php:1664 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:775 libraries/Util.php:1666 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:777 libraries/Util.php:1668 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:779 libraries/Util.php:1670 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:781 libraries/Util.php:1672 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:783 libraries/Util.php:1674 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:785 libraries/Util.php:1676 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:787 libraries/Util.php:1678 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:789 libraries/Util.php:1680 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:791 libraries/Util.php:1682 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:793 libraries/Util.php:1684 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:795 libraries/Util.php:1686 msgid "Dec" msgstr "Dez" @@ -2814,32 +2802,32 @@ msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:816 libraries/Util.php:1691 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:818 libraries/Util.php:1693 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:820 libraries/Util.php:1695 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:822 libraries/Util.php:1697 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:824 libraries/Util.php:1699 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:826 libraries/Util.php:1701 msgid "Sat" msgstr "Sab" @@ -2977,13 +2965,12 @@ msgid "Please enter a valid date or time" msgstr "Por favor, digite um data válida ou um tempo" #: js/messages.php:941 -#| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Por favor, digite um número HEXADECIMAL válido" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:679 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Erro" @@ -3037,18 +3024,18 @@ msgstr "" "Caractere inesperado na linha %1$s. Esperado Tab, mas foi encontrado \"%2$s" "\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Arquivo de configuração existente (%s) não pode ser lido." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permissões incorretas no arquivo de configuração, não deveria permitir " "escrita por qualquer um!" -#: libraries/Config.php:1519 +#: libraries/Config.php:1528 msgid "Font size" msgstr "Tamanho da fonte" @@ -3118,7 +3105,7 @@ msgstr "Durante a sessão atual" msgid "Explain" msgstr "Demonstrar SQL" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1328 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Perfil" @@ -3152,8 +3139,8 @@ msgid "History" msgstr "Histórico" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3199,17 +3186,14 @@ msgid "Press Enter to execute query" msgstr "Pressione Enter para executar consulta" #: libraries/Console.php:280 -#| msgid "Ascending" msgid "ascending" msgstr "ascendente" #: libraries/Console.php:283 -#| msgid "Descending" msgid "descending" msgstr "descendente" #: libraries/Console.php:286 -#| msgid "Order" msgid "Order:" msgstr "Ordem:" @@ -3218,7 +3202,6 @@ msgid "Count" msgstr "Contagem" #: libraries/Console.php:295 -#| msgid "Execute every" msgid "Execution order" msgstr "Ordem de execução" @@ -3227,7 +3210,6 @@ msgid "Time taken" msgstr "Tempo gasto" #: libraries/Console.php:301 -#| msgid "Order" msgid "Order by:" msgstr "Ordenar por:" @@ -3238,7 +3220,6 @@ msgid "Group queries" msgstr "Agrupar consultas" #: libraries/Console.php:307 -#| msgid "SQL queries" msgid "Ungroup queries" msgstr "Desagrupar consultas" @@ -3255,11 +3236,10 @@ msgid "Hide trace" msgstr "Ocultar rastro" #: libraries/Console.php:322 -#| msgid "Count" msgid "Count:" msgstr "Contagem:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:339 libraries/Util.php:1298 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 @@ -3503,9 +3483,9 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s resultado em %2$s" msgstr[1] "%1$s resultados em %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3564,30 +3544,30 @@ msgstr "Filtrar linhas" msgid "Search this table" msgstr "Procurar nesta tabela" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Início" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Próximo" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Fim" @@ -3660,7 +3640,7 @@ msgstr "Pode ser aproximado. Veja a [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Seu comando SQL foi executado com sucesso." @@ -3695,7 +3675,7 @@ msgid "Query took %01.4f seconds." msgstr "Consulta levou %01.4f segundos." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3703,7 +3683,7 @@ msgid "With selected:" msgstr "Com marcados:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3785,15 +3765,15 @@ msgstr "Carregamento do arquivo parado pela extensão." msgid "Unknown error in file upload." msgstr "Erro desconhecido no carregamento do arquivo." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Erro ao mover o arquivo carregado, veja [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Erro ao mover o arquivo enviado." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -3859,8 +3839,8 @@ msgid "Keyname" msgstr "Nome da chave" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3908,15 +3888,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Eliminar" @@ -3929,7 +3909,7 @@ msgstr "" "A indexação %1$s e %2$s parecem ser iguais ou uma delas pode ter sido " "removida." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3982,8 +3962,8 @@ msgid "Table" msgstr "Tabela" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3991,25 +3971,25 @@ msgstr "Tabela" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Procurar" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Inserir" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4017,24 +3997,24 @@ msgid "Privileges" msgstr "Privilégios" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operações" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Monitoramento" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4045,16 +4025,16 @@ msgstr "Gatilhos" msgid "Database seems to be empty!" msgstr "O banco de dados parece estar vazio!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Consulta" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rotinas" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4062,16 +4042,16 @@ msgstr "Rotinas" msgid "Events" msgstr "Eventos" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Colunas centrais" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4086,34 +4066,34 @@ msgid "User accounts" msgstr "Grupos de usuários" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Log binário" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicação" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variáveis" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Charsets" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Motores" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Plugins" @@ -4752,18 +4732,18 @@ msgstr "Espacial" msgid "Max: %s%s" msgstr "Tamanho máximo: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Dados estáticos" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4774,105 +4754,105 @@ msgstr "" msgid "MySQL said: " msgstr "Mensagem do MySQL: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Demonstrar SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Pular demonstração do SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Sem código PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Enviar query" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Criar código PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Editar índice" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d/%m/%Y às %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dias, %s horas, %s minutos e %s segundos" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Parâmetro ausente:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Ir para o banco de dados '%s'." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A funcionalidade %s é afetada por um bug conhecido, veja %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Clique para alternar" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Procurar no seu computador:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, 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:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Não existem arquivos para envio!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Limpar" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Executar" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Usuários" @@ -5002,11 +4982,11 @@ msgstr "Adicionar nova coluna" msgid "Attributes" msgstr "Atributos" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Falhou ao ler o arquivo de configuração!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -5014,32 +4994,32 @@ msgstr "" "Isso geralmente significa que há um erro de sintaxe, por favor cheque " "qualquer erro mostrado abaixo." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Não foi possível carregar a configuração padrão de: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Índice de servidor inválido: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome de servidor inválido para o servidor %1$s. Verifique suas configurações." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Servidor %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Método de autenticação inválido informado nas configurações:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5051,24 +5031,24 @@ msgstr "" "em]. O phpMyAdmin está atualmente usando o fuso horário padrão do servidor " "de banco de dados." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Você deveria atualizar para %s %s ou posterior." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Erro: Incompatibilidade de token" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Tentativa de sobrescrever variáveis GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "Possível exploit" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "tecla numérica detectada" @@ -5819,13 +5799,13 @@ msgstr "Colocar os nomes das colunas na primeira linha" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Colunas delimitadas por" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Campos divididos com" @@ -5843,12 +5823,12 @@ msgstr "Remover caracteres CRLF em colunas" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Colunas terminadas com" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Linhas terminadas com" @@ -8061,7 +8041,7 @@ msgid "Table %s has been emptied." msgstr "A tabela %s foi esvaziada." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "A view %s foi apagada." @@ -8196,8 +8176,8 @@ msgid "No data to display" msgstr "Sem dados para mostrar" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8235,53 +8215,53 @@ msgstr[1] "Os nomes '%s' são palavras-chaves reservadas do MySQL." msgid "No column selected." msgstr "Nenhuma coluna selecionada." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "As colunas foram movidas com sucesso." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Erro de consulta" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Alterar" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Índice" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Espacial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Texto completo" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Procurar valores distintos" @@ -8292,7 +8272,7 @@ msgstr "" "A extensão %s não está presente. Por favor, verifique a configuração do PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nenhuma alteração" @@ -9120,57 +9100,57 @@ msgstr "O MySQL retornou um conjunto vazio (ex. zero registros)." msgid "[ROLLBACK occurred.]" msgstr "[Ocorreu um ROLLBACK.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Editar a estrutura seguindo o link \"Estrutura\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Ir para o bando de dados: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Editar as configurações para %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Ir para a tabela: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Estrutura do %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Ir para a view: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9218,48 +9198,48 @@ msgstr "Ou" msgid "web server upload directory:" msgstr "diretório de upload do servidor web:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Inserir/Editar" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuar a inserção com %s linhas" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "e então" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Inserir como um novo registro" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Inserir como uma linha nova e ignorar erros" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Exibir consulta insert" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Ir para a página anterior" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Inserir um registro novo" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Voltar para esta página" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Editar o próximo registro" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9269,7 +9249,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9281,11 +9261,11 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Exibindo consulta SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Id da linha inserida: %1$d" @@ -10179,7 +10159,7 @@ msgstr "Reparar tabela" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Remover dados ou tabela" @@ -10192,32 +10172,32 @@ msgid "Delete the table (DROP)" msgstr "Remover a tabela (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analizar" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Verificar" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Otimizar" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Reconstruir" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Reparar" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10245,37 +10225,37 @@ msgstr "Remover particionamento" msgid "Check referential integrity:" msgstr "Verificar integridade referencial:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Não pode mover a tabela para ela mesma!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Não pode copiar a tabela para ela mesma!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s movida para %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s copiada para %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "O nome da tabela está vazio!" @@ -10456,7 +10436,7 @@ msgstr "Opções de dump de dados" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Fazendo dump de dados para tabela" @@ -10480,21 +10460,21 @@ msgstr "Definição" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Estrutura para tabela" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Estrutura para view" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Estrutura stand-in para view" @@ -10584,7 +10564,7 @@ msgid "Database:" msgstr "Banco de dados:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Dados:" @@ -10694,7 +10674,7 @@ msgid "Data creation options" msgstr "Opções de criação de dados" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Tabela truncada antes do insert" @@ -10777,7 +10757,7 @@ msgstr "Parece que seu banco de dados utiliza funções;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "exportar alias pode não funcionar confiantemente em todos os casos." @@ -10823,52 +10803,52 @@ msgstr "em uso" msgid "It appears your database uses views;" msgstr "Parece que seu banco de dados utiliza visões;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Restrições para dumps de tabelas" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Restrições para tabelas" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Índices de tabelas apagadas" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Índices de tabela" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT de tabelas apagadas" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT de tabela" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "TIPOS MIME PARA TABELAS" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELACIONAMENTOS PARA TABELAS" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Isso demonstra que sua tabela utiliza gatilhos;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "Estrutura da view %s exportado como tabela" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Erro ao ler dados:" @@ -10923,15 +10903,15 @@ msgstr "" msgid "Column names: " msgstr "Nome das colunas: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Parâmetro inválido para importação CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10941,18 +10921,18 @@ msgstr "" "estejam escritos corretamente, separados por vírgulas e que não estejam " "entre aspas." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Formato inválido de input CSV na linha %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Contador de colunas inválido no input CSV na linha %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Esse plugin não suporta importações comprimidas!" @@ -10960,7 +10940,7 @@ msgstr "Esse plugin não suporta importações comprimidas!" msgid "MediaWiki Table" msgstr "Tabela MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Formato inválido de input mediawiki na linha:
%s." @@ -10974,9 +10954,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importar moedas (ex: R$5,00 para 5,00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10984,7 +10964,7 @@ msgstr "" "O arquivo XML especificado foi mal feito ou está incompleto. Por favor, " "corrija o problema e tente novamente." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Não foi possível gerar a planilha do OpenDocument!" @@ -10992,12 +10972,12 @@ msgstr "Não foi possível gerar a planilha do OpenDocument!" msgid "ESRI Shape File" msgstr "Arquivo de formas ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Ocorreu um erro ao importar o arquivo do tipo ESRI: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -11005,12 +10985,12 @@ msgstr "" "Você tentou importar um arquivo inválido ou o arquivo importado contém dados " "inválidos!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "Extensão Espacial MySQL não suporta o tipo ESRI \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "O arquivo importado não contém nenhum dado!" @@ -14125,15 +14105,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14148,17 +14124,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14180,23 +14157,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "O número de tabelas que estão abertas." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "O número de tabelas que estão abertas." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14229,17 +14206,17 @@ msgstr "O evento %1$s foi criado." msgid "Variable name was expected." msgstr "Modelo de nome da tabela" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "at beginning of table" msgid "Unexpected beginning of statement." msgstr "No início da tabela" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14262,19 +14239,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14982,7 +14959,7 @@ msgstr "Ver o dump (esquema) da tabela" msgid "Invalid table name" msgstr "Nome de tabela inválido" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Linha: %1$s, Coluna: %2$s, Erro: %3$s" @@ -15952,7 +15929,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:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16001,7 +15978,7 @@ msgstr "particionado" msgid "Edit partitioning" msgstr "Remover particionamento" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Tela de edição" @@ -16120,11 +16097,11 @@ msgstr "Nome da VIEW" msgid "Column names" msgstr "Nome das colunas" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Renomear view para" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Remover view (DROP)" diff --git a/po/ro.po b/po/ro.po index f05cc6cdd6..72b8e9f727 100644 --- a/po/ro.po +++ b/po/ro.po @@ -1,9 +1,9 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:02+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Romanian %s" msgstr[1] "%s rezultat(e) în interiorul tabelului %s" msgstr[2] "%s rezultat(e) în interiorul tabelului %s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3631,30 +3636,30 @@ msgstr "Filtrare înregistrări" msgid "Search this table" msgstr "Caută în tabelă" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Început" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Următoarea" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Sfârșit" @@ -3727,7 +3732,7 @@ msgstr "Poate fi aproximativ. Vezi [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Comanda SQL a fost executată cu succes." @@ -3761,7 +3766,7 @@ msgid "Query took %01.4f seconds." msgstr "Interogarea a durat %01.4f secunde." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3769,7 +3774,7 @@ msgid "With selected:" msgstr "Cele bifate:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3849,16 +3854,16 @@ msgstr "Încărcarea fișierului a fost împiedicată de extensie." msgid "Unknown error in file upload." msgstr "Eroare necunoscută la încărcarea fișierului." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Eroare la mutarea fișierului încărcat, vezi [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Eroare la mutarea fișierului încărcat." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -3924,8 +3929,8 @@ msgid "Keyname" msgstr "Nume cheie" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3973,15 +3978,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Aruncă" @@ -3992,7 +3997,7 @@ msgid "" "removed." msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4044,8 +4049,8 @@ msgid "Table" msgstr "Tabel" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4053,25 +4058,25 @@ msgstr "Tabel" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Caută" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Inserare" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4079,24 +4084,24 @@ msgid "Privileges" msgstr "Drepturi de acces" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operații" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Urmărire" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4107,16 +4112,16 @@ msgstr "Declanșatori" msgid "Database seems to be empty!" msgstr "Baza de date pare a fi goală!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Interogare prin exemplu" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutine" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4124,16 +4129,16 @@ msgstr "Rutine" msgid "Events" msgstr "Evenimente" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Coloane centrale" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4148,34 +4153,34 @@ msgid "User accounts" msgstr "Utilizatori" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Jurnal binar" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replicare" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variabile" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Seturi de caractere" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Motoare" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Extensii" @@ -4789,16 +4794,16 @@ msgstr "Spaţial" msgid "Max: %s%s" msgstr "Mărime maximă: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4809,38 +4814,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL zice: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Explică SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Sari peste explicarea SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "fără cod PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Trimite comanda" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Creează cod PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -4848,67 +4853,67 @@ msgid "Edit inline" msgstr "Modifică index" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Dum" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y la %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s zile, %s ore, %s minute și %s secunde" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Parametru lipsă:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Sari la baza de date \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funcționalitatea %s este afectată de o eroare cunoscută, vedeți %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Faceţi click pentru a comuta" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Caută în calculatorul tău:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, 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:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Nu sunt fișiere pentru încărcare!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Golește" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Execută" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Utilizatori" @@ -5036,43 +5041,43 @@ msgstr "Adăugați o coloană nouă" msgid "Attributes" msgstr "Proprietăți" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Fișierul de configurare nu poate fi citit!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nu s-a putut încărca configurația implicită de la: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Index de server invalid: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Gazdă nevalidă pentru serverul %1$s. Vă rugăm să revizuiți configurația " "dumneavoastră." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Metodă de autentificare nevalidă stabilită în configurație:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5080,24 +5085,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format 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:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Eroare: Tokenii nu se potrivesc" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "S-a încercat suprascrierea valorilor globale" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "potenţială vulnerabilitate" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "cheie numerica detectată" @@ -5831,13 +5836,13 @@ msgstr "Pune numele coloanelor în primul rând" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Coloane încadrate cu" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -5857,12 +5862,12 @@ msgstr "Șterge caracterele terminatoare de linie CRLF din cadrul coloanelor" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Coloane terminate cu" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Linii terminate cu" @@ -8418,7 +8423,7 @@ msgid "Table %s has been emptied." msgstr "Tabelul %s a fost golit." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8557,8 +8562,8 @@ msgid "No data to display" msgstr "Nu sînt date de afișat" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8607,57 +8612,57 @@ msgstr[2] "" msgid "No column selected." msgstr "Nicio coloană aleasă." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Tip interogare" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Schimbă" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Index" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Tot textul" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8669,7 +8674,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Extensia %s lipsește. Vă rugăm să vă verificați configurația PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nici o schimbare" @@ -9526,56 +9531,56 @@ msgstr "MySQL a dat un set de rezultate gol (zero linii)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Nu sînt baze de date" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Nu sînt baze de date" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Numai structura" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Modul de export" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9627,50 +9632,50 @@ msgstr "Sau" msgid "web server upload directory:" msgstr "director de încărcare al serverului Web" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Editare/Inserare" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, 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:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "și apoi" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Inserează ca o nouă linie" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 #, fuzzy msgid "Show insert query" msgstr "Afișare interogare SQL" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Revenire" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Adaugă o nouă înregistrare" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Înapoi la această pagină" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Editează rândul următor" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9680,7 +9685,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9692,11 +9697,11 @@ msgstr "" msgid "Value" msgstr "Valoare" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Afișare interogare SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "ID rând inserat: %1$d" @@ -10603,7 +10608,7 @@ msgstr "Reparare tabel" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy msgid "Delete data or table" msgstr "Șterge datele urmărite din acest tabel" @@ -10618,32 +10623,32 @@ msgid "Delete the table (DROP)" msgstr "Nu sînt baze de date" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analizează" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Verifică" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimizează" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Reconstruiește" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Repară" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10671,37 +10676,37 @@ msgstr "Elimină partiționarea" msgid "Check referential integrity:" msgstr "Verificarea integrității referinței:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Nu se poate muta tabelul în el însuși!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Nu se poate copia tabelul în el însuși!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabelul %s a fost mutat la %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabelul %s a fost copiat la %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Denumirea tabelului e goală!" @@ -10900,7 +10905,7 @@ msgstr "Opțiuni de afișare a bazelor de date" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Salvarea datelor din tabel" @@ -10924,21 +10929,21 @@ msgstr "Definiție" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Structura de tabel pentru tabelul" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Structură pentru vizualizare" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -11052,7 +11057,7 @@ msgid "Database:" msgstr "Bază de date" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11169,7 +11174,7 @@ msgid "Data creation options" msgstr "Opțiuni de transformare" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11238,7 +11243,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11284,61 +11289,61 @@ msgstr "în uz" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Restrictii pentru tabele sterse" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Restrictii pentru tabele" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Restrictii pentru tabele sterse" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "În interiorul tabelelor:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Adaugă valoare pentru AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "TIPURI MIME PENTRU TABEL" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELAȚII PENTRU TABEL" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11395,34 +11400,34 @@ msgstr "" msgid "Column names: " msgstr "Denumirile coloanelor" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Invalid field count in CSV input on line %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Modulul opțional nu suportă importuri comprimate!" @@ -11430,7 +11435,7 @@ msgstr "Modulul opțional nu suportă importuri comprimate!" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." @@ -11444,15 +11449,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11462,23 +11467,23 @@ msgstr "Foaie de calcul Open Document" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -14652,15 +14657,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14675,17 +14676,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14707,23 +14709,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Numărul de tabele ce sînt deschise." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Numărul de tabele ce sînt deschise." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14756,17 +14758,17 @@ msgstr "Evenimentul %1$s a fost creat." msgid "Variable name was expected." msgstr "Șablon nume tabel" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "La începutul tabelului" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14789,19 +14791,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15523,7 +15525,7 @@ msgstr "Vizualizarea schemei tabelului" msgid "Invalid table name" msgstr "Denumire de tabel nevalidă" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16614,7 +16616,7 @@ msgid "at beginning of table" msgstr "La începutul tabelului" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16663,7 +16665,7 @@ msgstr "partiționat" msgid "Edit partitioning" msgstr "Elimină partiționarea" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16795,12 +16797,12 @@ msgstr "Denumire VIZIUNE" msgid "Column names" msgstr "Denumirile coloanelor" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Redenumire tabel la" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Nu sînt baze de date" diff --git a/po/ru.po b/po/ru.po index 25192cca5b..153ea5bffb 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1,9 +1,9 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-12-09 12:57+0000\n" "Last-Translator: Roman Imankulov \n" "Language-Team: Russian %2$s msgstr[1] "%1$s соответствия в таблице %2$s" msgstr[2] "%1$s соответствий в таблице %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3468,30 +3473,30 @@ msgstr "Фильтровать строки" msgid "Search this table" msgstr "Поиск в таблице" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Начало" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Предыдущая" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Следующая" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Конец" @@ -3564,7 +3569,7 @@ msgstr "Может быть приблизительно. Смотрите [doc@ #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "SQL-запрос успешно выполнен." @@ -3599,7 +3604,7 @@ msgid "Query took %01.4f seconds." msgstr "Запрос занял %01.4f сек." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3607,7 +3612,7 @@ msgid "With selected:" msgstr "С отмеченными:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3689,17 +3694,17 @@ msgstr "Загрузка файла остановлена из-за расши msgid "Unknown error in file upload." msgstr "При время загрузке файла произошла неизвестная ошибка." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Ошибка при перемещении загруженного файла, смотрите [doc@faq1-11]FAQ 1.11[/" "doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Ошибка при перемещении загруженного файла." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Невозможно прочесть загруженный файл." @@ -3763,8 +3768,8 @@ msgid "Keyname" msgstr "Имя индекса" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3812,15 +3817,15 @@ msgstr "Первичный ключ был удален." msgid "Index %s has been dropped." msgstr "Индекс %s был удален." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Удалить" @@ -3831,7 +3836,7 @@ msgid "" "removed." msgstr "Индексы %1$s и %2$s равнозначны и один из них может быть удалён." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3882,8 +3887,8 @@ msgid "Table" msgstr "Таблица" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3891,25 +3896,25 @@ msgstr "Таблица" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Поиск" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Вставить" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3917,24 +3922,24 @@ msgid "Privileges" msgstr "Привилегии" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Операции" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Слежение" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3945,16 +3950,16 @@ msgstr "Триггеры" msgid "Database seems to be empty!" msgstr "Пустая база данных!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Запрос по шаблону" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Процедуры" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3962,16 +3967,16 @@ msgstr "Процедуры" msgid "Events" msgstr "События" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Дизайнер" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Центральные столбцы" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3984,34 +3989,34 @@ msgid "User accounts" msgstr "Учетные записи пользователей" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Бинарный журнал" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Репликация" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Переменные" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Кодировки" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Типы таблиц" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Расширения" @@ -4645,16 +4650,16 @@ msgstr "Пространственные" msgid "Max: %s%s" msgstr "Максимальный размер: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Статический анализ:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "Найдено %d ошибок при анализе." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4665,98 +4670,98 @@ msgstr "Найдено %d ошибок при анализе." msgid "MySQL said: " msgstr "Ответ MySQL: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Анализ SQL запроса" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Убрать анализ SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "Результат анализа %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "Убрать PHP-код" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "Отправить запрос" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Создать PHP-код" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Построчное редактирование" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Вс" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y г., %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дней, %s часов, %s минут и %s секунд" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Отсутствующий параметр:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Перейти к базе данных \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Работа параметра \"%s\" подвержена ошибке, описание смотрите на %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Кликните для переключения" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Обзор вашего компьютера:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Выберите из каталога загрузки сервера %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Установленный каталог загрузки не доступен." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Файлы для загрузки отсутствуют!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Очистить" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Выполнить" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Пользователи" @@ -4885,11 +4890,11 @@ msgstr "Добавить столбец" msgid "Attributes" msgstr "Атрибуты" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Ошибка при чтении конфигурационного файла!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4897,34 +4902,34 @@ msgstr "" "Обычно это означает наличие синтаксических ошибок, пожалуйста, проверьте " "выведенные ниже ошибки." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Невозможно загрузить изначальную конфигурацию из: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Неверный индекс сервера: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Для сервера %1$s указано неверное имя хоста. Исправьте настройки заданные в " "конфигурационном файле phpMyAdmin." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Сервер %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" "В конфигурационном файле phpMyAdmin установлен неверный метод аутентификации:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4936,24 +4941,24 @@ msgstr "" "phpMyAdmin в настоящий момент использует тайм зону, настроенную на сервере " "по-умолчанию." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Необходимо обновить %s до версии %s или выше." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Ошибка: несоответствие токена" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "попытка перезаписи GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "возможная уязвимость" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "определена числовая клавиша" @@ -5698,13 +5703,13 @@ msgstr "Поместить названия полей в первой стро #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Значения полей обрамлены" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Символ экранирования" @@ -5722,12 +5727,12 @@ msgstr "Удалить из полей символы перевода стро #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Разделитель столбцов" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Разделитель строк" @@ -7886,7 +7891,7 @@ msgid "Table %s has been emptied." msgstr "Таблица %s была очищена." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Представление %s было удалено." @@ -8020,8 +8025,8 @@ msgid "No data to display" msgstr "Данные не найдены" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8060,53 +8065,53 @@ msgstr[2] "Имена '%s' являются зарезервированными msgid "No column selected." msgstr "Не выбран столбец." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Поля были успешно перемещены." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Ошибка запроса" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Изменить" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Индекс" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Пространственный" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Полнотекстовый" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Уникальные значения" @@ -8116,7 +8121,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Расширение %s не найдено. Пожалуйста, проверьте ваши настройки PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Нет изменений" @@ -8919,55 +8924,55 @@ msgstr "MySQL вернула пустой результат (т.е. ноль с msgid "[ROLLBACK occurred.]" msgstr "[Произошел откат.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Следующие структуры были созданы, либо изменены. Вы можете:" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "Просмотреть детали структуры, нажав на её имя." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Изменить любую настройку, нажав на соответствующую ссылку \"Параметры\"." -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Отредактировать структуру, перейдя по ссылке \"Структура\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Перейти к базе данных: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Отредактировать настройки для %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Перейти к таблице: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Структура %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Перейти к представлению (VIEW): %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Можно эмулировать только запросы UPDATE и DELETE с одной таблицей." -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9015,48 +9020,48 @@ msgstr "Или" msgid "web server upload directory:" msgstr "Из каталога загрузки:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Редактировать/Вставить" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Продолжить вставку с %s строки" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "и затем" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Вставить запись" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Вставить в виде новой строки и игнорировать появляющиеся ошибки" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Отобразить запрос вставки" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Вернуться на предыдущую страницу" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Добавить новую запись" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Вернуться к данной странице" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Редактировать следующую строку" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9066,7 +9071,7 @@ msgstr "" "Для перемещения между полями значения, используйте клавишу TAB, либо CTRL" "+клавиши со стрелками - для свободного перемещения" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9078,11 +9083,11 @@ msgstr "" msgid "Value" msgstr "Значение" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Отображает SQL-запрос" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Идентификатор вставленной строки: %1$d" @@ -9960,7 +9965,7 @@ msgstr "Восстановить таблицу" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Удалить данные или таблицу" @@ -9973,32 +9978,32 @@ msgid "Delete the table (DROP)" msgstr "Удалить таблицу (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Анализ" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Проверка" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Оптимизация" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Перестройка" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Исправление" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10024,37 +10029,37 @@ msgstr "Удалить разделение" msgid "Check referential integrity:" msgstr "Проверить целостность данных:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Не возможно переместить таблицу саму в себя!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Невозможно скопировать таблицу саму в себя!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Таблица %s была перемещена в %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Таблица %s была скопирована в %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Не задано имя таблицы!" @@ -10230,7 +10235,7 @@ msgstr "Параметры сохранения данных" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Дамп данных таблицы" @@ -10254,21 +10259,21 @@ msgstr "Определение" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Структура таблицы" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Структура для представления" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Дублирующая структура для представления" @@ -10358,7 +10363,7 @@ msgid "Database:" msgstr "База данных:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Данные:" @@ -10462,7 +10467,7 @@ msgid "Data creation options" msgstr "Параметры создания данных" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Очистить таблицу перед добавлением данных" @@ -10549,7 +10554,7 @@ msgstr "Похоже, что база данных использует функ #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "экспорт псевдонима не может надёжно работать во всех случаях." @@ -10593,52 +10598,52 @@ msgstr "используется" msgid "It appears your database uses views;" msgstr "Похоже, что база данных использует представления;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Ограничения внешнего ключа сохраненных таблиц" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Ограничения внешнего ключа таблицы" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Индексы сохранённых таблиц" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Индексы таблицы" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT для сохранённых таблиц" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT для таблицы" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME-ТИПЫ ТАБЛИЦЫ" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "СВЯЗИ ТАБЛИЦЫ" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Похоже, что ваша таблица использует триггеры;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "Структура для представления %s экспортирована как таблица" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Ошибка считывания данных:" @@ -10691,15 +10696,15 @@ msgstr "" msgid "Column names: " msgstr "Названия столбцов: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Неправильный параметр импорта CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10708,18 +10713,18 @@ msgstr "" "Указано ошибочное имя столбца (%s)! Убедитесь, что названия столбцов указаны " "верно, разделены запятыми, и не заключены в кавычки." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Неправильный формат входных CSV-данных в строке %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Несоответствие количества столбцов в CSV данных на строке %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Этот модуль не поддерживает импорт сжатых данных!" @@ -10727,7 +10732,7 @@ msgstr "Этот модуль не поддерживает импорт сжа msgid "MediaWiki Table" msgstr "Таблица MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Неверный формат ввода данных mediawiki на строке:
%s." @@ -10741,9 +10746,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Импортировать денежные единицы (напр. $5.00 в 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10751,7 +10756,7 @@ msgstr "" "Выбранный XML файл некорректен, либо неполон. Проверьте возможные ошибки и " "попробуйте ещё раз." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Не могу разобрать OpenDocument Spreadsheet!" @@ -10759,12 +10764,12 @@ msgstr "Не могу разобрать OpenDocument Spreadsheet!" msgid "ESRI Shape File" msgstr "Файл ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "При импорте файла ESRI произошла ошибка: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10772,12 +10777,12 @@ msgstr "" "Попытка загрузки некорректного файла либо файла, содержащего некорректные " "данные!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "Пространственное расширение MySQL не поддерживает тип ESRI \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Импортированный файл не содержит данных!" @@ -13828,15 +13833,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "A rename operation was expected." @@ -13851,17 +13852,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "Нераспознанный тип данных." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Псевдоним был найден ранее." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Неожиданная точка." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Ожидался псевдоним." @@ -13879,19 +13881,19 @@ msgstr "Ожидалось смещение." msgid "This option conflicts with \"%1$s\"." msgstr "Этот параметр конфликтует с \"%1$s\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Ожидалось старое имя таблицы." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Ожидалось ключевое слово \"TO\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Ожидалось новое имя таблицы." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Ожидалась операция переименования." @@ -13917,15 +13919,15 @@ msgstr "Ожидалась закрывающая кавычка %1$s." msgid "Variable name was expected." msgstr "Ожидалось имя переменной." -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Неожиданное начало выражения." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13946,15 +13948,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Неизвестное ключевое слово." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Ожидалось имя сущности." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Ожидалось объявление, по крайней мере, одного столбца." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Ожидалось ключевое слово \"RETURNS\"." @@ -14652,7 +14654,7 @@ msgstr "Отобразить дамп (схему) таблицы" msgid "Invalid table name" msgstr "Неправильное имя таблицы" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Строка: %1$s, Столбец: %2$s, Ошибка: %3$s" @@ -15611,7 +15613,7 @@ msgid "at beginning of table" msgstr "в начале таблицы" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Разделы" @@ -15654,7 +15656,7 @@ msgstr "разделён" msgid "Edit partitioning" msgstr "Удалить разделение" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Редактировать представление" @@ -15773,11 +15775,11 @@ msgstr "VIEW название" msgid "Column names" msgstr "Названия столбцов" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Переименовать представление в" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Удалить вид (DROP)" diff --git a/po/si.po b/po/si.po index 3a9860f969..86b3d34606 100644 --- a/po/si.po +++ b/po/si.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-01-06 03:53+0000\n" "Last-Translator: Isuru Abeywardana \n" "Language-Team: Sinhala %2$s" msgstr[0] "%2$s තුල ගැලපීම් %1$s කි" msgstr[1] "%2$s තුල ගැලපීම් %1$s කි" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3713,30 +3717,30 @@ msgstr "පෙරහන්" msgid "Search this table" msgstr "දත්තගබඩාවේ සොයන්න" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "ඇරඹුම" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "පෙර" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "මීලඟ" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "අවසන" @@ -3809,7 +3813,7 @@ msgstr "සමහර විට ආසන්න වශයෙන්. [doc@faq3-11] #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "ඔබගේ SQL විමසුම සාර්ථකව ක්‍රියාවට නංවන ලදි." @@ -3843,7 +3847,7 @@ msgid "Query took %01.4f seconds." msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3851,7 +3855,7 @@ msgid "With selected:" msgstr "තෝරාගත්:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3933,16 +3937,16 @@ msgstr "දිගුව නිසා ගොනුව උඩුගත කිර msgid "Unknown error in file upload." msgstr "ගොනුව උඩුගත කිරීමේදී දෝෂයක් ඇති විය." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "උඩුගත කෙරුණු ගොනුව ගෙන යාමේදී දෝෂයක් ඇති විය, [doc@faq1-11]FAQ 1.11[/doc] බලන්න." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "උඩුගත කරන ලද ගොනුව චලනයේදී දෝෂයක් මතු විය." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -4010,8 +4014,8 @@ msgid "Keyname" msgstr "යතුරු නම" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4059,15 +4063,15 @@ msgstr "ප්‍රාථමික මූලය හලන ලදි." msgid "Index %s has been dropped." msgstr "%s සූචිය හලන ලදි." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "හලන්න" @@ -4078,7 +4082,7 @@ msgid "" "removed." msgstr "%1$s හා %2$s සුචි එක සමාන බැවින් එකක් ඉවත් කල හැක." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4128,8 +4132,8 @@ msgid "Table" msgstr "වගුව" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4137,25 +4141,25 @@ msgstr "වගුව" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "සෙවීම" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "ඇතුල් කරන්න" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4163,24 +4167,24 @@ msgid "Privileges" msgstr "වරප්‍රසාද" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "මෙහෙයුම්" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "අවධානය" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4191,16 +4195,16 @@ msgstr "ප්‍රේරක" msgid "Database seems to be empty!" msgstr "දත්තගබඩාව හිස්ය!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "විමසුම" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "නෛත්‍යක" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4208,16 +4212,16 @@ msgstr "නෛත්‍යක" msgid "Events" msgstr "සිද්ධි" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "සැලසුම්කරණය" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "මධ්‍යම තීර" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4230,34 +4234,34 @@ msgid "User accounts" msgstr "භාවිත ගිණුම්" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "ද්වීමය ලොගය" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "අනුරූකරණය" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "විචල්‍යනයන්" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "අක්ෂර කට්ටලය" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "යන්ත්‍රයන්" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "පේණු" @@ -4887,18 +4891,18 @@ msgstr "අවකාශීය" msgid "Max: %s%s" msgstr "උපරිම: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "ස්ථිතික දත්ත" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4909,38 +4913,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL පවසන ලදි: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL ය පහදන්න" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "SQL ය පහදා දීමෙන් ඉවත් වන්න" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP කේත නොමැතිව" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "විමසුම ඉදිරිපත් කරන්න" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP කේත සාදන්න" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -4948,67 +4952,67 @@ msgid "Edit inline" msgstr "සුචිය සංස්කරණය කරන්න" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "ඉරිදා" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y දින %I:%M %p ට" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "දින %s, පැය %s, මිනිත්තු %s සහ තප්පර %s" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "නොමැති පරාමිතිය:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "\"%s\" දත්තගබඩාව වෙත යන්න." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s විශේෂාංගයෙහි හඳුනාගත් දෝෂයක් ඇත, %s බලන්න" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "මාරු කිරීමට ක්ලික් කරන්න" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "පරිගණකය තුළ පිරික්සන්න:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "වෙබ් සේවාදායකයේ %s උඩුගත කිරීම් ඩිරෙක්ටරියෙන් තෝරන්න:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "උඩුගත කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "උඩුගත කිරීම සඳහා ගොනු නොමැත!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "හිස් කරන්න" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "ක්‍රියාත්මක කරන්න" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "භාවිතා කරන්නන්" @@ -5146,42 +5150,42 @@ msgstr "තීරයක් එක් කරන්න" msgid "Attributes" msgstr "ගුණාංග" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "වින්‍යාස ගොනුව කියවීමට අසමත් විය!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "මෙහි සාමාන්‍ය අරුත වාක්‍ය වින්‍යාස දෝෂයකි, කරුණාකර පහත දැක්වෙන දෝෂ පරීක්ෂා කර බලන්න." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "%1$s වෙතින් පෙරනිමි සිටුවම් පූරණය කර ගත නොහැකි විය" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "අවලංගු සේවාදායක සුචිය: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s සේවාදායකය සඳහා වැරදි දායක නාමයක්. ඔබ ඔබගේ වින්‍යාසයන් පරීකෂා කර බැලිය යුතුය." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "%d වන සේවාදායකය" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "වින්‍යසයන්හි වලංගු නැති සත්‍යාපන ක්‍රමයක් සිටුවා ඇත:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5189,24 +5193,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "ඔබ %s %s හෝ ඉන්පසු අනුවාදයක් වෙත යාවත්කාලීන කල යුතුය." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "දෝෂය: ටෝකන නොගැලපීම" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS අගයන් උඩින් ලිවීමේ උත්සාහය" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "විය හැකි අයුතු ප්‍රයෝජන ගැනීමක්" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "සංඛ්‍යාත්මක යතුරක් අනාවරණය වුණි" @@ -5914,13 +5918,13 @@ msgstr "තීර නම් පළමු පේළියේ යොදන්න" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "තීර ඇවුරුම් සළකුණ" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "තීර මගහැරීමේ සළකුණ" @@ -5938,12 +5942,12 @@ msgstr "තීර තුල ඇති CRLF අනුලකුණු ඉවත් #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "තීර වෙන් කිරීමේ සළකුණ" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "පේළි අවසන් කිරීමේ සළකුණ" @@ -8280,7 +8284,7 @@ msgid "Table %s has been emptied." msgstr "%s වගුව හිස් කරන ලදි." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "%s දසුන හලන ලදි." @@ -8415,8 +8419,8 @@ msgid "No data to display" msgstr "පෙන්වීම සඳහා දත්ත නොමැත" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8464,53 +8468,53 @@ msgstr[1] "" msgid "No column selected." msgstr "පේළි කිසිවක් තෝරගෙන නැත" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "තීර සාර්ථකව ගෙන යන ලදි." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "විමසුම් දෝෂය" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "වෙනස් කරන්න" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "සූචිය" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "ජ්‍යාමිතික" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "සම්පූර්ණ පාඨය" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "එකිනෙකට වෙනස් අගයන්" @@ -8520,7 +8524,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s දිගුව සොයාගත නොහැක. කරුණාකර ඔබගේ PHP වින්‍යාසයන් පරීක්ෂා කර බලන්න." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "වෙනස්කම් නැත" @@ -9295,18 +9299,18 @@ msgstr "MySQL හිස් ප්‍රතිඵල කුලකයක් (ප msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "පහත සැකිලි අලුතින් සාදා හෝ වෙනස් කර ඇත. මෙහිදී ඔබට:" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 #, 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:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9314,42 +9318,42 @@ msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "අදාල \"විකල්ප\" සබැඳිය මත ක්ලික් කිරීමෙන් එහි ඕනෑම සිටුවමක් වෙනස් කරන්න" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 #, fuzzy #| msgid "Edit structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "\"සැකිල්ල\" සබැඳිය ඔස්සේ යාමෙන් සැකිල්ල සංස්කරණය කරන්න" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "%s දත්තගබඩාව වෙත යන්න" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "%s සඳහා සිටුවම් සංස්කරණය කරන්න" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "%s වගුව වෙත යන්න" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s හි සැකිල්ල" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "%s දසුන වෙත යන්න" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9397,53 +9401,53 @@ msgstr "හෝ" msgid "web server upload directory:" msgstr "වෙබ් සේවාදායකයේ උඩුගත ඩිරෙක්ටරිය:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "සංස්කරණය/ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "පේළි %s බැගින් තවදුරටත් ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "අනතුරුව" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "නව පේළියක් ලෙස ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "දෝෂ නොසලකමින් නව පේළියක් ලෙස ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "ඇතුල් කිරීමේ විමසුම පෙන්වන්න" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "පෙර පිටුවට ආපසු යන්න" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "නව පේළියක් එක් කරන්න" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "මෙම පිටුව වෙත ආපසු යන්න" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "මීලඟ පේළිය සංස්කරණය කරන්න" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9455,11 +9459,11 @@ msgstr "" msgid "Value" msgstr "අගය" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "SQL විමසුම පෙන්වමින්" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "%1$d පේළිය ඇතුල් කරන ලදි" @@ -10337,7 +10341,7 @@ msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "වගුව හෝ දත්ත ඉවත් කරන්න" @@ -10350,32 +10354,32 @@ msgid "Delete the table (DROP)" msgstr "වගුව ඉවත් කරන්න (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "විශ්ලේෂණය" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "පරීක්ෂාව" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "ප්‍රශස්තනය" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "නැවත සෑදීම" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "ප්‍රතිසංස්කරණය" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10403,37 +10407,37 @@ msgstr "කොටස් කිරීම ඉවත් කරන්න" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "එම වගුවටම පිටපත් කල නොහැක!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "%s වගුව %s වෙතට ගෙනයන ලදි." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "%s වගුව %s වෙතට පිටපත් කරන ලදි." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "වගුවෙහි නම හිස්ව ඇත!" @@ -10609,7 +10613,7 @@ msgstr "දත්ත නික්ෂේපන විකල්ප" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "වගු සඳහා නික්ෂේප දත්ත" @@ -10633,21 +10637,21 @@ msgstr "අර්ථ දැක්වීම" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "වගුවක් සඳහා වගු සැකිල්ල" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "දසුන සඳහා සැකිල්ල" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "දසුන සැදීම සඳහා තාවකාලික සැකිල්ල" @@ -10737,7 +10741,7 @@ msgid "Database:" msgstr "දත්තගබඩාව:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "දත්ත:" @@ -10843,7 +10847,7 @@ msgid "Data creation options" msgstr "දත්ත සෑදීමේ විකල්ප" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "ඇතුල් කිරීම් වලට පෙර වගුව හිස් කරන්න" @@ -10929,7 +10933,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10975,61 +10979,61 @@ msgstr "භාවිතා වෙමින් පවතී" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "නික්ෂේපනය කරන ලද වගු සඳහා සීමා බාධක" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "වගුව සඳහා සීමා බාධක" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "නික්ෂේපනය කරන ලද වගු සඳහා සීමා බාධක" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "වගු තුල:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "ශුන්‍ය අගයන් සඳහා AUTO_INCREMENT භාවිතා නොකරන්න" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT අගයක් එක් කරන්න" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "දසුන සඳහා සැකිල්ල" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "දත්ත කියවීමේදී දෝෂයකි:" @@ -11083,15 +11087,15 @@ msgstr "" msgid "Column names: " msgstr "තීර නම්: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV ආනයනය සඳහා වැරදි පරාමිතියක්: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -11100,18 +11104,18 @@ msgstr "" "සැපයූ තීර නාමය (%s) වලංගු නොවේ! තීර නම් නිවැරදි අක්ෂර වින්‍යාසය සහිත බවට, උධෘත මගින් අහුරා " "ඇති බවට සහ කොමා සලකුණු වලින් වෙන් කර ඇති බවට වගබලා ගන්න." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "CSV ආනයනයේ %d පේළියේ වැරදි ආකෘතියක්." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "CSV අදානයේ %d පේළියේ වැරදි තීර ගණනකි." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "මෙම පේණුව හැකිළු ආනයන සඳහා සහාය නොදක්වයි!" @@ -11119,7 +11123,7 @@ msgstr "මෙම පේණුව හැකිළු ආනයන සඳහා msgid "MediaWiki Table" msgstr "MediaWiki වගු" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Mediawiki ආනයනයේ වැරදි ආකෘතියකි, පේළිය:
%s." @@ -11132,16 +11136,16 @@ msgstr "ප්‍රතිශත පූර්ණ සංඛ්‍යා ලෙස msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "ව්‍යවහාර මුදල් අගයන් ආනයනය කරන්න (උදා. $5.00, 5.00 ලෙස)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" "ලබා දුන් XML ගොනුව අසම්පූර්ණ හෝ විකෘතිය. මෙම ගැටලුව නිරාකරණය කිරීමෙන් පසු නැවත උත්සාහ කරන්න." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "OpenDocument Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11151,24 +11155,24 @@ msgstr "OpenDocument පැතුරුම්පත" msgid "ESRI Shape File" msgstr "ESRI Shape ගොනුව" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "\"%s\" ESRI shape ගොනුව ආනයනය කිරීමේදී දෝෂයක් ඇති විය." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" "ඔබ ආනයනය කිරීමට උත්සාහ කල ගොනුව වලංගු නොවන එකක් හෝ එහි වලංගු දත්ත අඩංගු නොවන එකක් හෝ වේ!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL ජ්‍යාමිතික දිගුව ESRI \"%s\" වර්ගය සඳහා සහාය නොදක්වයි." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "ආනයන කල ගොනුවේ දත්ත කිසිවක් අඩංගු නොවේ!" @@ -14104,15 +14108,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14127,17 +14127,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14159,21 +14160,21 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "Title of browser window when a table is selected" msgid "The old name of the table was expected." msgstr "වගුවක් තෝරා ඇති විට බ්‍රව්සර කවුළුවේ මාතෘකාව" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14206,17 +14207,17 @@ msgstr "%1$s සිද්ධිය සාදන ලදි." msgid "Variable name was expected." msgstr "ගොනු නාම ටෙම්ප්ලේටය" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "වගුව මුලදී" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14239,17 +14240,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "පේළිය ඉවත් කරන ලදි." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14948,7 +14949,7 @@ msgstr "" msgid "Invalid table name" msgstr "වලංගු නොවන වගු නම" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15995,7 +15996,7 @@ msgid "at beginning of table" msgstr "වගුව මුලදී" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16044,7 +16045,7 @@ msgstr "කොටස් කරන ලද" msgid "Edit partitioning" msgstr "කොටස් කිරීම ඉවත් කරන්න" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "දසුන සංස්කරණය කරන්න" @@ -16167,11 +16168,11 @@ msgstr "දසුනේ නම" msgid "Column names" msgstr "තීර නම්" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "දසුනේ නම වෙනස් කරන්න" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Delete the table (DROP)" msgid "Delete the view (DROP)" diff --git a/po/sk.po b/po/sk.po index 5ef56e1e3e..9dbc4cf94e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-01-19 21:35+0000\n" "Last-Translator: Martin Lacina \n" "Language-Team: Slovak %2$s" msgstr[1] "%1$s výskyty v %2$s" msgstr[2] "%1$s výskytov v %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3435,30 +3440,30 @@ msgstr "Filtrovať riadky" msgid "Search this table" msgstr "Hľadať v tabuľke" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Začiatok" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Predchádzajúci" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Ďalší" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Koniec" @@ -3529,7 +3534,7 @@ msgstr "Môže byť nepresné. Viď [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "SQL dopyt bol úspešne vykonaný." @@ -3563,7 +3568,7 @@ msgid "Query took %01.4f seconds." msgstr "Dopyt zabral %01.4f sekúnd." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3571,7 +3576,7 @@ msgid "With selected:" msgstr "Výber:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3651,16 +3656,16 @@ msgstr "Nahrávanie súboru bolo zastavené rozšírením." msgid "Unknown error in file upload." msgstr "Neznáma chyba pri nahrávaní súboru." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Chyba pri presune nahrávaného súboru, pozri[doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Chyba pri presúvaní nahraného súboru." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Nahraný súbor sa nedá prečítať." @@ -3724,8 +3729,8 @@ msgid "Keyname" msgstr "Kľúčový názov" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3773,15 +3778,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Odstrániť" @@ -3794,7 +3799,7 @@ msgstr "" "Indexy %1$s a %2$s vyzerajú rovnaké a jeden z nich môže byť pravdepodobne " "odstránený." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3844,8 +3849,8 @@ msgid "Table" msgstr "Tabuľka" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3853,25 +3858,25 @@ msgstr "Tabuľka" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Hľadať" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Vložiť" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3879,24 +3884,24 @@ msgid "Privileges" msgstr "Oprávnenia" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operácie" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Sledovanie" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3907,16 +3912,16 @@ msgstr "Spúšťače" msgid "Database seems to be empty!" msgstr "Databáza vyzerá prázdna!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Dopyt podľa príkladu" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutiny" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3924,16 +3929,16 @@ msgstr "Rutiny" msgid "Events" msgstr "Udalosti" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Dizajnér" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Centrálne stĺpce" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3946,34 +3951,34 @@ msgid "User accounts" msgstr "Užívateľské účty" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binárny log" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikácia" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Premenné" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Znakové sady" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Systémy" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Rozšírenia" @@ -4599,16 +4604,16 @@ msgstr "Priestorový objekt" msgid "Max: %s%s" msgstr "Maximálna veľkosť: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Statická analýza:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4619,98 +4624,98 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL hlási: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Vysvetliť SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Preskočiť vysvetlenie SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "Bez PHP kódu" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "Odošli dopyt" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Vytvoriť PHP kód" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Upraviť v riadku" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Ne" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%a %d.%B %Y, %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dní, %s hodín, %s minút a %s sekúnd" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Chýbajúci parameter:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Prejsť na databázu \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkčnosť %s je ovplyvnená známou chybou, pozri %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Kliknite pre prepnutie" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Prechádzať váš počítač:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, 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:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Žiadny súbor pre nahrávanie!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Vyprázdniť" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Spustiť" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Používatelia" @@ -4836,11 +4841,11 @@ msgstr "Pridať nový stĺpec" msgid "Attributes" msgstr "Atribúty" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Nepodarilo sa načítať konfiguračný súbor!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4848,31 +4853,31 @@ msgstr "" "Toto je často spôsobené syntaktickou chybou v súbore, prosím skontrolujte " "chyby vypísané nižšie." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nepodarilo sa načítať prednastavenú konfiguráciu zo súboru: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Chybný index servera: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Chybné meno servera %1$s. Prosím, skontrolujte konfiguráciu." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "V konfigurácii je nastavená nesprávna autentifikačná metóda:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4880,24 +4885,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format 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:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Chyba: Nesprávny token" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Pokus o prepísanie GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "možný pokus o exploit" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "zistený číselný kľúč" @@ -5604,13 +5609,13 @@ msgstr "Pridať názvy polí na prvý riadok" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Polia uzatvorené do" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Polia uvedené pomocou" @@ -5628,12 +5633,12 @@ msgstr "Odstrániť konce riadkov (CRLF) z polí" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Stĺpce ukončené" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Riadky ukončené" @@ -7744,7 +7749,7 @@ msgid "Table %s has been emptied." msgstr "Tabuľka %s bola vyprázdená." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Pohľad %s bol odstránený." @@ -7878,8 +7883,8 @@ msgid "No data to display" msgstr "Žiadne dáta" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7918,52 +7923,52 @@ msgstr[2] "" msgid "No column selected." msgstr "Nebol vybraný žiadny stĺpec." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Stĺpce boli úspešne presunuté." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Chyba dopytu" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Zmeniť" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Index" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Celý text" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Odlišné hodnoty" @@ -7973,7 +7978,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Chýba rozšírenie %s. Skontrolujte prosín nastavenia PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Žiadna zmena" @@ -8738,54 +8743,54 @@ msgstr "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Upraviť štruktúru kliknutím na odkaz \"Štruktúra\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Prejsť do databázy: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Upraviť nastavenia pre %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Prejsť na tabuľku: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Štruktúra %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Prejsť na pohľad: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8831,48 +8836,48 @@ msgstr "Alebo" msgid "web server upload directory:" msgstr "upload adresár web serveru:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Upraviť/Vložiť" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "a potom" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Vložiť ako nový riadok" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Vložiť ako nový riadok a ignorovať chyby" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Zobraziť insert dopyt" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Späť" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Vložiť nový záznam" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Späť na túto stránku" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Upraviť nasledujúci riadok" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -8882,7 +8887,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8894,11 +8899,11 @@ msgstr "" msgid "Value" msgstr "Hodnota" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Zobrazujem SQL dotaz" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Vložený riadok id: %1$d" @@ -9721,7 +9726,7 @@ msgstr "Opraviť tabuľku" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Odstrániť dáta alebo tabuľku" @@ -9734,32 +9739,32 @@ msgid "Delete the table (DROP)" msgstr "Odstrániť tabuľku (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analyzovať" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Skontrolovať" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimalizovať" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Opraviť" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9785,35 +9790,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "Skontrolovať referenčnú integritu:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Nedá sa presunúť tabuľka sama do seba!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Nedá sa skopírovať tabuľka sama do seba!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabuľka %s bola presunutá do %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabuľka %s bola skorírovaná do %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Tabuľka je prázdna!" @@ -9988,7 +9993,7 @@ msgstr "Možnosti uloženia dát" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Sťahujem dáta pre tabuľku" @@ -10012,21 +10017,21 @@ msgstr "Definícia" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Štruktúra tabuľky pre tabuľku" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Štruktúra pre zobrazenie" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10116,7 +10121,7 @@ msgid "Database:" msgstr "Databáza:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Dáta:" @@ -10215,7 +10220,7 @@ msgid "Data creation options" msgstr "Možnosti vytvárania údajov" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Vyprázdniť tabuľku pred vložením" @@ -10286,7 +10291,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10328,52 +10333,52 @@ msgstr "práve sa používa" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Obmedzenie pre exportované tabuľky" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Obmedzenie pre tabuľku" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Kľúče pre exportované tabuľky" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indexy pre tabuľku" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT pre exportované tabuľky" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT pre tabuľku" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPY PRE TABUĽKU" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "PREPOJENIA PRE TABUĽKU" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Chyba pri čítaní dát:" @@ -10421,33 +10426,33 @@ msgstr "" msgid "Column names: " msgstr "Názvy stĺpcov: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Chybný parameter pre CSV import: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Chybný formát v CSV vstupe na riadku %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Chybný počet položiek v CSV vstupe na riadku %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Tento plug-in nepodporuje import komprimovaných súborov!" @@ -10455,7 +10460,7 @@ msgstr "Tento plug-in nepodporuje import komprimovaných súborov!" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Chybný formát vo vstupe z mediawiki na riadku:
%s." @@ -10468,9 +10473,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10478,7 +10483,7 @@ msgstr "" "Zadaný XMl súbor mal zlý formát alebo bol poškodený. Opravte problém a " "skúste to znovu." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Nepodarilo sa spracovať pracovný hárok OpenDocument!" @@ -10486,23 +10491,23 @@ msgstr "Nepodarilo sa spracovať pracovný hárok OpenDocument!" msgid "ESRI Shape File" msgstr "ESRI Shape súbor" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Vyskytla sa chyba pri importe ESRI shape súboru : \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Nahraný súbor neobsahuje žiadne dáta!" @@ -13408,15 +13413,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Bola očakávaná čiarka alebo uzatváracia zátvorka." @@ -13429,17 +13430,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Bol očakávaný alias." @@ -13457,19 +13459,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Bolo očakávané staré meno tabuľky." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Bolo očakávané nové meno tabuľky." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Očakávala sa operácia premenovania." @@ -13496,15 +13498,15 @@ msgstr "Udalosť %1$s bola vytvorená." msgid "Variable name was expected." msgstr "Očakávalo sa meno premennej." -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Neočakávaný začiatok výrazu." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13527,17 +13529,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Očakávala sa aspoň jedna definícia stĺpca." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14210,7 +14212,7 @@ msgstr "Zobraziť dump (schému) tabuľky" msgid "Invalid table name" msgstr "Chybné meno tabuľky" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15165,7 +15167,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:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Oddiely" @@ -15207,7 +15209,7 @@ msgstr "Pozícia" msgid "Edit partitioning" msgstr "Upraviť v riadku" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Upraviť zobrazenie" @@ -15326,11 +15328,11 @@ msgstr "Meno pohľadu" msgid "Column names" msgstr "Názvy stĺpcov" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Premenovať pohľad na" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Odstrániť zobrazenie (DROP)" diff --git a/po/sl.po b/po/sl.po index 215c69de27..63174023d7 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1,19 +1,19 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-02-08 14:36+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 @@ -48,7 +48,7 @@ msgid "Table comments:" msgstr "Pripombe tabele:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -102,7 +102,7 @@ msgstr "Vrsta" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -164,12 +164,12 @@ msgid "Comments" msgstr "Pripombe" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Primarni" @@ -202,12 +202,12 @@ msgstr "Ne" #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -252,8 +252,8 @@ msgid "Tables" msgstr "Tabele" #: db_export.php:66 libraries/Menu.php:323 libraries/Menu.php:430 -#: libraries/Util.php:3402 libraries/Util.php:3412 libraries/Util.php:3418 -#: libraries/Util.php:3698 libraries/Util.php:4335 libraries/Util.php:4352 +#: libraries/Util.php:3409 libraries/Util.php:3419 libraries/Util.php:3425 +#: libraries/Util.php:3705 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/central_columns.lib.php:725 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 @@ -261,7 +261,7 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -469,7 +469,7 @@ msgstr "Dodaj geometrijo" #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -499,7 +499,7 @@ msgstr "Dodaj geometrijo" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Izvedi" @@ -527,7 +527,7 @@ msgstr "Spodletelo" msgid "Incomplete params" msgstr "Nepopolni parametri" -#: import.php:184 +#: import.php:186 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -536,15 +536,15 @@ msgstr "" "Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, da si v " "%sdokumentaciji%s ogledate načine, kako obiti omejitev." -#: import.php:360 import.php:665 +#: import.php:362 import.php:667 msgid "Showing bookmark" msgstr "Prikazovanje zaznamka" -#: import.php:376 import.php:661 +#: import.php:378 import.php:663 msgid "The bookmark has been deleted." msgstr "Zaznamek je odstranjen." -#: import.php:474 +#: import.php:476 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -553,12 +553,12 @@ msgstr "" "Naložene datoteke ne morem premakniti, ker ima strežnik omogočen " "open_basedir brez dostopa do mape %s (za začasne datoteke)." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:492 import.php:569 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "Ne morem prebrati datoteke!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:503 import.php:518 import.php:543 import.php:558 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -567,7 +567,7 @@ msgstr "" "Poskušali ste naložiti datoteko z nepodprtim stiskanjem (%s). Bodisi podpora " "za njega ni vključena ali pa je onemogočena z vašo konfiguracijo." -#: import.php:574 +#: import.php:576 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -577,22 +577,27 @@ msgstr "" "je velikost datoteke presegala največjo velikost, dovoljeno v konfiguraciji " "PHP. Glej [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:628 libraries/display_import.lib.php:662 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:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:670 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "Ustvaril sem zaznamek %s." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." +#: import.php:680 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." +msgstr[1] "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." +msgstr[2] "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." +msgstr[3] "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." -#: import.php:705 +#: import.php:711 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -601,7 +606,7 @@ msgstr "" "Časovna omejitev skripta je potekla; če želite končati uvoz, prosimo, " "%sponovno pošljite isto datoteko%s in uvoz se bo nadaljeval." -#: import.php:715 +#: import.php:721 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -615,7 +620,7 @@ msgid "Could not load the progress of the import." msgstr "Ne morem naložiti napredka uvoza." #: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: libraries/Util.php:802 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Nazaj" @@ -711,10 +716,11 @@ msgstr "Pokaži podatke o PHP" msgid "Version information:" msgstr "Podatki o različici:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:449 libraries/Util.php:516 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentacija" @@ -1006,7 +1012,7 @@ msgid "Save & close" msgstr "Shrani in zapri" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Ponastavi" @@ -1063,7 +1069,7 @@ msgstr "Prosimo, izberite stolpce za indeks." msgid "You have to add at least one column." msgstr "Dodati morate vsaj en stolpec." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:132 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 @@ -1078,7 +1084,7 @@ msgstr "Simuliraj poizvedbo" msgid "Matched rows:" msgstr "Ujemajoče vrstice:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:137 libraries/Util.php:703 msgid "SQL query:" msgstr "Poizvedba SQL:" @@ -1137,12 +1143,12 @@ msgid "Other" msgstr "Drugo" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:160 libraries/Util.php:1498 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:162 libraries/Util.php:1500 msgid "." msgstr "," @@ -1248,40 +1254,40 @@ msgid "Processes" msgstr "Procesi" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:202 libraries/Util.php:1442 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:203 libraries/Util.php:1444 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:204 libraries/Util.php:1446 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:205 libraries/Util.php:1448 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:206 libraries/Util.php:1450 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:207 libraries/Util.php:1452 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:208 libraries/Util.php:1454 msgid "EiB" msgstr "EiB" @@ -1299,7 +1305,7 @@ msgstr "Vprašanja" msgid "Traffic" msgstr "Promet" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4333 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Nastavitve" @@ -1314,7 +1320,7 @@ msgstr "Prosimo, da v serijo dodate vsaj eno spremenljivko!" #: js/messages.php:219 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1517,7 +1523,7 @@ msgstr "Analiziranje…" msgid "Explain output" msgstr "Razloži izhod" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4329 #: 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:91 libraries/tracking.lib.php:284 @@ -1618,8 +1624,8 @@ msgstr "" "privzeto konfiguracijo…" #: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 -#: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 -#: libraries/Util.php:4357 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:581 libraries/Util.php:4332 libraries/Util.php:4347 +#: libraries/Util.php:4364 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 #: libraries/server_status_monitor.lib.php:313 prefs_manage.php:237 #: setup/frames/menu.inc.php:26 @@ -1773,7 +1779,7 @@ msgstr "Kopiranje zbirke podatkov" msgid "Changing charset" msgstr "Spreminjanje nabora znakov" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:377 libraries/Util.php:3291 msgid "Enable foreign key checks" msgstr "Omogoči preverjanja tujih ključev" @@ -1807,9 +1813,9 @@ msgstr "Opredelitev shranjene funkcije mora vsebovati izjavo RETURN!" #: js/messages.php:392 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 -#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 -#: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 -#: libraries/Util.php:4356 libraries/config/messages.inc.php:255 +#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3712 +#: libraries/Util.php:3713 libraries/Util.php:4331 libraries/Util.php:4346 +#: libraries/Util.php:4363 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:168 libraries/rte/rte_list.lib.php:149 #: libraries/server_privileges.lib.php:2513 #: libraries/server_privileges.lib.php:2592 @@ -1858,8 +1864,8 @@ msgstr "Prikaži polje poizvedbe" #: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 -#: libraries/Util.php:3703 libraries/Util.php:3704 +#: libraries/Index.php:721 libraries/Util.php:732 libraries/Util.php:1242 +#: libraries/Util.php:3710 libraries/Util.php:3711 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 #: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:182 @@ -2044,7 +2050,7 @@ msgid "No dependencies selected!" msgstr "Ni izbranih odvisnosti!" #: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2128,7 +2134,7 @@ msgid "Data point content" msgstr "Vsebina kazalca podatkov" #: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Prezri" @@ -2368,7 +2374,7 @@ msgid "Select database first" msgstr "Najprej izberite zbirko podatkov" #: js/messages.php:599 libraries/DisplayResults.php:5029 -#: libraries/Util.php:4217 +#: libraries/Util.php:4224 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" @@ -2645,63 +2651,63 @@ msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:773 libraries/Util.php:1664 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:775 libraries/Util.php:1666 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:777 libraries/Util.php:1668 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:779 libraries/Util.php:1670 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:781 libraries/Util.php:1672 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:783 libraries/Util.php:1674 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:785 libraries/Util.php:1676 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:787 libraries/Util.php:1678 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:789 libraries/Util.php:1680 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:791 libraries/Util.php:1682 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:793 libraries/Util.php:1684 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:795 libraries/Util.php:1686 msgid "Dec" msgstr "dec" @@ -2739,32 +2745,32 @@ msgid "Sun" msgstr "ned" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:816 libraries/Util.php:1691 msgid "Mon" msgstr "pon" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:818 libraries/Util.php:1693 msgid "Tue" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:820 libraries/Util.php:1695 msgid "Wed" msgstr "sre" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:822 libraries/Util.php:1697 msgid "Thu" msgstr "čet" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:824 libraries/Util.php:1699 msgid "Fri" msgstr "pet" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:826 libraries/Util.php:1701 msgid "Sat" msgstr "sob" @@ -2905,9 +2911,9 @@ msgstr "Prosimo, vnesite veljaven datum ali čas" msgid "Please enter a valid HEX input" msgstr "Prosimo, vnesite veljaven heksadecimalen vnos" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:679 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Napaka" @@ -2961,17 +2967,17 @@ msgstr "" "Nepričakovan znak v vrstici %1$s. Pričakoval sem tabulator, vendar našel " "»%2$s«." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Obstoječa konfiguracijska datoteka (%s) ni berljiva." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Napačna dovoljenja konfiguracijski datoteke; ne sme biti vsem zapisljiva!" -#: libraries/Config.php:1519 +#: libraries/Config.php:1528 msgid "Font size" msgstr "Velikost pisave" @@ -3043,7 +3049,7 @@ msgstr "Med trenutno sejo" msgid "Explain" msgstr "Razloži" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1328 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profiliranje" @@ -3077,8 +3083,8 @@ msgid "History" msgstr "Zgodovina" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3171,7 +3177,7 @@ msgstr "Skrij sled" msgid "Count:" msgstr "Štetje:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:339 libraries/Util.php:1298 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 @@ -3227,7 +3233,6 @@ msgid "Switch to dark theme" msgstr "Preklopi na temno emo" #: libraries/DatabaseInterface.php:1528 -#| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Ne morem nastaviti povezave konfiguriranega razvrščanja znakov!" @@ -3415,9 +3420,9 @@ msgstr[1] "%1$s zadetka v %2$s" msgstr[2] "%1$s zadetki v %2$s" msgstr[3] "%1$s zadetkov v %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3474,30 +3479,30 @@ msgstr "Filtriraj vrstice" msgid "Search this table" msgstr "Išči po tabeli" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Začetek" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Prejšnja" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Naslednja" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Konec" @@ -3568,7 +3573,7 @@ msgstr "Morda je približno. Glej [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Poizvedbo SQL sem uspešno izvedel." @@ -3601,7 +3606,7 @@ msgid "Query took %01.4f seconds." msgstr "Poizvedba je potrebovala %01.4f sekunde." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3609,7 +3614,7 @@ msgid "With selected:" msgstr "Z označenim:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3687,16 +3692,16 @@ msgstr "Nalaganje datoteke je ustavila razširitev." msgid "Unknown error in file upload." msgstr "Neznana napaka pri nalaganju datoteke." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Napaka pri premikanju naložene datoteke, glej [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Napaka pri premikanju naložene datoteke." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Ne morem prebrati naložene datoteke." @@ -3760,8 +3765,8 @@ msgid "Keyname" msgstr "Ime ključa" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3809,15 +3814,15 @@ msgstr "Zavrgel sem primarni ključ." msgid "Index %s has been dropped." msgstr "Zavrgel sem indeks %s." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Zavrzi" @@ -3830,7 +3835,7 @@ msgstr "" "Kaže, da sta indeksa %1$s in %2$s enaka, zato se enega od njiju morda lahko " "odstrani." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3880,8 +3885,8 @@ msgid "Table" msgstr "Tabela" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3889,25 +3894,25 @@ msgstr "Tabela" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Iskanje" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Vstavi" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3915,24 +3920,24 @@ msgid "Privileges" msgstr "Privilegiji" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operacije" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Sledenje" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3943,16 +3948,16 @@ msgstr "Sprožilci" msgid "Database seems to be empty!" msgstr "Zbirka podatkov se zdi prazna!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Poizvedba" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutina" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3960,16 +3965,16 @@ msgstr "Rutina" msgid "Events" msgstr "Dogodki" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Oblikovalnik" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Osrednji stolpci" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3982,34 +3987,34 @@ msgid "User accounts" msgstr "Uporabniški računi" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Dvojiški dnevnik" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Podvojevanje" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Spremenljivke" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Nabori znakov" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Pogoni" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Vtičniki" @@ -4648,16 +4653,16 @@ msgstr "Prostorsko" msgid "Max: %s%s" msgstr "Največja velikost: %s %s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Statični analiza:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "Med analizo smo našli %d napak." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4668,98 +4673,98 @@ msgstr "Med analizo smo našli %d napak." msgid "MySQL said: " msgstr "MySQL je vrnil: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Razloži stavek SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Preskoči razlago stavka SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "Analiziraj explain pri %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "Brez kode PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "Izvedi poizvedbo" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Ustvari kodo PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Uredi v vrstici" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "ned" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y ob %H.%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dni, %s ur, %s minut in %s sekund" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Manjkajoč parameter:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Preskoči na zbirko podatkov \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Na funkcionalnost %s vpliva znan hrošč, glej %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Kliknite za preklop" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Prebrskajte svoj računalnik:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, 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:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Nobene datoteke ni za naložiti!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Izprazni" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Izvedi" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Uporabniki" @@ -4889,11 +4894,11 @@ msgstr "Dodaj nov stolpec" msgid "Attributes" msgstr "Atributi" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Ne morem prebrati konfiguracijske datoteke!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4901,33 +4906,33 @@ msgstr "" "To po navadi pomeni, da ima skladenjsko napako; prosimo, preverite vse " "spodaj prikazane napake." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Ne morem naložiti privzete konfiguracije iz: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Neveljaven indeks strežnika: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Neveljavno ime gostitelja za strežnik %1$s. Prosim, preglejte svojo " "konfiguracijo." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Strežnik %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Neveljaven način overitve določen v konfiguracijski datoteki:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4939,24 +4944,24 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin trenutno uporalja privzeti časovni pas " "strežnika zbirke podatkov." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format 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:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Napaka: Neujemanje žetonov" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "poskus prepisa GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "možno izkoriščanje" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "zaznana številska tipka" @@ -5689,13 +5694,13 @@ msgstr "Postavi imena stolpcev v prvo vrstico" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Stolpci so obdani z" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Stolpci so izognjeni z" @@ -5713,12 +5718,12 @@ msgstr "Odstrani znake CRLF znotraj stolpcev" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Stolpci so zaključeni z" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Vrstice so zaključene z" @@ -7855,7 +7860,7 @@ msgid "Table %s has been emptied." msgstr "Izpraznil sem tabelo %s." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Pogled %s sem zavrgel." @@ -7992,8 +7997,8 @@ msgid "No data to display" msgstr "Ni podatkov za prikaz" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8033,52 +8038,52 @@ msgstr[3] "Imena '%s' so rezervirane besede MySQL." msgid "No column selected." msgstr "Ni izbranih stolpcev." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Stolpce smo uspešno premaknili." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Napaka poizvedbe" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Spremeni" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Prostorsko" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Polno besedilo" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Različne vrednosti" @@ -8088,7 +8093,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Manjka razširitev %s. Prosimo, preverite vašo konfiguracijo PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Brez sprememb" @@ -8880,57 +8885,57 @@ msgstr "MySQL je vrnil kot rezultat prazno množico (npr. nič vrstic)." msgid "[ROLLBACK occurred.]" msgstr "[Zgodil se je ROLLBACK.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Uredite strukturo s sledenjem povezavi \"Struktura\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Pojdi v zbirko podatkov: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Uredi nastavitve za %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Pojdi na tabelo: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Pojdi na pogled: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8978,55 +8983,55 @@ msgstr "Ali" msgid "web server upload directory:" msgstr "imenik za nalaganje datotek:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Uredi/Vstavi" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Nadaljuj vstavljanje z %s vrsticami" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "in potem" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Vstavi kot novo vrstico" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Vstavi kot novo vrstico in presliši napake" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Prikaži poizvedbo insert" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Pojdi nazaj na prejšnjo stran" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Vstavi še eno novo vrstico" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Pojdi nazaj na stran" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Uredi naslednjo vrstico" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9038,11 +9043,11 @@ msgstr "" msgid "Value" msgstr "Vrednost" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Prikazovanje poizvedbe SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Id vstavljene vrstice: %1$d" @@ -9908,7 +9913,7 @@ msgstr "Popravi tabelo" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Izbriši podatke ali tabelo" @@ -9921,32 +9926,32 @@ msgid "Delete the table (DROP)" msgstr "Izbriši tabelo (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analiziraj" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Označi" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimiraj" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Ponovno sestavi" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Popravi" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Izprazni" @@ -9972,35 +9977,35 @@ msgstr "Odstrani particioniranje" msgid "Check referential integrity:" msgstr "Preveri referenčno integriteto:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Tabele ne morete premakniti same vase!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Tabele ne morete kopirati same vase!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabelo %s smo premaknili na %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabelo %s smo skopirali na %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Ime tabele je prazno!" @@ -10177,7 +10182,7 @@ msgstr "Možnosti odlaganja podatkov" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Odloži podatke za tabelo" @@ -10201,21 +10206,21 @@ msgstr "Opredelitev" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struktura tabele" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktura pogleda" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Nadomestna struktura pogleda" @@ -10305,7 +10310,7 @@ msgid "Database:" msgstr "Zbirka podatkov:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Podatki:" @@ -10405,7 +10410,7 @@ msgid "Data creation options" msgstr "Možnosti ustvarjanja podatkov" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Počisti tabelo pred vstavljanjem" @@ -10488,7 +10493,7 @@ msgstr "Kot kaže, vaša zbirka podatkov uporablja rutine;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "izvoz z vzdevkom v vseh primerih morda ne bo deloval zanesljivo." @@ -10530,52 +10535,52 @@ msgstr "v uporabi" msgid "It appears your database uses views;" msgstr "Kot kaže, vaša zbirka podatkov uporablja poglede;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Omejitve tabel za povzetek stanja" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Omejitve za tabelo" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indeksi zavrženih tabel" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indeksi tabele" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT zavrženih tabel" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT tabele" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "VRSTE MIME ZA TABELO" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE ZA TABELO" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Kot kaže, vaša tabela uporablja sprožilce;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktura pogleda %s, izvoženega kot tabela" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "(Oglejte si spodaj za resnični pogled)" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Napaka med branjem podatkov:" @@ -10630,15 +10635,15 @@ msgstr "" msgid "Column names: " msgstr "Imena stolpcev: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Neveljavni parameter za uvoz CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10647,18 +10652,18 @@ msgstr "" "Naveden je neveljavni stolpec (%s)! Prepričajte se, da so imena stolpcev " "pravilno črkovana, ločena z vejicami in ne obdana z narekovaji." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Neveljavna oblika vnosa CSV v vrstici %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Neveljavno število stolpcev v vnosu CSV v vrstici %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Vtičnik ne podpira stisnjenih uvozov!" @@ -10666,7 +10671,7 @@ msgstr "Vtičnik ne podpira stisnjenih uvozov!" msgid "MediaWiki Table" msgstr "Tabela MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Neveljavna oblika vnosa mediawiki v vrstici:
%s." @@ -10680,9 +10685,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Uvozi denarne enote (npr. $5.00 v 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10690,7 +10695,7 @@ msgstr "" "Določena datoteka XML je ali skažena ali nepopolna. Prosimo, odpravite " "težave in poskusite znova." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Ne morem razčleniti preglednice OpenDocument!" @@ -10698,12 +10703,12 @@ msgstr "Ne morem razčleniti preglednice OpenDocument!" msgid "ESRI Shape File" msgstr "Datoteka oblik ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Med uvažanjem datoteke oblik ESRI je prišlo do napake: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10711,12 +10716,12 @@ msgstr "" "Poskušali ste uvoziti neveljavno datoteko ali pa uvožena datoteka vsebuje " "neveljavne podatke!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "Prostorska razširitev MySQL ne podpira ESRI vrste \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Uvožena datoteka ne vsebuje nobenih podatkov!" @@ -13720,15 +13725,11 @@ msgstr "Pričakovali smo %1$d vrednosti, vendar smo jih našli %2$d." msgid "An opening bracket followed by a set of values was expected." msgstr "Pričakovali smo začetni oklepaj, ki mu sledi množica vrednosti." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "Pričakovali smo začetni oklepaj." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "Pričakovali smo vejico ali zaklepaj" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Pričakovali smo vejico ali zaklepaj." @@ -13741,17 +13742,18 @@ msgstr "Pričakovali smo zaklepaj." msgid "Unrecognized data type." msgstr "Neprepoznana vrsta podatkov." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Vzdevek smo našli že prej." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Nepričakovana pika." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Pričakovali smo vzdevek." @@ -13769,19 +13771,19 @@ msgstr "Pričakovali smo odmik." msgid "This option conflicts with \"%1$s\"." msgstr "Izbira je v sporu z \"%1$s\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Pričakovali smo staro ime tabele." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Pričakovali smo ključno besedo \"TO\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Pričakovali smo novo ime tabele." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Pričakovali smo poseg preimenovanja." @@ -13807,15 +13809,15 @@ 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:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Nepričakovan začetek stavka." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Neprepoznana vrsta stavka." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Začeli niste nobene transakcije." @@ -13838,15 +13840,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Nepričakovana ključna beseda." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Pričakovali smo ime entitete." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Pričakovali smo vsaj eno opredelitev stolpca." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Pričakovali smo ključno besedo \"RETURNS\"." @@ -14536,7 +14538,7 @@ msgstr "Preglej povzetek stanja tabele" msgid "Invalid table name" msgstr "Neveljavno ime tabele" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Vrstica: %1$s, Stolpec: %2$s, Napaka: %3$s" @@ -15455,7 +15457,7 @@ msgid "at beginning of table" msgstr "na začetku tabele" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Particije" @@ -15488,7 +15490,7 @@ msgstr "Tabela razdelitve" msgid "Edit partitioning" msgstr "Uredi razdelitev" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Urejevalni pogled" @@ -15603,11 +15605,11 @@ msgstr "Ime VIEW" msgid "Column names" msgstr "Imena stolpcev" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Preimenuj pogled v" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Izbriši pogled (DROP)" @@ -16871,6 +16873,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastavljeno na 0" +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Pričakovali smo vejico ali zaklepaj" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/sq.po b/po/sq.po index 565c40dd73..f31992e204 100644 --- a/po/sq.po +++ b/po/sq.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-09-05 23:03+0200\n" "Last-Translator: Arben Çokaj \n" "Language-Team: Albanian %2$s" msgstr[0] "%1$s përkim në %2$s" msgstr[1] "%1$s përkime në %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3506,30 +3510,30 @@ msgstr "Radhët e filterit" msgid "Search this table" msgstr "Kërko këtë tabelë" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Fillo" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Përpara" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Tjetër" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Fund" @@ -3600,7 +3604,7 @@ msgstr "Mund të jetë me afërsi. Shiko [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Pyetsori juaj SQL është ekzekutuar me sukses." @@ -3635,7 +3639,7 @@ msgid "Query took %01.4f seconds." msgstr "Pyetsori mori %01.4f sekonda." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3643,7 +3647,7 @@ msgid "With selected:" msgstr "Me të zgjedhur:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3721,16 +3725,16 @@ msgstr "Ngarkimi i filit u ndal nga zgjerimi." msgid "Unknown error in file upload." msgstr "Gabim i panjohur në ngarkimin e filit." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Gabim në lëvizjen e filit të ngarkuar, shiko [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Gabim gjatë lëvizjes së fileve të ngarkuara." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Nuk mund të lexojë filin e ngarkuar." @@ -3794,8 +3798,8 @@ msgid "Keyname" msgstr "Emri i çelësit" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3843,15 +3847,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Fshij" @@ -3864,7 +3868,7 @@ msgstr "" "Indekset %1$s dhe %2$s duket se janë të barabarta dhe një prej tyre mund të " "hiqet." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3916,8 +3920,8 @@ msgid "Table" msgstr "Tabela" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3925,25 +3929,25 @@ msgstr "Tabela" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Kërko" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Fut" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3951,24 +3955,24 @@ msgid "Privileges" msgstr "Privilegjet" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Veprime" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Gjurmim" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3979,16 +3983,16 @@ msgstr "Shkrehësit" msgid "Database seems to be empty!" msgstr "Databaza duket se është e zbrazët!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Pyetsori" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutinat" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3996,16 +4000,16 @@ msgstr "Rutinat" msgid "Events" msgstr "Ngjarjet" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Dizajner" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Kolonat qendrore" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4018,34 +4022,34 @@ msgid "User accounts" msgstr "Llogaritë e përdoruesve" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Regjistër (log) binar" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikimi" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variablat" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Karakteret" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Makinat" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Shtojcat (plugins)" @@ -4674,16 +4678,16 @@ msgstr "Spacial (hapësinor)" msgid "Max: %s%s" msgstr "Maks: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Analizat statike:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "%d gabime u gjendën gjatë analizave." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4694,102 +4698,102 @@ msgstr "%d gabime u gjendën gjatë analizave." msgid "MySQL said: " msgstr "MySQL tha: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Sqaro SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Shmang sqarimin SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "Analizo sqarimin në %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Pa kod PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Dërgo pyetsor" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Krijo kodin PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Korrigjo në linjë" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Die" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y në %I:%M %p" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ditë, %s orë, %s minuta dhe %s sekonda" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Parametri që mungon:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Hidhu tek databaza \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funksionaliteti %s është ndikuar nga një defekt i njohur, shiko %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Kliko për të nyjëzuar" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Shfleto kompjuterin:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Zgjedh nga drejtoria e ngarkimit %s të ueb serverit:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Nuk ka file për ngarkim!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Zbraz" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Ekzekuto" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Përdoruesit" @@ -4919,11 +4923,11 @@ msgstr "Shto kolonë të re" msgid "Attributes" msgstr "Atributet" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Dështoi në leximin e filit të konfigurimit!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4931,33 +4935,33 @@ msgstr "" "Kjo zakonisht do të thotë se ka një gabim sintakse në të, ju lutem, " "kontrollo ndonjë gabim të treguar më poshtë." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nuk mund të ngarkojë konfigurimin e parazgjedhur nga: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Indeks serveri i pavlefshëm: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Emër pritësi (host) i pavlefshëm për serverin %1$s. Ju lutem, rishiko " "konfigurimin." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Serveri %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Metodë e pavlefshme autentifikimi e vendosur në konfigurim:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4969,24 +4973,24 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin përdor aktualisht zonën kohore të " "parazgjedhur të serverit të databazës." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Duhet të aktualizoni tek %s %s ose më lart." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Gabim: mospërputhje e shenjave" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS përpjekje mbishkrimi" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "e mundur të shfrytëzohet" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "çelës numerik është hetuar" @@ -5736,13 +5740,13 @@ msgstr "Vendos emrat e kolonave në radhë të parë" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Kolonat e mbyllura me" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Kolonat ikin nga" @@ -5760,12 +5764,12 @@ msgstr "Largo karakteret CRLF brenda kolonave" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Kolonat ndërpriten me" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Rreshta që përfundojnë me" @@ -7916,7 +7920,7 @@ msgid "Table %s has been emptied." msgstr "Tabela %s është zbrazur." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Paraqitja %s është fshirë." @@ -8050,8 +8054,8 @@ 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:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8089,52 +8093,52 @@ msgstr[1] "Emrat '%s' janë fjalë kyçe të rezervuara MySQL." msgid "No column selected." msgstr "Nuk është zgjedhur kolona." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Kolonat kanë lëvizur me sukses." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Gabim pyetsori" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Ndrysho" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeksi" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spacial (hapësinor)" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Tekst i plotë" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Vlerat e dallueshme" @@ -8144,7 +8148,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Zgjerimi %s mungon. Ju lutem, kontrollo konfigurimin tuaj PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nuk ka ndryshime" @@ -8951,57 +8955,57 @@ msgstr "MySQL ktheu një set rezultati të zbrazët (psh. zero radhë)." msgid "[ROLLBACK occurred.]" msgstr "[RIKTHIMI u shfaq.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Korrigjo strukturën duke ndjekur lidhjen \"Structure\" (struktura)." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Shko tek databaza: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Korrigjo rregullimet për %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Shko tek tabela: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struktura e %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Shko tek pamja: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9050,48 +9054,48 @@ msgstr "Ose" msgid "web server upload directory:" msgstr "drejtoria e ngarkimit në ueb server:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Korrigjo/Fut" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Vazhdo futjen me %s radhë" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "dhe pastaj" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Fut si radhë të re" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Fut si radhë të re dhe injoro gabimet" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Shfaq fut pyetsorin" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Kthehu tek faqja më përpara" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Fut një radhë tjetër" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Kthehu tek kjo faqe" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Korrigjo radhën tjetër" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9101,7 +9105,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9113,11 +9117,11 @@ msgstr "" msgid "Value" msgstr "Vlera" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Shfaqën pyetsorin SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "ID e radhës së futur: %1$d" @@ -9998,7 +10002,7 @@ msgstr "Riparo tabelën" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Fshij të dhënat ose tabelat" @@ -10011,32 +10015,32 @@ msgid "Delete the table (DROP)" msgstr "Fshij tabelën (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analizë" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Kontrollo" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimizo" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Rindërto" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Riparo" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Cungo" @@ -10062,35 +10066,35 @@ msgstr "Largo particionimin" msgid "Check referential integrity:" msgstr "Kontrollo integritetin referencial:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Nuk mund t'i lëvizë tabelat tek vetvetja!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Nuk mund ta kopjojë tabelën tek vetvetja!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s ka lëvizur tek %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s është kopjuar tek %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Emri i tabelës është i zbrazët!" @@ -10268,7 +10272,7 @@ msgstr "Opsionet e heqjes (dump) së të dhënave" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Zbraz të dhënat për tabelën" @@ -10292,21 +10296,21 @@ msgstr "Përkufizimi" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struktura e tabelës për tabelën" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktura për pamjen" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Struktura zëvendësuese për pamjen" @@ -10396,7 +10400,7 @@ msgid "Database:" msgstr "Databaza:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Të dhëna:" @@ -10498,7 +10502,7 @@ msgid "Data creation options" msgstr "Opsionet e krijimit të të dhënave" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Cungo tabelën para futjes" @@ -10583,7 +10587,7 @@ msgstr "Duket se databaza juaj përdor funksionet;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 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ë " @@ -10629,52 +10633,52 @@ msgstr "në përdorim" msgid "It appears your database uses views;" msgstr "Duket se databaza juaj përdor pamjet;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Detyrimet për tabelat e hedhura" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Detyrimet për tabelën" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indekset për tabelat e hedhura" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indekset për tabelë" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT për tabelat e hedhura" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT për tabelë" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "TIPET MIME PËR TABELËN" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELACIONET PËR TABELËN" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Duket se tabela juaj përdor shkrehës;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Gabim në leximin e të dhënave:" @@ -10729,15 +10733,15 @@ msgstr "" msgid "Column names: " msgstr "Emrat e kolonës: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Parametër i pavlefshëm për importin CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10746,18 +10750,18 @@ msgstr "" "Kolonë e pavlefshme (%s) e specifikuar! Sigurohu që emrat e kolonave janë " "shkruar saktë, ndarë me presje dhe nuk mbyllen me thonjëza." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Format i pavlefshëm i hyrjes CSV në linjë %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Numër i pavlefshëm kolone në hyrjen CSV në linjë %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Kjo shtojcë (plug-in) nuk i mbështet importimet e kompresuara!" @@ -10765,7 +10769,7 @@ msgstr "Kjo shtojcë (plug-in) nuk i mbështet importimet e kompresuara!" msgid "MediaWiki Table" msgstr "Tabela MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Format i pavlefshëm i hyrjes mediawiki në linjë:
%s." @@ -10779,9 +10783,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importo monedhat (psh. $5.00 në 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10789,7 +10793,7 @@ msgstr "" "Fili XML i specifikuar ishte ose i formuar keq ose jo i plotë. Ju lutem, " "korrekto problemin dhe provo përsëri." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Nuk mund të analizojë OpenDocument Spreadsheet!" @@ -10797,12 +10801,12 @@ msgstr "Nuk mund të analizojë OpenDocument Spreadsheet!" msgid "ESRI Shape File" msgstr "ESRI fil forme" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Ka një gabim në importimin e filit të formës ESRI: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10810,12 +10814,12 @@ msgstr "" "Provuat të importoni një fil të pavlefshëm ose fil të importuar që përmban " "të dhëna të pavlefshme!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "Zgjerimi i hapësirës MySQL nuk e mbështet tipin ESRI \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Fili i importuar nuk përmban ndonjë të dhënë!" @@ -13868,15 +13872,11 @@ msgstr "Vlerat %1$d u pranuan, por gjeti %2$d." msgid "An opening bracket followed by a set of values was expected." msgstr "Pritet një kllapë e hapur, e ndjekur nga një set vlerash." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "Pritet një kllapë e hapur." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "Pritet një presje ose një kllapë e mbyllur" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Pritet një presje ose një kllapë mbyllëse." @@ -13889,17 +13889,18 @@ msgstr "Pritet një kllapë e mbylljes." msgid "Unrecognized data type." msgstr "Tip të dhënash i panjohur." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Një pseudonim është gjetur më përpara." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Pikë (dot) e papritur." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Pritet një alias (pseudonim)." @@ -13917,19 +13918,19 @@ msgstr "Pritet një rezultat (offset)." msgid "This option conflicts with \"%1$s\"." msgstr "Ky opsion konflikton me \"%1$s\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Pritet emri i vjetër i tabelës." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Pritet fjala kyçe \"TO\" (për)." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Pritet emri i ri i tabelës." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Pritet një veprim riemërimi." @@ -13955,15 +13956,15 @@ msgstr "Pritet thonjëza e fundit %1$s." msgid "Variable name was expected." msgstr "Pritet emri i variablit." -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Fillim i papritur i deklaratës." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Tip deklarate i panjohur." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Nuk ka filluar ndonjë transaksion më parë." @@ -13986,15 +13987,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Fjalë kyçe e panjohur." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Pritet emri i entitetit." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Pritet së paku një përcaktim kolone." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Pritet një fjalë kyçe \"RETURNS\"." @@ -14686,7 +14687,7 @@ msgstr "Shfaq zbrazjen (skema) e tabelës" msgid "Invalid table name" msgstr "Emër tabele i pavlefshëm" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Radhë: %1$s, Kolonë: %2$s, Gabim: %3$s" @@ -15648,7 +15649,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:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Pjesët" @@ -15687,7 +15688,7 @@ msgstr "Ndarë nga:" msgid "Edit partitioning" msgstr "Largo particionimin" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Korrigjo pamjen" @@ -15806,11 +15807,11 @@ msgstr "SHFAQ emrin" msgid "Column names" msgstr "Emrat e kolonës" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Riemëro pamjen në" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Fshij pamjen (DROP)" @@ -17124,6 +17125,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert është vendosur në 0" +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Pritet një presje ose një kllapë e mbyllur" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/sr.po b/po/sr.po index bb30dfeced..63fcf924f1 100644 --- a/po/sr.po +++ b/po/sr.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:25+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian %s" msgstr[1] "%s погодака унутар табеле %s" msgstr[2] "%s погодака унутар табеле %s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3889,16 +3894,16 @@ msgstr "Датотеке" msgid "Search this table" msgstr "Претраживање базе" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Почетак" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3907,8 +3912,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Претходна" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -3917,8 +3922,8 @@ msgctxt "Next page" msgid "Next" msgstr "Следећи" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -4006,7 +4011,7 @@ msgstr "Може бити приближно. Видите [doc@faq3-11]FAQ 3.11 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4044,7 +4049,7 @@ msgid "Query took %01.4f seconds." msgstr "Упит је трајао %01.4f секунди" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -4052,7 +4057,7 @@ msgid "With selected:" msgstr "Означено:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4142,18 +4147,18 @@ msgstr "Пријем датотеке заустављен због екстен msgid "Unknown error in file upload." msgstr "Непозната грешка при слању датотеке." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Грешка у премештању примљене датотеке, погледајте [doc@faq1-11]FAQ 1.11[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4221,8 +4226,8 @@ msgid "Keyname" msgstr "Име кључа" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4271,15 +4276,15 @@ msgstr "Примарни кључ је обрисан." msgid "Index %s has been dropped." msgstr "Кључ %s је обрисан." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Одбаци" @@ -4290,7 +4295,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4340,8 +4345,8 @@ msgid "Table" msgstr "Табела" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4349,25 +4354,25 @@ msgstr "Табела" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Претраживање" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Нови запис" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4375,24 +4380,24 @@ msgid "Privileges" msgstr "Привилегије" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Операције" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4403,16 +4408,16 @@ msgstr "Окидачи" msgid "Database seems to be empty!" msgstr "База је изгледа празна!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Упит по примеру" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Рутине" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4421,18 +4426,18 @@ msgstr "Рутине" msgid "Events" msgstr "Догађаји" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Дизајнер" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Додај/обриши колону" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4447,34 +4452,34 @@ msgid "User accounts" msgstr "Корисник" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Бинарни дневник" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Репликација" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Променљиве" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Кодне стране" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Складиштења" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -5088,16 +5093,16 @@ msgstr "Укупно" msgid "Max: %s%s" msgstr "Максимална величина: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5108,38 +5113,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL рече: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Објасни SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Прескочи објашњавање SQL-a" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "без PHP кода" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Изврши SQL упит" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Направи PHP код" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5147,71 +5152,71 @@ msgid "Edit inline" msgstr "Додај ново поље" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Нед" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. у %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дана, %s сати, %s минута и %s секунди" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Рутине" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Пређи на базу \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ова функционалност %s је погођена познатом грешком, видите %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "директоријум за слање веб сервера " -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Директоријум који сте изабрали за слање није доступан." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 #, fuzzy msgid "There are no files to upload!" msgstr "Провери табелу" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Испразни" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 #, fuzzy #| msgid "User" msgid "Users" @@ -5355,46 +5360,46 @@ msgstr "Додај %s поља" msgid "Attributes" msgstr "Атрибути" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file!" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Неисправан индекс сервера: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Неисправан назив сервера %1$s. Молимо проверите своју конфигурацију." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Сервер" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Неисправан метод аутентикације је задат у конфигурацији:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5402,24 +5407,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Требало би да унапредите ваш %s сервер на верзију %s или новију." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6129,7 +6134,7 @@ msgstr "Стави имена поља у први ред" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6137,7 +6142,7 @@ msgstr "Поља ограничена са" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6159,14 +6164,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Линије се завршавају са" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8313,7 +8318,7 @@ msgid "Table %s has been emptied." msgstr "Табела %s је испражњена." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8456,8 +8461,8 @@ msgid "No data to display" msgstr "База не постоји" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." @@ -8507,56 +8512,56 @@ msgstr[2] "" msgid "No column selected." msgstr "Нема одабраних редова" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Изабрани корисници су успешно обрисани." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Врста упита" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, fuzzy, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "Изабрани корисници су успешно обрисани." -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Промени" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Кључ" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Текст кључ" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8568,7 +8573,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Нема измена" @@ -9408,55 +9413,55 @@ msgstr "MySQL је вратио празан резултат (нула редо msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "База не постоји" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "База не постоји" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Само структура" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9507,52 +9512,52 @@ msgstr "или" msgid "web server upload directory:" msgstr "директоријум за слање веб сервера" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Нови запис" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Поново покрени уношење са %s редова" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "и онда" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Унеси као нови ред" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 #, fuzzy msgid "Show insert query" msgstr "Приказ као SQL упит" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Назад на претходну страну" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Додај још један нови ред" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Врати се на ову страну" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Уреди следећи ред" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9562,7 +9567,7 @@ msgstr "" "Користите TAB тастер за померање од поља до поља, или CTRL+стрелице за " "слободно померање" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9574,11 +9579,11 @@ msgstr "" msgid "Value" msgstr "Вредност" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Приказ као SQL упит" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10467,7 +10472,7 @@ msgstr "Поправи табелу" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10483,34 +10488,34 @@ msgid "Delete the table (DROP)" msgstr "База не постоји" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 #, fuzzy msgid "Check" msgstr "Чешки" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 #, fuzzy msgid "Repair" msgstr "Поправи табелу" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10538,37 +10543,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Провери референцијални интегритет:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Не могу да преместим табелу у саму себе!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Не могу да копирам табелу у саму себе!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Табела %s је померена у %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Табела %s је копирана у %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Има табеле је празно!" @@ -10762,7 +10767,7 @@ msgstr "Опције за извоз базе" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Приказ података табеле" @@ -10788,21 +10793,21 @@ msgstr "Опис" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Структура табеле" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Структура за поглед (view)" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Структура која замењује поглед" @@ -10920,7 +10925,7 @@ msgid "Database:" msgstr "База података" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11036,7 +11041,7 @@ msgid "Data creation options" msgstr "Опције трансформације" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11105,7 +11110,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11157,61 +11162,61 @@ msgstr "се користи" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Ограничења за извезене табеле" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Ограничења за табеле" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ограничења за извезене табеле" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Унутар табела:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Додај AUTO_INCREMENT вредност" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Додај AUTO_INCREMENT вредност" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВИ ЗА ТАБЕЛУ" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИЈЕ ТАБЕЛЕ" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Структура за поглед (view)" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11268,34 +11273,34 @@ msgstr "" msgid "Column names: " msgstr "Имена колона" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Неисправни параметри за CSV увоз: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Неисправан формат CSV улаза на линији %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Неисправан број поља у CSV улазу на линији %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Овај додатак не подржава компресоване увозе!" @@ -11303,7 +11308,7 @@ msgstr "Овај додатак не подржава компресоване msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." @@ -11317,15 +11322,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11335,23 +11340,23 @@ msgstr "Open Document Spreadsheet" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -14568,15 +14573,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14591,17 +14592,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14623,23 +14625,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Број отворених табела." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Број отворених табела." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14668,17 +14670,17 @@ msgstr "Табела %s је одбачена" msgid "Variable name was expected." msgstr "Шаблон имена датотеке" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "На почетку табеле" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14699,19 +14701,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Ред је обрисан" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15423,7 +15425,7 @@ msgstr "Прикажи садржај (схему) табеле" msgid "Invalid table name" msgstr "Неисправан назив табеле" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16554,7 +16556,7 @@ msgid "at beginning of table" msgstr "На почетку табеле" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16599,7 +16601,7 @@ msgstr "Позиција" msgid "Edit partitioning" msgstr "Додај ново поље" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16734,12 +16736,12 @@ msgstr "назив за VIEW" msgid "Column names" msgstr "Имена колона" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Промени име табеле у " -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "База не постоји" diff --git a/po/sr@latin.po b/po/sr@latin.po index f20c3f50c4..82a2dd3654 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian (latin) %s" msgstr[1] "%s pogodaka unutar tabele %s" msgstr[2] "%s pogodaka unutar tabele %s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3825,30 +3830,30 @@ msgstr "Filteri" msgid "Search this table" msgstr "Pretraživanje baze" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Početak" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Prethodna" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Sledeća" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Kraj" @@ -3925,7 +3930,7 @@ msgstr "Može biti približno. Vidite [doc@faq3-11]FAQ 3.11[/doc]" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3965,7 +3970,7 @@ msgid "Query took %01.4f seconds." msgstr "Upit je trajao %01.4f sekundi" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3973,7 +3978,7 @@ msgid "With selected:" msgstr "Označeno:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4061,7 +4066,7 @@ msgstr "Prijem datoteke zaustavljen zbog ekstenzije." msgid "Unknown error in file upload." msgstr "Nepoznata greška pri slanju datoteke." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -4069,11 +4074,11 @@ msgstr "" "Greška u premeštanju primljene datoteke, pogledajte [doc@faq1-11]FAQ 1.11[/" "doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Greška kod premeštanja primljene datoteke." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -4143,8 +4148,8 @@ msgid "Keyname" msgstr "Ime ključa" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4192,15 +4197,15 @@ msgstr "Primarni ključ je obrisan." msgid "Index %s has been dropped." msgstr "Indeks %s je obrisan." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Odbaci" @@ -4213,7 +4218,7 @@ msgstr "" "Indeksi %1$s and %2$s izgleda da su jednaki i jedan od njih verovatno može " "da se ukloni." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4263,8 +4268,8 @@ msgid "Table" msgstr "Tabela" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4272,25 +4277,25 @@ msgstr "Tabela" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Pretraživanje" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Novi zapis" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4298,24 +4303,24 @@ msgid "Privileges" msgstr "Privilegije" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operacije" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4326,16 +4331,16 @@ msgstr "Okidači" msgid "Database seems to be empty!" msgstr "Baza je izgleda prazna!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Upit po primeru" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutine" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4343,18 +4348,18 @@ msgstr "Rutine" msgid "Events" msgstr "Događaji" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Dizajner" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Textarea columns" msgid "Central columns" msgstr "Kolone tekstulanih polja" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4369,34 +4374,34 @@ msgid "User accounts" msgstr "Korisnici" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binarni dnevnik" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikacija" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Promenljive" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Kodne strane" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Skladištenja" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -5016,18 +5021,18 @@ msgstr "Ukupno" msgid "Max: %s%s" msgstr "Maksimalna veličina: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Statički podaci" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5038,38 +5043,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL reče: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Preskoči objašnjavanje SQL-a" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "bez PHP koda" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Izvrši SQL upit" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Napravi PHP kod" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -5077,70 +5082,70 @@ msgid "Edit inline" msgstr "Uredi indeks" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Ned" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. u %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekundi" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Nedostaje parametar:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Pređi na bazu \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ova funkcionalnost %s je pogođena poznatom greškom, vidite %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Kliknite da biste zamenili" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Pretražite vaš kompjuter:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" "Izaberi iz direkorijuma otpremljenih datoteka %s na web serveru:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Direktorijum koji ste izabrali za slanje nije dostupan." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "Nema datoteka za otpremanje" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Isprazni" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Izvrši" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Korisnici" @@ -5280,13 +5285,13 @@ msgstr "Dodaj kolonu" msgid "Attributes" msgstr "Atributi" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to read configuration file!" msgstr "Neuspelo čitanje iz konfiguracione datoteke" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -5294,32 +5299,32 @@ msgstr "" "Ovo obično znači da postoji sintaksna greška, molimo vas pogledajte greške " "prikazane ispod." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Neispravan indeks servera: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Neispravan naziv servera %1$s. Molimo proverite svoju konfiguraciju." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Server" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Neispravan metod autentikacije je zadat u konfiguraciji:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5327,24 +5332,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format 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:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "moguća zloupotreba" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "otkriven numerički ključ" @@ -6130,7 +6135,7 @@ msgstr "Stavi imena kolona u prvi red" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Columns enclosed with:" msgid "Columns enclosed with" @@ -6138,7 +6143,7 @@ msgstr "Kolone uokvirene sa:" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Columns escaped with:" msgid "Columns escaped with" @@ -6160,14 +6165,14 @@ msgstr "Izbaci CRLF znakove u kolonama" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "Kolone se završavaju sa" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated with:" msgid "Lines terminated with" @@ -8433,7 +8438,7 @@ msgid "Table %s has been emptied." msgstr "Tabela %s je ispražnjena." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8574,8 +8579,8 @@ msgid "No data to display" msgstr "Nema podataka" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8626,55 +8631,55 @@ msgstr[2] "" msgid "No column selected." msgstr "Nema odabranih redova" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Greška u upitu" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Promeni" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Ključ" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Tekst ključ" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8686,7 +8691,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nema izmena" @@ -9493,54 +9498,54 @@ msgstr "MySQL je vratio prazan rezultat (nula redova)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Idi na bazu: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Idi na tabelu: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9590,48 +9595,48 @@ msgstr "ili" msgid "web server upload directory:" msgstr "direktorijum za slanje veb servera" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Uredi/Umetni" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Nastavi umetanje sa %s redova" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "i onda" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Prikaži insert upit" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Vrati se na ovu stranu" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Uredi sledeći red" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9641,7 +9646,7 @@ msgstr "" "Koristite TAB taster za pomeranje od polja do polja, ili CTRL+strelice za " "slobodno pomeranje" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9653,11 +9658,11 @@ msgstr "" msgid "Value" msgstr "Vrednost" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Prikaz kao SQL upit" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10538,7 +10543,7 @@ msgstr "Popravi tabelu" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Brisanje podataka ili tabele" @@ -10551,32 +10556,32 @@ msgid "Delete the table (DROP)" msgstr "Brisanje tabele (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Provera" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Popravi" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10604,37 +10609,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Proveri referencijalni integritet:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Ne mogu da premestim tabelu u samu sebe!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Ne mogu da kopiram tabelu u samu sebe!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s je pomerena u %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s je kopirana u %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Ima tabele je prazno!" @@ -10815,7 +10820,7 @@ msgstr "Opcije za izvoz podataka" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Prikaz podataka tabele" @@ -10839,21 +10844,21 @@ msgstr "Definicija" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struktura tabele" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktura za pogled (view)" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Struktura koja zamenjuje pogled" @@ -10959,7 +10964,7 @@ msgid "Database:" msgstr "Baza podataka" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11069,7 +11074,7 @@ msgid "Data creation options" msgstr "Opcije transformacije" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11138,7 +11143,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11190,61 +11195,61 @@ msgstr "se koristi" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Ograničenja za izvezene tabele" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Ograničenja za tabele" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ograničenja za izvezene tabele" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Unutar tabela:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Dodaj AUTO_INCREMENT vrednost" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPOVI ZA TABELU" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE TABELE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Greška kod čitanja podataka:" @@ -11296,33 +11301,33 @@ msgstr "" msgid "Column names: " msgstr "Imena kolona: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Neispravni parametri za CSV uvoz: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Neispravan format CSV ulaza na liniji %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Neispravan broj kolona u CSV ulazu na liniji %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Ovaj dodatak ne podržava kompresovane uvoze!" @@ -11330,7 +11335,7 @@ msgstr "Ovaj dodatak ne podržava kompresovane uvoze!" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." @@ -11344,15 +11349,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11362,23 +11367,23 @@ msgstr "Open Document Spreadsheet" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -14467,15 +14472,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14490,17 +14491,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14522,23 +14524,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Broj otvorenih tabela." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Broj otvorenih tabela." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14569,17 +14571,17 @@ msgstr "Događaj %1$s je kreiran." msgid "Variable name was expected." msgstr "Šablon imena tabele" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Na početku tabele" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14600,19 +14602,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15313,7 +15315,7 @@ msgstr "Prikaži sadržaj (shemu) tabele" msgid "Invalid table name" msgstr "Neispravan naziv tabele" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16383,7 +16385,7 @@ msgid "at beginning of table" msgstr "Na početku tabele" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16428,7 +16430,7 @@ msgstr "Pozicija" msgid "Edit partitioning" msgstr "Uredi indeks" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Uredi pogled" @@ -16559,11 +16561,11 @@ msgstr "naziv za VIEW" msgid "Column names" msgstr "Imena kolona" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Preimenuj pogled u" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Delete the table (DROP)" msgid "Delete the view (DROP)" diff --git a/po/sv.po b/po/sv.po index e30f7d9fb6..9e0e26adb1 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1,9 +1,9 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-11-12 10:41+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Swedish %2$s" msgstr[0] "%1$s träff i %2$s" msgstr[1] "%1$s träffar i %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3446,30 +3450,30 @@ msgstr "Filtrera rader" msgid "Search this table" msgstr "Sök i denna tabell" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Starta" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Föregående" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Nästa" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Slut" @@ -3540,7 +3544,7 @@ msgstr "Kan vara ungefärligt. Se [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Din SQL-fråga utfördes korrekt." @@ -3573,7 +3577,7 @@ msgid "Query took %01.4f seconds." msgstr "Frågan tog %01.4f sekunder." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3581,7 +3585,7 @@ msgid "With selected:" msgstr "Med markerade:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3660,15 +3664,15 @@ msgstr "Filuppladdning stoppades av tillägg." msgid "Unknown error in file upload." msgstr "Okänt fel i filuppladdning." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Fel vid flytt av uppladdad fil, se [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Fel vid flytt av uppladdad fil." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Kan inte läsa uppladdad fil." @@ -3732,8 +3736,8 @@ msgid "Keyname" msgstr "Nyckelnamn" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3781,15 +3785,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Radera" @@ -3802,7 +3806,7 @@ msgstr "" "Index %1$s och %2$s verkar vara identiska och ett av dem kan möjligen tas " "bort." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3852,8 +3856,8 @@ msgid "Table" msgstr "Tabell" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3861,25 +3865,25 @@ msgstr "Tabell" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Sök" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Lägg till" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3887,24 +3891,24 @@ msgid "Privileges" msgstr "Privilegier" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operationer" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Spårning" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3915,16 +3919,16 @@ msgstr "Trigger" msgid "Database seems to be empty!" msgstr "Databasen verkar vara tom!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Fråga" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Rutiner" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3932,16 +3936,16 @@ msgstr "Rutiner" msgid "Events" msgstr "Händelser" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Designer" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Huvud-kolumner" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3954,34 +3958,34 @@ msgid "User accounts" msgstr "Användarkonton" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binär logg" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Replikering" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Variabler" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Teckenuppsättningar" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Motorer" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Insticksprogram" @@ -4608,16 +4612,16 @@ msgstr "Spatial" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Statisk analys:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "%d fel hittades under analys." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4628,102 +4632,102 @@ msgstr "%d fel hittades under analys." msgid "MySQL said: " msgstr "MySQL sa: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Förklara SQL-kod" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Utan SQL-förklaring" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "Analysförklaring Analysförklaringpå %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Utan PHP-kod" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Skicka fråga" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Skapa PHP-kod" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Redigera infogade" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Sön" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y kl %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dagar, %s timmar, %s minuter och %s sekunder" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Saknade parametrar:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Hoppa till databas \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funktionaliteten för %s påverkas av en känd bugg, se %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Klicka för att växla" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Gå igenom din dator:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Välj från webbserverns uppladdningskatalog %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Det finns inga filer att ladda upp!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Töm" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Utför" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Användare" @@ -4854,11 +4858,11 @@ msgstr "Lägg till ny kolumn" msgid "Attributes" msgstr "Attribut" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Kunde inte läsa konfigurationsfilen!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4866,31 +4870,31 @@ msgstr "" "Detta betyder oftast att det finns ett syntaxfel i den, kontrollera " "eventuella fel som visas nedan." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Kunde inte läsa in standardkonfiguration från: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Ogiltigt serverindex: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ogiltigt värdnamn för server %1$s. Var god granska din konfiguration." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Ogiltig metod för verifiering angiven i konfiguration:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4902,24 +4906,24 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin för närvarande används " "standardtidszonen på databasservern." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, 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:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Fel: Token matchningsfel" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Överskrivningsförsök av GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "möjlig exploatering" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "numerisk tangent upptäckt" @@ -5653,13 +5657,13 @@ msgstr "Sätt kolumnnamn på första raden" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Kolumner omges av" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Specialtecken i fält föregås av" @@ -5677,12 +5681,12 @@ msgstr "Ta bort CRLF-tecken i kolumner" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Kolumner avslutas med" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Rader avslutas med" @@ -7801,7 +7805,7 @@ msgid "Table %s has been emptied." msgstr "Tabellen %s har tömts." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Vyn %s har tagits bort." @@ -7935,8 +7939,8 @@ msgid "No data to display" msgstr "Ingen data att visa" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7974,52 +7978,52 @@ msgstr[1] "Kolumnnamnen '%s' är reserverade nyckelord i MySQL." msgid "No column selected." msgstr "Ingen kolumn vald." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Kolumnerna har flyttats framgångsrikt." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Sökningsfel" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Ändra" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Index" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spatial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Fulltext" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Distinkta värden" @@ -8029,7 +8033,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Tillägget %s saknas. Vänligen kontrollera din PHP-konfiguration." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ingen förändring" @@ -8824,56 +8828,56 @@ msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)." msgid "[ROLLBACK occurred.]" msgstr "[ÅTERTOG tidigare version]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Redigera strukturen genom att följa länken \"Struktur\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Gå till databas: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Redigera inställningar för %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Gå till tabell: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struktur för %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Gå till vy: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Endast entabells-UPDATE och DELETE-körningar simuleras." -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8921,48 +8925,48 @@ msgstr "Eller" msgid "web server upload directory:" msgstr "Uppladdningskatalog på webbserver:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Redigera / Infoga" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Fortsätt inmatning med %s rader" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "och sedan" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Lägg till som ny rad" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Infoga som ny rad och ignorera fel" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Visa insert-fråga" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Gå tillbaka till föregående sida" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Lägg till ytterligare en ny rad" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Gå tillbaka till denna sida" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Ändra nästa rad" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -8972,7 +8976,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8984,11 +8988,11 @@ msgstr "" msgid "Value" msgstr "Värde" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Visar SQL-fråga" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Infogade rad-id: %1$d" @@ -9854,7 +9858,7 @@ msgstr "Reparera tabell" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Ta bort data eller tabell" @@ -9867,32 +9871,32 @@ msgid "Delete the table (DROP)" msgstr "Ta bort tabellen (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analysera" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Kontrollera" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimera" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Återskapa" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Reparera" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Avkorta" @@ -9918,35 +9922,35 @@ msgstr "Ta bort partitionering" msgid "Check referential integrity:" msgstr "Kontrollera referensintegritet:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Kan inte flytta tabell till samma en!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Kan inte kopiera tabell till samma en!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format 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:2114 +#: libraries/operations.lib.php:2112 #, php-format 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabellen %s har flyttats till %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabellen %s har kopierats till %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Tabellnamnet är tomt!" @@ -10123,7 +10127,7 @@ msgstr "Dumpningsalternativ för data" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dumpning av Data i tabell" @@ -10147,21 +10151,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tabellstruktur" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktur för vy" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Ersättningsstruktur för vy" @@ -10251,7 +10255,7 @@ msgid "Database:" msgstr "Databas:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Data:" @@ -10351,7 +10355,7 @@ msgid "Data creation options" msgstr "Valmöjligheter vid skapande av data" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Trunkera tabell innan inläggning" @@ -10436,7 +10440,7 @@ msgstr "Det verkar som om databasen använder följande funktioner;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "export med alias fungerar inte alltid tillförlitligt." @@ -10480,52 +10484,52 @@ msgstr "används" msgid "It appears your database uses views;" msgstr "Det verkar som om databasen använder följande vyer;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Restriktioner för dumpade tabeller" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Restriktioner för tabell" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Index för dumpade tabeller" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Index för tabell" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT för dumpade tabeller" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT för tabell" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYPER FÖR TABELL" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONER FÖR TABELL" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Det verkar dom om tabellen använder följande utlösare;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Fel vid läsning av data:" @@ -10580,15 +10584,15 @@ msgstr "" msgid "Column names: " msgstr "Kolumnnamn: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Ogiltig parameter för CSV-import: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10597,18 +10601,18 @@ msgstr "" "Ogiltig kolumn (%s)! Se till att kolumnernas namn är rättstavade, åtskilda " "med kommatecken och inte omges av citattecken." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Ogiltigt format i CSV-indata på rad %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Ogiltigt antal kolumner i CSV-indata på rad %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Detta insticksprogram stöder inte komprimerade importer!" @@ -10616,7 +10620,7 @@ msgstr "Detta insticksprogram stöder inte komprimerade importer!" msgid "MediaWiki Table" msgstr "MediaWiki-tabell" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Ogiltigt format på mediawiki-data på rad:
%s." @@ -10630,9 +10634,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importera valutor (t.ex. $5.00 blir 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10640,7 +10644,7 @@ msgstr "" "Den angivna XML-filen var antingen felaktig eller ofullständig. Korrigera " "problemet och försök igen." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Kunde inte tolka OpenDocument-kalkylblad!" @@ -10648,12 +10652,12 @@ msgstr "Kunde inte tolka OpenDocument-kalkylblad!" msgid "ESRI Shape File" msgstr "ESRI Shape-fil" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Det uppstod ett fel vid importen av ESRI Shape-filen: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10661,12 +10665,12 @@ msgstr "" "Du försökte importera en ogiltig fil eller så innehåller den importerade " "filen ogiltiga data!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Spatial Extension stöder inte ESRI-typen \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Den importerade filen innehåller inte några data!" @@ -13671,15 +13675,11 @@ msgstr "%1$d värden var väntat, men hittade %2$d." msgid "An opening bracket followed by a set of values was expected." msgstr "En inledande hakparentes följt av en uppsättning värden förväntades." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "En inledande hakparentes förväntades." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -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 "A comma or a closing bracket was expected." msgstr "Semikolon eller en avslutande hakparentes förväntades." @@ -13692,17 +13692,18 @@ msgstr "En avslutande hakparentes förväntades." msgid "Unrecognized data type." msgstr "Okänd datatyp." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Ett alias hittades tidigare." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Oväntad punkt." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Ett alias förväntades." @@ -13720,19 +13721,19 @@ msgstr "En förskjutning förväntades." 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 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Det gamla namnet på tabellen förväntades." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Sökordet \"Till\" förväntades." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 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 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Ett namnbyte förväntades." @@ -13758,15 +13759,15 @@ msgstr "Slut citat %1$s förväntades." msgid "Variable name was expected." msgstr "Variabel namn förväntades." -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Oväntad början av satsen." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Okänd uttryckstyp." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Ingen transaktion startades tidigare." @@ -13788,15 +13789,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Okänt nyckelord." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Namnet på entiteten förväntades." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Minst en kolumndefinition förväntades." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Ett nyckelord förväntades." @@ -14485,7 +14486,7 @@ msgstr "Visa SQL-satser för tabellen" msgid "Invalid table name" msgstr "Ogiltigt tabellnamn" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Rad: %1$s, kolumn: %2$s, fel: %3$s" @@ -15442,7 +15443,7 @@ msgid "at beginning of table" msgstr "I början av tabellen" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Partitioner" @@ -15481,7 +15482,7 @@ msgstr "partitionerad" msgid "Edit partitioning" msgstr "Ta bort partitionering" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Redigera vy" @@ -15598,11 +15599,11 @@ msgstr "VIEW-namn" msgid "Column names" msgstr "Kolumnnamn" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Ändra namn till" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Ta bort vyn (DROP)" @@ -16868,6 +16869,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert är satt till 0" +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Semikolon eller en avslutande hakparentes förväntades" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/ta.po b/po/ta.po index f9b9e09f11..f59af08362 100644 --- a/po/ta.po +++ b/po/ta.po @@ -4,9 +4,9 @@ # FIRST AUTHOR , YEAR. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:17+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tamil %2$s" msgstr[0] "%1$s அட்டவணையில் பொருந்தியவை %2$s " msgstr[1] "%1$s அட்டவணையில் பொருந்தியவைகள் %2$s " -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3585,30 +3589,30 @@ msgstr "நிறைவரிசைகளை வடிகட்டு" msgid "Search this table" msgstr "இந்த அட்டவணையில் தேடுக" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "ஆரம்பம்" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "முந்தைய" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "அடுத்து" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "முடிவு" @@ -3681,7 +3685,7 @@ msgstr "அண்ணளவாக இருக்கலாம்.[doc@faq3-11]FAQ #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "உங்கள் SQL வினவல் வெற்றிகரமாக நிறைவேற்றப்பட்டது." @@ -3715,7 +3719,7 @@ msgid "Query took %01.4f seconds." msgstr "வினவல் %01.4f நொடிகள் எடுத்துக்கொண்டது." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3723,7 +3727,7 @@ msgid "With selected:" msgstr "உடன் தெரிவுசெய்யப்பட்டது:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3801,15 +3805,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3873,8 +3877,8 @@ msgid "Keyname" msgstr "முக்கியபெயர்" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3922,15 +3926,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "அழி" @@ -3941,7 +3945,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3991,8 +3995,8 @@ msgid "Table" msgstr "அட்டவணை" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4000,25 +4004,25 @@ msgstr "அட்டவணை" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "தேடு" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "செருகு" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4026,24 +4030,24 @@ msgid "Privileges" msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "செயல்பாடுகள்" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4054,16 +4058,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4071,16 +4075,16 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "மைய நெடுவரிசைகள்" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4095,34 +4099,34 @@ msgid "User accounts" msgstr "பயனர் குழுக்கள்" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "படியெடுத்தல்" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "மாறிகள்" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "எழுத்துக்கணங்கள்" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "செயல்பொறிகள்" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4688,18 +4692,18 @@ msgstr "வெளி சார்பு" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:686 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "நிலையான தரவு" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4710,38 +4714,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL சொன்னது: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP நிரல் இல்லாமல்" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "வினவலை சமர்ப்பி" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP குறிமுறை உருவாக்கு" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit view" msgctxt "Inline edit query" @@ -4749,67 +4753,67 @@ msgid "Edit inline" msgstr "தொகுப்பு பார்வை" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "ஞாயிறு" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y இல் %I:%M %p" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s நாட்கள் %s மணித்தியாலங்கள் %s நிமிடங்கள் மற்றும் %s நொடிகள்" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "மதிப்புருக்கள் காணப்படவில்லை:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "தரவுத்தளம் தாவி செல்லவும் \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s செயல்பாடு எதுவென்று தெரிந்த ஓர் பிழையால் பாதிக்கப்பட்டுள்ளது, %sஐ பார்க்க" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "பிறழ்வதற்கு சொடுக்குக" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "உமது கணினியிலிருந்து:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "வலை சேவையகத்தின் பதிவேற்ற அடைவுகளிலிருந்து %s தேர்ந்தெடுங்கள்:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "பதிவேற்றத்திற்காக நீங்கள் தேர்வு செய்த அடைவை எட்டமுடியவில்லை." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "பதிவேற்றுவதற்கு எந்த கோப்புகளும் இல்லை!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "வெறுமை" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "செயலாக்குக" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "பயனர்கள்" @@ -4937,41 +4941,41 @@ msgstr "புதிய நெடுவரிசையை சேர்க்க" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "வழங்கி %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4979,24 +4983,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5672,13 +5676,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5696,12 +5700,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -7691,7 +7695,7 @@ msgid "Table %s has been emptied." msgstr "%s அட்டவணை வெறுமையாக்கப்பட்டது." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "நோக்குநிலை %s கைவிடப்பட்டது." @@ -7824,8 +7828,8 @@ msgid "No data to display" msgstr "காட்டுவதற்கு தரவு இல்லை" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7871,52 +7875,52 @@ msgstr[1] "" msgid "No column selected." msgstr "எந்த நிரல்வரிசையும் தெரிவுசெய்யப்படவில்லை." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "நெடுவரிசைகள் வெற்றிகரமாக நகர்த்தப்பட்டன." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "வினவல் வழு" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "மாற்று" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "சுட்டுதொகுப்புக்குறி" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "இடம்சார்" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "தனித்த மதிப்புகள்" @@ -7926,7 +7930,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8673,54 +8677,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "தரவுத்தளம்: %s க்கு செல்க" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8766,53 +8770,53 @@ msgstr "அல்லது" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8824,11 +8828,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9661,7 +9665,7 @@ msgstr "அட்டவணையை திருத்து" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "தரவை அல்லது அட்டவணையை அழி" @@ -9674,32 +9678,32 @@ msgid "Delete the table (DROP)" msgstr "அட்டவணையை அழி (அழி)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "ஆரய்தல்" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "சரிபார்" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "உகப்பாக்கு" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "மீள்வாகு" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "திருத்து" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9727,35 +9731,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9931,7 +9935,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9955,21 +9959,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10059,7 +10063,7 @@ msgid "Database:" msgstr "தரவுத்தளம்:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "தரவு:" @@ -10158,7 +10162,7 @@ msgid "Data creation options" msgstr "தரவேற்ற விருப்பங்கள்" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10227,7 +10231,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10273,52 +10277,52 @@ msgstr "பயன்பாட்டில் உள்ளது" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "குவிக்கப்பட்ட அட்டவணைகளுக்கான தொகுப்புக்குறிகள்" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "அட்டவணைகளில்:->அட்டவணைகளுக்கான தொகுப்புக்குறிகள்" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "குவிக்கப்பட்ட அட்டவணைகளுக்கான AUTO_INCREMENT(தன்னிலைகூட்டு)" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "அட்டவணைக்கான AUTO_INCREMENT(தன்னிலைகூட்டு)" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10366,33 +10370,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10400,7 +10404,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -10413,15 +10417,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10429,23 +10433,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "ESRI வடிவகோப்பு" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "ESRI வடிவகோப்பை \"%s\" தரவிறக்குவதில் பிழை நிகழ்ந்துள்ளது." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL இடம்சார் நிரல்நீட்சியானது ESRI வகைக்கு \"%s\" ஆதரவளிக்கவில்லை." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -13232,15 +13236,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -13255,17 +13255,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -13287,19 +13288,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -13329,17 +13330,17 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "Rate of table open" msgid "Unexpected beginning of statement." msgstr "திறந்தநிலை அட்டவணைகளின் விழுக்காடு" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13362,17 +13363,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "இந்நிரைவரிசை அழிக்கப்பட்டது." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14051,7 +14052,7 @@ msgstr "" msgid "Invalid table name" msgstr "தகுதியற்ற அட்டவணைப் பெயர்" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15011,7 +15012,7 @@ msgid "at beginning of table" msgstr "திறந்தநிலை அட்டவணைகளின் விழுக்காடு" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15056,7 +15057,7 @@ msgstr "பிரிவினை %s" msgid "Edit partitioning" msgstr "தொகுப்பு பார்வை" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "தொகுப்பு பார்வை" @@ -15175,11 +15176,11 @@ msgstr "பெயரை பார்" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "தரவு பார்வையை அழி (கைவிடு)" diff --git a/po/te.po b/po/te.po index 9704e38edc..522183d99d 100644 --- a/po/te.po +++ b/po/te.po @@ -4,9 +4,9 @@ # FIRST AUTHOR , YEAR. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Telugu %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3705,8 +3708,8 @@ msgid "Search this table" msgstr "ఈ విలువని ఉపయోగించు" # మొదటి అనువాదము -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" @@ -3714,8 +3717,8 @@ msgid "Begin" msgstr "మొదలు" # మొదటి అనువాదము -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3725,8 +3728,8 @@ msgid "Previous" msgstr "క్రితము" # మొదటి అనువాదము -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -3735,8 +3738,8 @@ msgctxt "Next page" msgid "Next" msgstr "తదుపరి" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3816,7 +3819,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3852,7 +3855,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3860,7 +3863,7 @@ msgid "With selected:" msgstr "" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3942,15 +3945,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4016,8 +4019,8 @@ msgid "Keyname" msgstr "కీలకపదం" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4065,15 +4068,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -4084,7 +4087,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4135,8 +4138,8 @@ msgid "Table" msgstr "పట్టిక" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4145,25 +4148,25 @@ msgid "SQL" msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "శోధించు" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4171,24 +4174,24 @@ msgid "Privileges" msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4199,16 +4202,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4216,18 +4219,18 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Table comments" msgid "Central columns" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4242,34 +4245,34 @@ msgid "User accounts" msgstr "వాడుకరి" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4890,16 +4893,16 @@ msgstr "మొత్తం" msgid "Max: %s%s" msgstr "గరిష్ఠం: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4910,40 +4913,40 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" # మొదటి అనువాదము -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Create a page" msgid "Without PHP code" msgstr "పుటని సృష్టించు" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "క్వెరీ ని సమర్పించు" # మొదటి అనువాదము -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create a page" msgid "Create PHP code" msgstr "పుటని సృష్టించు" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Add a new User" msgctxt "Inline edit query" @@ -4951,68 +4954,68 @@ msgid "Edit inline" msgstr "క్రొత్త వాడుకరిని చేర్చు" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "ఆది" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s రోజులు, %s గంటలు, %s నిమిషాలు మరియు %s క్షణాలు" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" # మొదటి అనువాదము -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "ఖాళీ" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 #, fuzzy #| msgid "User" msgid "Users" @@ -5157,44 +5160,44 @@ msgstr "స్పందనలకు చేర్చు" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Server configuration" msgid "Failed to read configuration file!" msgstr "సేవకి స్వరూపణం" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Security" msgid "Server %d" msgstr "భద్రత" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5202,24 +5205,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5917,13 +5920,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5941,12 +5944,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -8001,7 +8004,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "View %s has been dropped." @@ -8138,8 +8141,8 @@ msgid "No data to display" msgstr "భోగట్టా" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8185,19 +8188,19 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "" @@ -8205,36 +8208,36 @@ msgid "" msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" # మొదటి అనువాదము -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "మార్చుము" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "పూర్తిపాఠ్యం" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -8246,7 +8249,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -9019,56 +9022,56 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Copy database to" msgid "Go to database: %s" msgstr "డేటాబేస్ ను ఇక్కడికి కాపీ చేయి" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "నిర్మాణం మాత్రమే" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9116,56 +9119,56 @@ msgstr "లేదా" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "మరియు తరువాత" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "మునుపటి పుటకు వెళ్ళు" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "ఈ పుటకు తిరిగి వెళ్ళుము" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9177,11 +9180,11 @@ msgstr "" msgid "Value" msgstr "విలువ" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10071,7 +10074,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -10085,32 +10088,32 @@ msgstr "" # మొదటి అనువాదము #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "విశదీకరించు" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10138,37 +10141,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -10343,7 +10346,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10369,21 +10372,21 @@ msgstr "వివరణ" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10485,7 +10488,7 @@ msgstr "డేటాబేస్" # మొదటి అనువాదము #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Database" msgid "Data:" @@ -10600,7 +10603,7 @@ msgid "Data creation options" msgstr "పట్టిక ఎంపికలు" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10669,7 +10672,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10721,56 +10724,56 @@ msgstr "వాడుకలో ఉన్నది" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Use Tables" msgid "Indexes for dumped tables" msgstr "పట్టికల్ని వాడు" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Use Tables" msgid "Indexes for table" msgstr "పట్టికల్ని వాడు" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10822,33 +10825,33 @@ msgstr "" msgid "Column names: " msgstr "వ్యాఖ్యలు" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10856,7 +10859,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "మీడియావికీ పట్టిక" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -10869,15 +10872,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document" msgid "Could not parse OpenDocument Spreadsheet!" @@ -10887,23 +10890,23 @@ msgstr "ఓపెన్ డాక్యుమెంట్" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -13836,15 +13839,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "Table name" @@ -13859,17 +13858,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "Table name" msgid "An alias was expected." @@ -13891,19 +13891,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "Database %s has been dropped." msgid "A rename operation was expected." @@ -13934,18 +13934,18 @@ msgid "Variable name was expected." msgstr "" # మొదటి అనువాదము -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgctxt "short form" #| msgid "Create table" msgid "Unexpected beginning of statement." msgstr "పట్టికను సృష్టించు" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13966,17 +13966,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "Database %s has been dropped." msgid "At least one column definition was expected." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14674,7 +14674,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15748,7 +15748,7 @@ msgid "at beginning of table" msgstr "పట్టికను సృష్టించు" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -15789,7 +15789,7 @@ msgstr "సంబంధాలు" msgid "Edit partitioning" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Add a new User" msgid "Edit view" @@ -15927,11 +15927,11 @@ msgstr "నామధేయమును చూపుము" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Drop the database (DROP)" msgid "Delete the view (DROP)" diff --git a/po/th.po b/po/th.po index e7c2075d3b..fa6d179f72 100644 --- a/po/th.po +++ b/po/th.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:31+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Thai %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3753,14 +3756,14 @@ msgstr "ตัวกรอง" msgid "Search this table" msgstr "ค้นหาในฐานข้อมูล" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "เริ่มต้น" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3769,16 +3772,16 @@ msgctxt "Previous page" msgid "Previous" msgstr "ก่อนหน้า" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "ถัดไป" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "สุดท้าย" @@ -3863,7 +3866,7 @@ msgstr "มีข้อผิดพลาดระหว่างการอั #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3901,7 +3904,7 @@ msgid "Query took %01.4f seconds." msgstr "คำค้นใช้เวลา %01.4f วินาที" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3909,7 +3912,7 @@ msgid "With selected:" msgstr "ทำกับที่เลือก:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3995,17 +3998,17 @@ msgstr "ไม่รองรับไฟล์ประเภทนี้" msgid "Unknown error in file upload." msgstr "ไม่ทราบข้อผิดพลาดของไฟล์ที่จะอัพโหลด" -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "มีข้อผิดพลาดระหว่างการอัพโหลด กรุณาดู [doc@faq1-11]FAQ 1.11[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "ข้อผิดพลาดขณะเคลื่อนย้ายไฟล์อัพโหลด" -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -4075,8 +4078,8 @@ msgid "Keyname" msgstr "ชื่อคีย์" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4124,15 +4127,15 @@ msgstr "โยนคีย์หลักทิ้งไปเรียบร้ msgid "Index %s has been dropped." msgstr "โยนดัชนี %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "โยนทิ้ง" @@ -4143,7 +4146,7 @@ msgid "" "removed." msgstr "ดัชนี %1$s และ %2$s น่าจะเป็นอันเดียวกัน ควรจะลบออกไปอันหนึ่ง" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4193,8 +4196,8 @@ msgid "Table" msgstr "ตาราง" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4202,25 +4205,25 @@ msgstr "ตาราง" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "ค้นหา" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "แทรก" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4228,24 +4231,24 @@ msgid "Privileges" msgstr "สิทธิ" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "กระบวนการ" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "การติดตาม" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4256,16 +4259,16 @@ msgstr "ทริกเกอร์" msgid "Database seems to be empty!" msgstr "ดูเหมือนว่าฐานข้อมูลจะว่างเปล่า!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "คำค้นจากตัวอย่าง" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4273,18 +4276,18 @@ msgstr "" msgid "Events" msgstr "เหตุการณ์" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "ผู้ออกแบบ" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4299,35 +4302,35 @@ msgid "User accounts" msgstr "ผู้ใช้" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 #, fuzzy msgid "Binary log" msgstr "ข้อมูลไบนารี " #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "การจำลองแบบ" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "ตัวแปร" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "ชุดอักขระ" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "เครื่องมือ" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "ปลั๊กอิน" @@ -4947,18 +4950,18 @@ msgstr "รวม" msgid "Max: %s%s" msgstr "ขนาดใหญ่สุด: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "ข้อมูลคงที่" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4969,38 +4972,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL แสดง: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "อธิบาย SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "ไม่ต้องอธิบาย SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "ไม่เอาโค้ด PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "ประมวลผลคำค้น" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "สร้างโค้ด PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5008,72 +5011,72 @@ msgid "Edit inline" msgstr "เพิ่มฟิลด์ใหม่" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "อา." #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y %Rน." -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s วัน, %s ชั่วโมง, %s นาที, %s วินาที" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "กระโดดไปที่ฐานข้อมูล \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "คลิกเพื่อสลับ" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "เรียกดูคอมพิวเตอร์ของคุณ:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "ไม่สามารถใช้งาน ไดเรกทอรีที่ตั้งไว้สำหรับอัพโหลดได้" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "ไม่มีไฟล์ที่จะอัพโหลด" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "ลบข้อมูล" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "ดำเนินการ" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "ผู้ใช้" @@ -5213,44 +5216,44 @@ msgstr "เพิ่มฟิลด์ใหม่" msgid "Attributes" msgstr "แอตทริบิวต์" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to read configuration file!" msgstr "ไม่สามารถอ่านแฟ้มการตั้งค่าได้" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "ลำดับเซิฟเวอร์ไม่ถูกต้อง: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Hostname ไม่ถูกต้องสำหรับเซิฟเวอร์ %1$s กรุณาตรวจสอบการตั้งค่าของคุณ" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "เซิร์ฟเวอร์" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5258,24 +5261,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "เกิดข้อผิดพลาด: โทเค็นไม่ตรงกัน" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "ใช้ประโยชน์ได้" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "ตรวจพบคีย์ตัวเลข" @@ -6004,7 +6007,7 @@ msgstr "ใส่ชื่อฟิลด์ที่แถวแรก" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6012,7 +6015,7 @@ msgstr "คร่อมฟิลด์ด้วย" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6034,14 +6037,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "จบแถวด้วย" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8185,7 +8188,7 @@ msgid "Table %s has been emptied." msgstr "ลบข้อมูลในตาราง %s เรียบร้อยแล้ว" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8326,8 +8329,8 @@ msgid "No data to display" msgstr "ไม่มีข้อมูล" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." @@ -8375,56 +8378,56 @@ msgstr[0] "" msgid "No column selected." msgstr "ยังไม่ได้เลือกแถว" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "ชนิดคำค้น" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, fuzzy, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "เปลี่ยน" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "ดัชนี" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "เชิงพื้นที่" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "ข้อความเต็ม (fulltext)" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Session value" msgid "Distinct values" @@ -8436,7 +8439,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "ส่วนขยาย %s ขาดหายไป กรุณาตรวจสอบการกำหนดค่าของ PHP" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "ไม่มีการเปลี่ยนแปลง" @@ -9224,55 +9227,55 @@ msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลั msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "ไม่มีฐานข้อมูล" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "ไม่มีฐานข้อมูล" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "เฉพาะโครงสร้าง" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9323,56 +9326,56 @@ msgstr "หรือ" msgid "web server upload directory:" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "แทรก" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "แทรกเป็นแถวใหม่" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "ส่งกลับ" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "แทรกระเบียนใหม่" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 #, fuzzy msgid "Go back to this page" msgstr "ส่งกลับ" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9384,11 +9387,11 @@ msgstr "" msgid "Value" msgstr "ค่า" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10271,7 +10274,7 @@ msgstr "ซ่อมแซมตาราง" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10287,32 +10290,32 @@ msgid "Delete the table (DROP)" msgstr "ไม่มีฐานข้อมูล" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "วิเคราะห์" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "ตรวจสอบ" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "ซ่อมแซม" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10341,37 +10344,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "ตรวจสอบความสมบูรณ์ของการอ้างถึง:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "ย้ายตารางไปที่เดิมไม่ได้" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "คัดลอกตารางไปที่เดิมไม่ได้" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "ตาราง %s ถูกย้ายไป %s แล้ว" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "คัดลอกตาราง %s ไปเก็บในชื่อ %s เรียบร้อยแล้ว." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "ชื่อตารางยังว่างอยู่!" @@ -10562,7 +10565,7 @@ msgstr "สถิติฐานข้อมูล" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "dump ตาราง" @@ -10588,14 +10591,14 @@ msgstr "รายละเอียด" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "โครงสร้างตาราง" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10603,7 +10606,7 @@ msgstr "เฉพาะโครงสร้าง" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10717,7 +10720,7 @@ msgid "Database:" msgstr "ฐานข้อมูล" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10830,7 +10833,7 @@ msgid "Data creation options" msgstr "ตัวเลือกการแปลง" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10899,7 +10902,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10945,60 +10948,60 @@ msgstr "ใช้อยู่" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for dumped tables" msgstr "ภายในตาราง:" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "ภายในตาราง:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "เพิ่มค่า AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "เพิ่มค่า AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "เฉพาะโครงสร้าง" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11054,33 +11057,33 @@ msgstr "" msgid "Column names: " msgstr "ชื่อคอลัมน์" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11088,7 +11091,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -11101,15 +11104,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11119,23 +11122,23 @@ msgstr "เอกสารอ้างอิง" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -14127,15 +14130,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14150,17 +14149,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14182,19 +14182,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14223,17 +14223,17 @@ msgstr "โยนตาราง %s ทิ้งไปเรียบร้อ msgid "Variable name was expected." msgstr "รูปแบบของชื่อไฟล์" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "ที่จุดเริ่มต้นของตาราง" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14254,17 +14254,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "ลบเรียบร้อยแล้ว" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14976,7 +14976,7 @@ msgstr "ดูโครงสร้างของตาราง" msgid "Invalid table name" msgstr "ชื่อตารางไม่ถูกต้อง" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16088,7 +16088,7 @@ msgid "at beginning of table" msgstr "ที่จุดเริ่มต้นของตาราง" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16133,7 +16133,7 @@ msgstr "ตำแหน่ง" msgid "Edit partitioning" msgstr "เพิ่มฟิลด์ใหม่" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16269,12 +16269,12 @@ msgstr "" msgid "Column names" msgstr "ชื่อคอลัมน์" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "เปลี่ยนชื่อตารางเป็น" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "ไม่มีฐานข้อมูล" diff --git a/po/tk.po b/po/tk.po index 6edd1460e6..5042fe39bb 100644 --- a/po/tk.po +++ b/po/tk.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2013-05-07 17:12+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Turkmen %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3362,30 +3365,30 @@ msgstr "" msgid "Search this table" msgstr "Şu bahany ulan" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "" @@ -3458,7 +3461,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3491,7 +3494,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3499,7 +3502,7 @@ msgid "With selected:" msgstr "" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3577,15 +3580,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3649,8 +3652,8 @@ msgid "Keyname" msgstr "Açarsözi" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3698,15 +3701,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -3717,7 +3720,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3767,8 +3770,8 @@ msgid "Table" msgstr "" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3776,25 +3779,25 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Gözle" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3802,24 +3805,24 @@ msgid "Privileges" msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3830,16 +3833,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3847,16 +3850,16 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3869,34 +3872,34 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4469,16 +4472,16 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4489,98 +4492,98 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "" @@ -4710,41 +4713,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4752,24 +4755,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5428,13 +5431,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5452,12 +5455,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -7420,7 +7423,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "View %s has been dropped." @@ -7552,8 +7555,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7593,52 +7596,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -7650,7 +7653,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8375,54 +8378,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8468,53 +8471,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8526,11 +8529,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9356,7 +9359,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9369,32 +9372,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9420,35 +9423,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9617,7 +9620,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9641,21 +9644,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9745,7 +9748,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9838,7 +9841,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9907,7 +9910,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9949,52 +9952,52 @@ msgstr "" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10042,33 +10045,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10076,7 +10079,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -10089,15 +10092,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10105,23 +10108,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -12849,15 +12852,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "Database %1$s has been created." @@ -12872,17 +12871,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "Database %1$s has been created." msgid "An alias was expected." @@ -12902,19 +12902,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "Database %1$s has been created." msgid "A rename operation was expected." @@ -12942,15 +12942,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12971,17 +12971,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13639,7 +13639,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14552,7 +14552,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14589,7 +14589,7 @@ msgstr "Düşündiriş" msgid "Edit partitioning" msgstr "Düşündiriş" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14706,11 +14706,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/tr.po b/po/tr.po index a2ffdf9668..041ff12933 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1,13 +1,13 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-02-08 12:25+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" @@ -47,7 +47,7 @@ msgid "Table comments:" msgstr "Tablo yorumları:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -101,7 +101,7 @@ msgstr "Türü" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -163,12 +163,12 @@ msgid "Comments" msgstr "Yorumlar" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Birincil" @@ -201,12 +201,12 @@ msgstr "Hayır" #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -251,8 +251,8 @@ msgid "Tables" msgstr "Tablolar" #: db_export.php:66 libraries/Menu.php:323 libraries/Menu.php:430 -#: libraries/Util.php:3402 libraries/Util.php:3412 libraries/Util.php:3418 -#: libraries/Util.php:3698 libraries/Util.php:4335 libraries/Util.php:4352 +#: libraries/Util.php:3409 libraries/Util.php:3419 libraries/Util.php:3425 +#: libraries/Util.php:3705 libraries/Util.php:4342 libraries/Util.php:4359 #: libraries/central_columns.lib.php:725 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,7 +260,7 @@ msgstr "Tablolar" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -469,7 +469,7 @@ msgstr "Geometri ekle" #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -499,7 +499,7 @@ msgstr "Geometri ekle" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Git" @@ -527,7 +527,7 @@ msgstr "Başarısız oldu" msgid "Incomplete params" msgstr "Tamamlanmamış parametreler" -#: import.php:184 +#: import.php:186 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -536,15 +536,15 @@ msgstr "" "Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınır için çözüm " "yolu olarak %sbelgeden%s yararlanın." -#: import.php:360 import.php:665 +#: import.php:362 import.php:667 msgid "Showing bookmark" msgstr "Gösterilen yer imi" -#: import.php:376 import.php:661 +#: import.php:378 import.php:663 msgid "The bookmark has been deleted." msgstr "Yer imi silindi." -#: import.php:474 +#: import.php:476 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -553,12 +553,12 @@ msgstr "" "Gönderilen dosya açılamaz çünkü sunucu %s dizinine (geçici dosyalar için) " "erişmeden open_basedir etkinleştirildi." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:492 import.php:569 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "Dosya okunamadı!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:503 import.php:518 import.php:543 import.php:558 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -567,7 +567,7 @@ msgstr "" "Desteklenmeyen sıkıştırmayla (%s) dosya yüklemeyi denediniz. Ya bunun için " "destek henüz tamamlanmadı ya da yapılandırmanız tarafından etkisizleştirildi." -#: import.php:574 +#: import.php:576 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -577,21 +577,24 @@ msgstr "" "boyutu PHP yapılandırmanız tarafından izin verilen en fazla boyutu aştı. " "[doc@faq1-16]SSS 1.16[/doc]'ya bakın." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:628 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "İçe aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:670 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "Yer imi %s oluşturuldu." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "İçe aktarma başarılı olarak bitti, %d sorgu çalıştırıldı." +#: import.php:680 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "İçe aktarma başarılı olarak bitti, %d sorgu çalıştırıldı." +msgstr[1] "İçe aktarma başarılı olarak bitti, %d sorgu çalıştırıldı." -#: import.php:705 +#: import.php:711 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -600,7 +603,7 @@ msgstr "" "Betik zaman aşımı geçti, eğer içe aktarmayı bitirmek istiyorsanız, lütfen " "%saynı dosyayı yeniden gönderin%s ve içe aktarma devam edecektir." -#: import.php:715 +#: import.php:721 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -614,7 +617,7 @@ msgid "Could not load the progress of the import." msgstr "İçe aktarma işleminin ilerleme durumu yüklenemedi." #: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: libraries/Util.php:802 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Geri" @@ -710,10 +713,11 @@ msgstr "PHP bilgisini göster" msgid "Version information:" msgstr "Sürüm bilgisi:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:449 libraries/Util.php:516 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Belgeler" @@ -1006,7 +1010,7 @@ msgid "Save & close" msgstr "Kaydet ve kapat" #: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Sıfırla" @@ -1063,7 +1067,7 @@ 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:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:132 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 @@ -1078,7 +1082,7 @@ msgstr "Sorguyu benzeştir" msgid "Matched rows:" msgstr "Eşleşen satırlar:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:137 libraries/Util.php:703 msgid "SQL query:" msgstr "SQL sorgusu:" @@ -1137,12 +1141,12 @@ msgid "Other" msgstr "Diğer" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:160 libraries/Util.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:162 libraries/Util.php:1500 msgid "." msgstr "." @@ -1248,40 +1252,40 @@ msgid "Processes" msgstr "İşlemler" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:202 libraries/Util.php:1442 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:203 libraries/Util.php:1444 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:204 libraries/Util.php:1446 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:205 libraries/Util.php:1448 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:206 libraries/Util.php:1450 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:207 libraries/Util.php:1452 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:208 libraries/Util.php:1454 msgid "EiB" msgstr "EiB" @@ -1299,7 +1303,7 @@ msgstr "Sorular" msgid "Traffic" msgstr "Trafik" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4333 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Ayarlar" @@ -1314,7 +1318,7 @@ msgstr "Lütfen diziye en az bir değişken ekleyin!" #: js/messages.php:219 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1516,7 +1520,7 @@ msgstr "Çözümleniyor…" msgid "Explain output" msgstr "Çıktıyı açıkla" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4329 #: 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:91 libraries/tracking.lib.php:284 @@ -1617,8 +1621,8 @@ msgstr "" "Varsayılan yapılandırmaya sıfırlanıyor…" #: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 -#: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 -#: libraries/Util.php:4357 libraries/config/messages.inc.php:261 +#: libraries/Menu.php:581 libraries/Util.php:4332 libraries/Util.php:4347 +#: libraries/Util.php:4364 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 #: libraries/server_status_monitor.lib.php:313 prefs_manage.php:237 #: setup/frames/menu.inc.php:26 @@ -1772,7 +1776,7 @@ msgstr "Veritabanı kopyalanıyor" msgid "Changing charset" msgstr "Karakter grubu değiştiriliyor" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:377 libraries/Util.php:3291 msgid "Enable foreign key checks" msgstr "Dış anahtar kontrollerini etkinleştir" @@ -1806,9 +1810,9 @@ msgstr "Depolanan işlevin tanımı RETURN ifadesi içermek zorunda!" #: js/messages.php:392 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 -#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 -#: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 -#: libraries/Util.php:4356 libraries/config/messages.inc.php:255 +#: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3712 +#: libraries/Util.php:3713 libraries/Util.php:4331 libraries/Util.php:4346 +#: libraries/Util.php:4363 libraries/config/messages.inc.php:255 #: libraries/display_export.lib.php:168 libraries/rte/rte_list.lib.php:149 #: libraries/server_privileges.lib.php:2513 #: libraries/server_privileges.lib.php:2592 @@ -1859,8 +1863,8 @@ msgstr "Sorgu kutusunu göster" #: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 -#: libraries/Util.php:3703 libraries/Util.php:3704 +#: libraries/Index.php:721 libraries/Util.php:732 libraries/Util.php:1242 +#: libraries/Util.php:3710 libraries/Util.php:3711 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 #: libraries/server_user_groups.lib.php:117 setup/frames/index.inc.php:182 @@ -2046,7 +2050,7 @@ msgid "No dependencies selected!" msgstr "Seçilen bağımlılıklar yok!" #: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2134,7 +2138,7 @@ msgid "Data point content" msgstr "Veri imleci içeriği" #: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Yoksay" @@ -2375,7 +2379,7 @@ msgid "Select database first" msgstr "Önce veritabanını seçin" #: js/messages.php:599 libraries/DisplayResults.php:5029 -#: libraries/Util.php:4217 +#: libraries/Util.php:4224 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" @@ -2651,63 +2655,63 @@ msgid "December" msgstr "Aralık" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:773 libraries/Util.php:1664 msgid "Jan" msgstr "Oca" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:775 libraries/Util.php:1666 msgid "Feb" msgstr "Şub" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:777 libraries/Util.php:1668 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:779 libraries/Util.php:1670 msgid "Apr" msgstr "Nis" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:781 libraries/Util.php:1672 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:783 libraries/Util.php:1674 msgid "Jun" msgstr "Haz" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:785 libraries/Util.php:1676 msgid "Jul" msgstr "Tem" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:787 libraries/Util.php:1678 msgid "Aug" msgstr "Ağu" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:789 libraries/Util.php:1680 msgid "Sep" msgstr "Eyl" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:791 libraries/Util.php:1682 msgid "Oct" msgstr "Eki" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:793 libraries/Util.php:1684 msgid "Nov" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:795 libraries/Util.php:1686 msgid "Dec" msgstr "Ara" @@ -2745,32 +2749,32 @@ msgid "Sun" msgstr "Paz" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:816 libraries/Util.php:1691 msgid "Mon" msgstr "Ptesi" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:818 libraries/Util.php:1693 msgid "Tue" msgstr "Sal" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:820 libraries/Util.php:1695 msgid "Wed" msgstr "Çar" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:822 libraries/Util.php:1697 msgid "Thu" msgstr "Per" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:824 libraries/Util.php:1699 msgid "Fri" msgstr "Cum" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:826 libraries/Util.php:1701 msgid "Sat" msgstr "Ctesi" @@ -2911,9 +2915,9 @@ msgstr "Lütfen geçerli bir tarih veya saat girin" msgid "Please enter a valid HEX input" msgstr "Lütfen geçerli bir ONALTILIK girdi değeri girin" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:679 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Hata" @@ -2965,17 +2969,17 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" "%1$s. satırda beklenmedik karakter. Beklenen sekme, ama bulunan \"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Mevcut yapılandırma dosyası (%s) okunabilir değil." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Yapılandırma dosyasında yanlış izinler, herkesçe yazılabilir olmamalıdır!" -#: libraries/Config.php:1519 +#: libraries/Config.php:1528 msgid "Font size" msgstr "Yazı tipi boyutu" @@ -3045,7 +3049,7 @@ msgstr "Şu anki oturum sırasında" msgid "Explain" msgstr "Açıkla" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:219 libraries/Util.php:1328 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profil çıkart" @@ -3079,8 +3083,8 @@ msgid "History" msgstr "Geçmiş" #: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3173,7 +3177,7 @@ msgstr "İzi gizle" msgid "Count:" msgstr "Sayı:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:339 libraries/Util.php:1298 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 @@ -3229,7 +3233,6 @@ msgid "Switch to dark theme" msgstr "Koyu temaya değiştir" #: libraries/DatabaseInterface.php:1528 -#| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Yapılandırılmış karşılaştırma bağlantısı ayarlama başarısız!" @@ -3413,9 +3416,9 @@ msgid_plural "%1$s matches in %2$s" 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:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3472,30 +3475,30 @@ msgstr "Satırları süz" msgid "Search this table" msgstr "Bu tabloda ara" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Başlangıç" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Önceki" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Sonraki" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Son" @@ -3566,7 +3569,7 @@ msgstr "Yaklaşık olabilir. [doc@faq3-11]SSS 3.11[/doc]'e bakın." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "SQL sorgunuz başarılı olarak çalıştırıldı." @@ -3600,7 +3603,7 @@ msgid "Query took %01.4f seconds." msgstr "Sorgu %01.4f saniye sürdü." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3608,7 +3611,7 @@ msgid "With selected:" msgstr "Seçilileri:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3687,15 +3690,15 @@ msgstr "Dosya gönderme uzantısından dolayı durduruldu." msgid "Unknown error in file upload." msgstr "Dosya göndermede bilinmeyen hata oldu." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Gönderilen dosyayı taşıma hatası, [doc@faq1-11]SSS 1.11[/doc]'e bakın." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Gönderilmiş dosya taşınırken hata oldu." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Gönderilen dosya okunamıyor." @@ -3759,8 +3762,8 @@ msgid "Keyname" msgstr "Anahtar adı" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3808,15 +3811,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Kaldır" @@ -3829,7 +3832,7 @@ msgstr "" "İndeks %1$s ve %2$s eşit görünüyor ve bunlardan birinin silinmesi mümkün " "olabilir." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3879,8 +3882,8 @@ msgid "Table" msgstr "Tablo" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3888,25 +3891,25 @@ msgstr "Tablo" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Ara" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Ekle" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3914,24 +3917,24 @@ msgid "Privileges" msgstr "Yetkiler" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "İşlemler" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "İzleme" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3942,16 +3945,16 @@ msgstr "Tetikleyiciler" msgid "Database seems to be empty!" msgstr "Veritabanı boş olarak görünüyor!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Sorgu" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Yordamlar" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3959,16 +3962,16 @@ msgstr "Yordamlar" msgid "Events" msgstr "Olaylar" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Tasarımcı" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Merkezi sütunlar" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3981,34 +3984,34 @@ msgid "User accounts" msgstr "Kullanıcı hesapları" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "İkili değer günlüğü" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Kopya etme" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Değişkenler" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Karakter Grupları" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Motorlar" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Eklentiler" @@ -4639,16 +4642,16 @@ msgstr "Uzaysal" msgid "Max: %s%s" msgstr "En fazla: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Sabit çözümleme:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "Çözümleme sırasında %d hata bulundu." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4659,98 +4662,98 @@ msgstr "Çözümleme sırasında %d hata bulundu." msgid "MySQL said: " msgstr "MySQL çıktısı: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL'i açıkla" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "SQL Açıklamasını atla" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "%s sitesinde Açıklamayı Çözümle" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "PHP kodsuz" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "Sorguyu gönder" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "PHP kodu oluştur" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Satır içi düzenle" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Paz" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M:%S" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s gün, %s saat, %s dakika ve %s saniye" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Eksik parametreler:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "\"%s\" veritabanına git." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s işlevselliği bilinen bir hata tarafından zarar görmüş, bakınız %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Değiştirmek için tıklayın" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Bilgisayara gözat:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Web sunucusu gönderme dizininden %s seçin:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Göndermek için hiç dosya yok!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Boşalt" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Çalıştır" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Kullanıcılar" @@ -4879,11 +4882,11 @@ msgstr "Yeni sütun ekle" msgid "Attributes" msgstr "Öznitelikler" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Yapılandırma dosyasını okuma başarısız!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4891,33 +4894,33 @@ msgstr "" "Bu genellikle bir sözdizimi hatası var anlamına gelir, lütfen aşağıda " "gösterilen her hatayı kontrol edin." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Varsayılan yapılandırma bundan yüklenemedi: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Geçersiz sunucu indeksi: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s sunucusu için geçersiz anamakine. Lütfen yapılandırma dosyanızı gözden " "geçirin." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Sunucu %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Yapılandırma içinde geçersiz kimlik doğrulaması yöntemi ayarı:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4929,24 +4932,24 @@ msgstr "" "phpMyAdmin, veritabanı sunucusunun şu anki varsayılan saat dilimini " "kullanıyor." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s veya sonrasına yükseltmelisiniz." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Hata: Belirteç uyuşmazlığı" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS üzerine yazma girişimi" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "olası kötüye kullanma" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "sayısal tuş algılandı" @@ -5688,13 +5691,13 @@ msgstr "İlk satır içine sütun adlarını koy" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Sütunlar şununla kapatılsın" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Sütunlar şununla atlatılsın" @@ -5712,12 +5715,12 @@ msgstr "Sütunlardaki CRLF karakterlerini kaldır" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Sütunlar şununla sonlandırılsın" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Satırlar şununla sonlandırılsın" @@ -7869,7 +7872,7 @@ msgid "Table %s has been emptied." msgstr "%s tablosu boşaltıldı." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "%s görünümü kaldırıldı." @@ -8002,8 +8005,8 @@ 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:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8041,52 +8044,52 @@ msgstr[1] "'%s' adları MySQL'e ayrılmış anahtar kelimelerdir." msgid "No column selected." msgstr "Seçilen sütun yok." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Sütunlar başarılı olarak taşındı." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Sorgu hatası" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Değiştir" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Index" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Uzaysal" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Tam metin" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Belirgin değerler" @@ -8096,7 +8099,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s uzantısı eksik. Lütfen PHP yapılandırmanızı kontrol edin." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Değişiklik yok" @@ -8891,56 +8894,56 @@ msgstr "MySQL boş bir sonuç kümesi döndürdü (yani sıfır satır)." msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK meydana geldi.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 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:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Şu veritabanına git: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "%s için ayarları düzenle" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Şu tabloya git: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s yapısı" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Şu görünüme git: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Sadece tek tablo UPDATE ve DELETE sorguları benzetilebilir." -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8988,55 +8991,55 @@ msgstr "Veya" msgid "web server upload directory:" msgstr "web sunucusu gönderme dizini:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Düzenle/Ekle" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "%s satırla eklemeye devam et" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "ve ondan sonra" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Yeni satır olarak ekle" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Yeni satır olarak ekle ve hataları yoksay" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Ekleme sorgusunu göster" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Önceki sayfaya geri dön" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Yeni başka bir satır ekle" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Bu sayfaya geri dön" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Sonraki satırı düzenle" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9048,11 +9051,11 @@ msgstr "" msgid "Value" msgstr "Değer" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "SQL sorgusu gösteriliyor" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Eklenen satır id: %1$d" @@ -9920,7 +9923,7 @@ msgstr "Tabloyu onar" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Tabloyu veya veriyi sil" @@ -9933,32 +9936,32 @@ msgid "Delete the table (DROP)" msgstr "Tabloyu sil (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Çözümle" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Seç" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Uyarla" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Yeniden Oluştur" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Onar" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Kes" @@ -9984,35 +9987,35 @@ msgstr "Bölümlemeyi kaldır" msgid "Check referential integrity:" msgstr "İlgili bütünlük kontrolü:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Tablo aynısına taşınamıyor!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Tablo aynısına kopyalanamıyor!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "%s tablosu %s üzerine taşındı." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "%s tablosu %s üzerine kopyalandı." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Tablo adı boş!" @@ -10191,7 +10194,7 @@ msgstr "Veri dökümü seçenekleri" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Tablo döküm verisi" @@ -10215,21 +10218,21 @@ msgstr "Tanım" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tablo için tablo yapısı" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Görünüm yapısı" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Görünüm yapısı durumu" @@ -10319,7 +10322,7 @@ msgid "Database:" msgstr "Veritabanı:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Veri:" @@ -10420,7 +10423,7 @@ msgid "Data creation options" msgstr "Veri oluşturma seçenekleri" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Eklemeden önce tabloyu kes" @@ -10504,7 +10507,7 @@ msgstr "Görünüşe göre veritabanınız yordamları kullanmakta;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" "kodadını dışa aktarma, her durumda güvenilir bir şekilde çalışmayabilir." @@ -10547,52 +10550,52 @@ msgstr "kullanımda" 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:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Dökümü yapılmış tablolar için kısıtlamalar" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Tablo kısıtlamaları" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Dökümü yapılmış tablolar için indeksler" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Tablo için indeksler" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "Dökümü yapılmış tablolar için AUTO_INCREMENT değeri" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "Tablo için AUTO_INCREMENT değeri" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "TABLO MIME TÜRLERİ" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "TABLO BAĞLANTILARI" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Görünüşe göre tablonuz tetikleyicileri kullanmakta;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "(Asıl görünüm için aşağıya bakın)" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Veri okunması hatası:" @@ -10647,15 +10650,15 @@ msgstr "" msgid "Column names: " msgstr "Sütun adları: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV içe aktarma için geçersiz parametre: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10664,18 +10667,18 @@ msgstr "" "Geçersiz sütun (%s) belirtilmiş! Sütun adlarının doğru olarak hecelenmesini, " "virgüllerle ayrılmasını ve tırnaklarla kapanmamasını sağlayın." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "%d. satırda CSV girdisinin geçersiz biçimi." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "CSV girdisinde %d. satırda geçersiz sütun sayısı." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Bu eklenti sıkıştırılmış içe aktarım dosyalarını desteklemez!" @@ -10683,7 +10686,7 @@ msgstr "Bu eklenti sıkıştırılmış içe aktarım dosyalarını desteklemez! msgid "MediaWiki Table" msgstr "MedyaViki Tablosu" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Medyaviki girdisinin biçimi geçersiz olan satır:
%s." @@ -10696,9 +10699,9 @@ msgstr "Yüzdeleri doğru ondalık olarak içe aktar (örn. %12.00'ı .12'ye) msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Parasalları içe aktar (örn. $5.00'ı 5.00'a)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10706,7 +10709,7 @@ msgstr "" "Belirlenmiş XML dosyası ya kusurlu ya da tamamlanmamış. Lütfen sorunu " "düzeltin ve tekrar deneyin." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "OpenDocument Hesap Tablosu ayrıştırılamadı!" @@ -10714,12 +10717,12 @@ msgstr "OpenDocument Hesap Tablosu ayrıştırılamadı!" msgid "ESRI Shape File" msgstr "ESRI Şekil Dosyası" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "ESRI şekil dosyasının içe aktarılmasında hata var: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10727,12 +10730,12 @@ msgstr "" "Geçersiz bir dosyayı içe aktarmayı deniyorsunuz ya da içe aktarılan dosya " "geçersiz veri içeriyor!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Uzaysal Uzantısı ESRI türü \"%s\" desteklemiyor." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "İçe aktarılan dosya herhangi bir veri içermiyor!" @@ -13741,15 +13744,11 @@ msgstr "%1$d değer beklenmekte, ancak %2$d bulundu." 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 beklenmekte." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." 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 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 beklenmekte." @@ -13762,17 +13761,18 @@ msgstr "Kapalı bir köşeli parantez beklenmekte." msgid "Unrecognized data type." msgstr "Tanınmayan veri türü." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Bir kodadı daha önce bulundu." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Beklenmedik nokta." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Bir kodadı beklenmekte." @@ -13790,19 +13790,19 @@ msgstr "Bir karşılık beklenmekte." msgid "This option conflicts with \"%1$s\"." msgstr "Bu seçenek \"%1$s\" ile çakışıyor." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Tablonun eski adı beklenmekte." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "\"TO\" anahtar kelimesi beklenmekte." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Tablonun yeni adı beklenmekte." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Yeniden adlandırma işlemi beklenmekte." @@ -13828,15 +13828,15 @@ 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:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Beklenmedik ifade başlangıcı." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Tanınmayan ifade türü." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Daha önce hiç işlem başlatılmadı." @@ -13858,15 +13858,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Tanınmayan anahtar kelime." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Varlığın adı beklenmekte." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "En az bir sütun tanımı beklenmekte." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "\"RETURNS\" anahtar kelimesi beklenmekte." @@ -14559,7 +14559,7 @@ msgstr "Tablonun dökümünü (şemasını) göster" msgid "Invalid table name" msgstr "Geçersiz tablo adı" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Satır: %1$s, Sütun: %2$s, Hata: %3$s" @@ -15478,7 +15478,7 @@ msgid "at beginning of table" msgstr "tablonun başı" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Bölümler" @@ -15511,7 +15511,7 @@ msgstr "Bölüm tablosu" msgid "Edit partitioning" msgstr "Bölümlemeyi düzenle" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Düzenleme görünümü" @@ -15626,11 +15626,11 @@ msgstr "GÖRÜNÜM adı" msgid "Column names" msgstr "Sütun adları" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Görünümü yeniden şuna adlandır" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Görünümü sil (DROP)" @@ -16885,6 +16885,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 0'a ayarlı" +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Bir virgül ya da kapalı bir köşeli parantez beklenmekte" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/tt.po b/po/tt.po index 87dc7bcb44..71be456181 100644 --- a/po/tt.po +++ b/po/tt.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tatar %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%s kileşü bar, %s atlı tüşämädä" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3865,16 +3867,16 @@ msgstr "Alan" msgid "Search this table" msgstr "Biremlektä ezläw" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Başlawğa" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3883,8 +3885,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Uzğan" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -3893,8 +3895,8 @@ msgctxt "Next page" msgid "Next" msgstr "Kiläse" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3982,7 +3984,7 @@ msgstr "Törle buluı bar. [doc@faq3-11]YBS 3.11[/doc] qarísı" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4020,7 +4022,7 @@ msgid "Query took %01.4f seconds." msgstr "Soraw eşkärtü %01.4f sek aldı" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -4028,7 +4030,7 @@ msgid "With selected:" msgstr "Saylanğannı:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4114,16 +4116,16 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Törle buluı bar. YBS 3.11 qarísı" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4189,8 +4191,8 @@ msgid "Keyname" msgstr "Tezeş adı" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4239,15 +4241,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:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Beter" @@ -4258,7 +4260,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4308,8 +4310,8 @@ msgid "Table" msgstr "Tüşämä" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4317,25 +4319,25 @@ msgstr "Tüşämä" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Ezläw" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Östäw" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4343,24 +4345,24 @@ msgid "Privileges" msgstr "Xoquqlar" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Eşkärtü" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4371,16 +4373,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Soraw" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4389,18 +4391,18 @@ msgstr "" msgid "Events" msgstr "Cibärelde" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "Add/Delete Field Columns" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4415,12 +4417,12 @@ msgid "User accounts" msgstr "Qullanuçı" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Binar köndälek" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 #, fuzzy @@ -4428,22 +4430,22 @@ msgid "Replication" msgstr "Bäyläneşlär" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Üzgärmälär" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Bilgelämä" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Engine" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -5053,16 +5055,16 @@ msgstr "Tulayım" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5073,38 +5075,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL qaytarışı: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL Centekläw" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "SQL Centeklämäskä" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP Kodısız" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Sorawnı Yulla" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP-Kod yasa" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5112,69 +5114,69 @@ msgid "Edit inline" msgstr "Bastıru küreneşe" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Ykş" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y.%m.%d, %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s kön, %s säğät, %s minut ta %s sekund" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "\"%s\" biremlegenä küç." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, 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:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 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:3676 +#: libraries/Util.php:3683 #, fuzzy msgid "There are no files to upload!" msgstr "Tüşämä tikşerü" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Buşat" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 #, fuzzy #| msgid "User" msgid "Users" @@ -5318,46 +5320,46 @@ msgstr "%s alan östäw" msgid "Attributes" msgstr "Üzençälek" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file!" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Server" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5365,24 +5367,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6092,7 +6094,7 @@ msgstr "Berençe yulda alannarnıñ iseme çığarası" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6100,7 +6102,7 @@ msgstr "Alan yaptıruçı bilge" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6122,14 +6124,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Yul ara bilgese" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8266,7 +8268,7 @@ msgid "Table %s has been emptied." msgstr "\"%s\" atlı tüşämä buşatıldı." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8406,8 +8408,8 @@ msgid "No data to display" msgstr "Biremleklär yuq" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." @@ -8454,56 +8456,56 @@ msgstr[0] "" msgid "No column selected." msgstr "Kertemnär sayladı" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Soraw töre" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Üzgärt" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Tezeş" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Tulımäten" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy msgid "Distinct values" msgstr "Browse foreign values" @@ -8514,7 +8516,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Üzgäreşsez" @@ -9331,56 +9333,56 @@ msgstr "MySQL sorawğa buş cawap, yäğni nül kertem qaytarttı." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Biremleklär yuq" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Biremleklär yuq" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tözeleşen genä" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Çığaru ısulı" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9431,50 +9433,50 @@ msgstr "Yä" msgid "web server upload directory:" msgstr "web-server'neñ yökläw törgäge" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Östäw" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr ", şunnan soñ" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Yaña yazma kert tä" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Aldağı bitkä qaytu" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Tağın ber yazma östäw" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Bu bitkä kire qaytası" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Kiläse yazma üzgärtü" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9484,7 +9486,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9496,12 +9498,12 @@ msgstr "" msgid "Value" msgstr "Bäyä" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 #, fuzzy msgid "Showing SQL query" msgstr "Tulı Sorawlar Kürsät" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10387,7 +10389,7 @@ msgstr "Tüşämä tözätü" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10403,34 +10405,34 @@ msgid "Delete the table (DROP)" msgstr "Biremleklär yuq" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 #, fuzzy msgid "Check" msgstr "Çexçä" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 #, fuzzy msgid "Repair" msgstr "Tüşämä tözätü" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10458,37 +10460,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Bäyläneşlärne döreslekkä tikşerü:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Ber ük at belän tüşämä küçerep bulmí!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "\"%s\" atlı tüşämä \"%s\" kebek ataldı." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Tüşämä adı kertelmi qaldı!" @@ -10680,7 +10682,7 @@ msgstr "Biremlek saqlaw köyläneşe" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Tüşämä eçtälegen çığaru" @@ -10707,14 +10709,14 @@ msgstr "Açıqlama" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tüşämä tözeleşe" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10722,7 +10724,7 @@ msgstr "Tözeleşen genä" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 #, fuzzy msgid "Stand-in structure for view" @@ -10837,7 +10839,7 @@ msgid "Database:" msgstr "Biremlek" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10953,7 +10955,7 @@ msgid "Data creation options" msgstr "Transformation options" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11022,7 +11024,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11074,60 +11076,60 @@ msgstr "totıla" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "Kiläse tüşämä eçendä:" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Kiläse tüşämä eçendä:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Tözeleşen genä" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11184,33 +11186,33 @@ msgstr "" msgid "Column names: " msgstr "Alan iseme" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV yökläweneñ yaraqsız köyläneşe: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11218,7 +11220,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -11231,15 +11233,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11249,23 +11251,23 @@ msgstr "Qullanma" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -14339,15 +14341,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14362,17 +14360,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14394,23 +14393,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Açıq toruçı tüşämä sanı." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Açıq toruçı tüşämä sanı." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14439,17 +14438,17 @@ msgstr "\"%s\" atlı tüşämä beterelde" msgid "Variable name was expected." msgstr "Birem adınıñ tözeleşe" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Tüşämä Başına" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14470,19 +14469,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15197,7 +15196,7 @@ msgstr "Tüşämä eçtälegen (tözeleşen) çığaru" msgid "Invalid table name" msgstr "Tüşämä adı yaraqsız" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16320,7 +16319,7 @@ msgid "at beginning of table" msgstr "Tüşämä Başına" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16365,7 +16364,7 @@ msgstr "Urın" msgid "Edit partitioning" msgstr "Bastıru küreneşe" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16500,12 +16499,12 @@ msgstr "" msgid "Column names" msgstr "Alan iseme" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Tüşämä adın üzgärtü" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Biremleklär yuq" diff --git a/po/ug.po b/po/ug.po index 89c2a2b40a..2eb83c0ba5 100644 --- a/po/ug.po +++ b/po/ug.po @@ -4,9 +4,9 @@ # FIRST AUTHOR , YEAR. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uighur %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%s ئۇيغۇنلۇق تىپىلدى، جەدۋىلى %s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3785,16 +3788,16 @@ msgstr "تۈرلەش" msgid "Search this table" msgstr "سانداندىن ئىزدەش" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "باشلا" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3803,8 +3806,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "ئالدىنقىسى" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -3813,8 +3816,8 @@ msgctxt "Next page" msgid "Next" msgstr "كىيىنكى ئاي" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3897,7 +3900,7 @@ msgstr "ئېنىقسىزلىك بولۇشى مۇمكىن. [doc@faq3-11]FAQ 3.11[ #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3933,7 +3936,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3941,7 +3944,7 @@ msgid "With selected:" msgstr "تاللانغىنى:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4027,17 +4030,17 @@ msgstr "كېڭەيتىلمە ئىسمى بۇنداق ھۆججەتلەرنى يو msgid "Unknown error in file upload." msgstr "ھۆججەت يۈكلەشتە ئېنىقسىز خاتالىق كۆرۈلدى." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "ئېنىقسىزلىك بولۇشى مۇمكىن. [doc@faq3-11]FAQ 3.11[/doc] غا قاراڭ." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4103,8 +4106,8 @@ msgid "Keyname" msgstr "قىممەت ئىسمى" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4152,15 +4155,15 @@ msgstr "ئاساسىي قىممەت ئۆچۈرۈلدى" msgid "Index %s has been dropped." msgstr "ئۆچۈرۈلگەن تېزىسلار %s." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "ئۆچۈرۈش" @@ -4171,7 +4174,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4221,8 +4224,8 @@ msgid "Table" msgstr "جەدۋەل" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4230,25 +4233,25 @@ msgstr "جەدۋەل" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "ئىزدەش" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "قىستۇرۇش" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4256,24 +4259,24 @@ msgid "Privileges" msgstr "ھۇقۇقى" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "ئىشلەملەر" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "ئىز قۇغلاش" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4284,16 +4287,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "سانلىق مەلۇمات ئامبىرى قۇرۇق!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "تەكشۈرۈش" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "دائىملىق" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4301,18 +4304,18 @@ msgstr "دائىملىق" msgid "Events" msgstr "ھادىسە" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "لايىھەلىگۈچ" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete columns" msgid "Central columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4325,34 +4328,34 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "كۆچۈرۈش" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4955,16 +4958,16 @@ msgstr "كۈندىلىك ھۆججەت ئۇمۇمىي سانى" msgid "Max: %s%s" msgstr "ئەڭ چوڭ:%s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4975,38 +4978,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL جاۋابى: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL ئىزاھى" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "SQL ئىزاھىىدىن ئاتلاش" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP كودى يوق" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "تاپشۇرۇش" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP كودى قۇرۇش" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5014,74 +5017,74 @@ msgid "Edit inline" msgstr "بېسىپ كۆرسىتىش" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "يەكشەنبە" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%يىل %ئاي %كۈن %سائەت:%مىنۇت" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s كۈن, %s سائەت, %s مىنىۇ ۋە %s سېكوند" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "دائىملىق" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "ساندان \"%s\" .غا ئۆتۈش." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "بىر چىكىپ تاللاڭ" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "كۆرسىتىلگەن مۇندەرىجىگە يۈكلىيەلمىدى." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 #, fuzzy #| msgid "Tracked tables" msgid "There are no files to upload!" msgstr "ئىزلانغان جەدۋەل" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "تازىلاش" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "" @@ -5219,44 +5222,44 @@ msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Could not load default configuration from: %1$s" msgid "Failed to read configuration file!" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "ئۈنۈمسىز مۇلازىمىتېر :%s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "مۇلازىمىتېر %1$s ئۈنۈمسىز. تەڭشەك ھۆجقىتىنى تەشۈرۈڭ." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "مۇلازىمىتېر" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "تەڭشەك ھۆجىتى ئىچىدىكى دەلىللەش ئۇسۇلى ئۈنۈمسىز:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5264,24 +5267,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s ياكى ئۇنىڭدىنمۇ يۇقىرى نەشىرگە كۆتۈتىڭ." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5973,7 +5976,7 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Columns enclosed by" msgid "Columns enclosed with" @@ -5981,7 +5984,7 @@ msgstr "مەزمۇن ئايرىش بەلگىسى" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Columns escaped by" msgid "Columns escaped with" @@ -6003,14 +6006,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "خەت ئايرىش بەلگىسى" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8076,7 +8079,7 @@ msgid "Table %s has been emptied." msgstr "%s جەدۋەل تازىلاندى" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8213,8 +8216,8 @@ msgid "No data to display" msgstr "سۆزلەمنى كۆرسەتمەسلىك" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8259,57 +8262,57 @@ msgstr[0] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "ساندان %s ئۆچۈرۈلدى." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query" msgid "Query error" msgstr "تەكشۈرۈش" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "ئۆزگەرتتىش" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -8321,7 +8324,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s كېڭەيتىلمە كەمكەن، PHP تەڭشەك ھۆججىتىنى تەكشۈرۈپ چىقىڭ." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -9124,56 +9127,56 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Go to database: %s" msgstr "ساندان %s غا جەدىۋەل قۇرۇش" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "تۈزىلىشىنىلا" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9221,55 +9224,55 @@ msgstr "ياكى" msgid "web server upload directory:" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "قىستۇرۇش" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "كېيىن" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9281,11 +9284,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10159,7 +10162,7 @@ msgstr "جەدۋەلنى ئوڭشاش" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" @@ -10176,32 +10179,32 @@ msgid "Delete the table (DROP)" msgstr "كۆچۈرۈلگەن ساندان" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10227,37 +10230,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -10444,7 +10447,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "ئايلاندۇرۇپ ساقلاش جەدىۋېلىدىكى سانلىق مەلۇمات" @@ -10470,21 +10473,21 @@ msgstr "ئىزاھات" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "جەدېۋەلنىڭ تۈزىلىشى" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10596,7 +10599,7 @@ msgid "Database:" msgstr "ساندان" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10711,7 +10714,7 @@ msgid "Data creation options" msgstr "ئامال" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10780,7 +10783,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10832,60 +10835,60 @@ msgstr "ئىشلىتىلمەكتە" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "تۆۋەندىكى جەدۋەل(لەر): " -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "تۆۋەندىكى جەدۋەل(لەر): " -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT قوشۇش" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT قوشۇش" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10939,33 +10942,33 @@ msgstr "" msgid "Column names: " msgstr "خەت ئايرىش بەلگىسى" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10973,7 +10976,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "MediaWikiكۈرۈنىشى" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -10986,15 +10989,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11004,23 +11007,23 @@ msgstr "OpenOffice جەدىۋېلى" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -13951,15 +13954,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "With selected:" @@ -13974,17 +13973,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "With selected:" msgid "An alias was expected." @@ -14006,19 +14006,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The bookmark has been deleted." msgid "A rename operation was expected." @@ -14047,17 +14047,17 @@ msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "Show dimension of tables" msgid "Unexpected beginning of statement." msgstr "جەدېۋەلنىڭ چوڭ-كىچىكلىكىنى كۆرسىتىش" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14078,17 +14078,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The bookmark has been deleted." msgid "At least one column definition was expected." msgstr "خەتكۈچ ئۆچۈرۈلدى." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14785,7 +14785,7 @@ msgstr "" msgid "Invalid table name" msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15861,7 +15861,7 @@ msgid "at beginning of table" msgstr "جەدېۋەلنىڭ چوڭ-كىچىكلىكىنى كۆرسىتىش" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -15906,7 +15906,7 @@ msgstr "مۇناسىۋىتى" msgid "Edit partitioning" msgstr "بېسىپ كۆرسىتىش" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16035,11 +16035,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Drop the database (DROP)" msgid "Delete the view (DROP)" diff --git a/po/uk.po b/po/uk.po index ae3522f1e1..4e67b31568 100644 --- a/po/uk.po +++ b/po/uk.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:19+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Ukrainian %2$s" msgstr[1] "%1$s співпадіння у %2$s" msgstr[2] "%1$s співпадінь у %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3603,30 +3608,30 @@ msgstr "Фільтрувати рядки" msgid "Search this table" msgstr "Шукати в таблиці" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Почати" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Попередній" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Вперед" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Кінець" @@ -3699,7 +3704,7 @@ msgstr "Може бути приблизним. Дивіться [doc@faq3-11]FA #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Ваш SQL запит було виконано вдало." @@ -3734,7 +3739,7 @@ msgid "Query took %01.4f seconds." msgstr "Запит виконувався %01.4f с." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3742,7 +3747,7 @@ msgid "With selected:" msgstr "З відміченими:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3823,15 +3828,15 @@ msgstr "Завантаження файла зупинено розширенн msgid "Unknown error in file upload." msgstr "Невідома помилка під час завантаження файла." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Помилка під час переміщення файла, дивись [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Помилка під час переміщення завантаженого файла." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -3897,8 +3902,8 @@ msgid "Keyname" msgstr "Назва ключа" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3946,15 +3951,15 @@ msgstr "Первинний ключ було знищено." msgid "Index %s has been dropped." msgstr "Індекс %s було знищено." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Знищити" @@ -3966,7 +3971,7 @@ msgid "" msgstr "" "Схоже, що індекси %1$s та %2$s ідентичні, тому один із них можна видалити." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4016,8 +4021,8 @@ msgid "Table" msgstr "Таблиця" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4025,25 +4030,25 @@ msgstr "Таблиця" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Шукати" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Вставити" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4051,24 +4056,24 @@ msgid "Privileges" msgstr "Привілеї" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Операції" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Відстеження" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4079,16 +4084,16 @@ msgstr "Тригери" msgid "Database seems to be empty!" msgstr "Порожня база даних!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Запит" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Процедури" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4096,16 +4101,16 @@ msgstr "Процедури" msgid "Events" msgstr "Події" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Дизайнер" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Центральні стовпчики" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4120,34 +4125,34 @@ msgid "User accounts" msgstr "Групи користувачів" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Бінарний журнал" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Реплікація" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Змінні" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Кодування" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Двигуни" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Плагіни" @@ -4759,18 +4764,18 @@ msgstr "Просторове" msgid "Max: %s%s" msgstr "Максимум: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Статичні дані" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4781,38 +4786,38 @@ msgstr "" msgid "MySQL said: " msgstr "Відповідь MySQL: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Тлумачити SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Не тлумачити SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "без PHP коду" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Виконати запит" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Створити PHP код" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -4820,67 +4825,67 @@ msgid "Edit inline" msgstr "Редагувати індекс" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Нд" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y р., %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s днів, %s годин, %s хвилин і %s секунд" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Пропущено параметр:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Перейти до бази даних \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "На функціональність %s впливає відома помилка, див. %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Клікніть, щоб змінити" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Переглянути Ваш комп'ютер:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Виберіть з каталога веб-сервера для відвантаження файлів %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Встановлений Вами каталог для завантаження файлів недоступний." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Немає файлів для відвантаження!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Очистити" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Виконати" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Користувачі" @@ -5008,11 +5013,11 @@ msgstr "Додати стовпчик" msgid "Attributes" msgstr "Атрибути" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Не вдалося прочитати файл конфігурації!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -5020,32 +5025,32 @@ msgstr "" "Як правило, це означає, що в ньому є синтаксичні помилки, будь ласка, " "перевірте будь-які помилки що показано нижче." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Неможливо завантажити стандартну функціональність із: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Невірний індекс сервера: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Невірна назва хоста для сервера %1$s. Будь ласка, перевірте конфігурацію." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Сервер %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Невірний метод аутентифікації встановленний в налаштуваннях:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5053,24 +5058,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Вам необхідно оновити до %s %s або пізнішої." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Помилка: невідповідний токен" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "спроба перезапису GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "можливе використання" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "виявлено цифровий ключ" @@ -5839,13 +5844,13 @@ msgstr "Помістити імена колонок в перший рядок" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Стовпчики взято в" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Символ екранування" @@ -5863,12 +5868,12 @@ msgstr "Вилучити CRLF символи у стовбцях" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Колонки завершуються з" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Рядки закінчуються з" @@ -8067,7 +8072,7 @@ msgid "Table %s has been emptied." msgstr "Таблицю %s було очищено." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Перегляд %s було знищено." @@ -8203,8 +8208,8 @@ msgid "No data to display" msgstr "Немає даних для відображення" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8253,53 +8258,53 @@ msgstr[2] "" msgid "No column selected." msgstr "Жодного стовпчика не вибрано." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Стовпці успішно переміщено." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Помилка запиту" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Змінити" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Індекс" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Просторовий" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "ПовнТекст" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Окремі значення" @@ -8310,7 +8315,7 @@ msgstr "" "Розширення %s не знайдено. Будь ласка, перевірте ваші налаштування PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Змін немає" @@ -9131,56 +9136,56 @@ msgstr "MySQL повернула пустий результат (тобто н msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Наступні структури були створені, або змінені. Ви можете:" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "Переглянути деталі структури клацанням по її імені." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Змінити будь-яке налаштування клацанням по відповідному посиланню \"Параметри" "\"." -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Відредагувати структуру за посиланням \"Структура\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Перейти до бази даних: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Редагувати налаштування для %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Перейти до таблиці: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Структура %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Перейти до подання: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9226,48 +9231,48 @@ msgstr "Або" msgid "web server upload directory:" msgstr "каталог веб-сервера для відвантаження файлів:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Редагувати/Вставити" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Продовжити вставку з %s рядка" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "і потім" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Вставити як новий рядок" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Вставити як новий рядок і ігнорувати помилки" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Відображати запит вставлення" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Повернутись" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Вставити новий запис" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Повернутися на цю сторінку" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Редагувати наступний рядок" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9277,7 +9282,7 @@ msgstr "" "Для переходу від значення до значення використовуйте TAB, або CTRL+стрілки - " "для переміщення куди завгодно" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9289,11 +9294,11 @@ msgstr "" msgid "Value" msgstr "Значення" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Показ SQL-запиту" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Ідентифікатор доданого рядка: %1$d" @@ -10147,7 +10152,7 @@ msgstr "Ремонтувати таблицю" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Видалити дані або таблицю" @@ -10160,32 +10165,32 @@ msgid "Delete the table (DROP)" msgstr "Видалити таблицю (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Аналізувати" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Перевірити" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Оптимізувати" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Перебудувати" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Відремонтувати" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10213,37 +10218,37 @@ msgstr "Видалити розділи" msgid "Check referential integrity:" msgstr "Перевір цілісність даних на рівні посилань:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Не можу перенести таблицю саму в себе!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Не можу скопіювати таблицю саму в себе!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Таблицю %s було перенесено в %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Таблицю %s було скопійовано в %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Порожня назва таблиці!" @@ -10421,7 +10426,7 @@ msgstr "Параметри дампу даних" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Дамп даних таблиці" @@ -10445,21 +10450,21 @@ msgstr "Визначення" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Структура таблиці" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Структура для представлення" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Дублююча структура для представлення" @@ -10549,7 +10554,7 @@ msgid "Database:" msgstr "База даних:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Дані:" @@ -10657,7 +10662,7 @@ msgid "Data creation options" msgstr "Параметри створення даних" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10746,7 +10751,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10792,52 +10797,52 @@ msgstr "використовується" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Обмеження зовнішнього ключа збережених таблиць" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Обмеження зовнішнього ключа таблиці" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Індекси збережених таблиць" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Індекси таблиці" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT для збережених таблиць" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT для таблиці" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME-ТИПИ ТАБЛИЦІ" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "ЗВ'ЯЗКИ ТАБЛИЦІ" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "Структура для подання %s, експортованого як таблиця" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Помилка читання даних:" @@ -10892,15 +10897,15 @@ msgstr "" msgid "Column names: " msgstr "Назви стовпців: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Неправильний параметр імпорту CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10909,18 +10914,18 @@ msgstr "" "Зазначено помилкове ім'я стовпця (%s)! Переконайтеся, що назви стовпців " "вказані вірно, розділені комами, і не вкладені в лапки." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Неправильний формат вхідних CSV-даних в рядку %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Невідповідність кількості стовпців в CSV даних на рядку %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Цей модуль не підтримує імпорт стиснених даних!" @@ -10928,7 +10933,7 @@ msgstr "Цей модуль не підтримує імпорт стиснен msgid "MediaWiki Table" msgstr "Таблиця MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -10942,9 +10947,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Імпортувати грошові одиниці (напр. $ 5.00 в 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10952,7 +10957,7 @@ msgstr "" "Обраний XML файл некоректний, або неповний. Перевірте можливі помилки і " "спробуйте ще раз." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Неможливо прочитати електронну таблицю OpenDocument!" @@ -10960,12 +10965,12 @@ msgstr "Неможливо прочитати електронну таблиц msgid "ESRI Shape File" msgstr "Файл ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "При імпорті файлу ESRI сталася помилка: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10973,12 +10978,12 @@ msgstr "" "Ви спробували імпортувати некоректний файл або цей файл містить некоректні " "дані!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "Просторове розширення MySQL не підтримує тип ESRI \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Імпортований файл не містить даних!" @@ -14094,15 +14099,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14117,17 +14118,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14149,23 +14151,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Кількість відкритих таблиць." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Кількість відкритих таблиць." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14198,17 +14200,17 @@ msgstr "Подія %1$s була створена." msgid "Variable name was expected." msgstr "Шаблон імені таблиці" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "На початку таблиці" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14231,19 +14233,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Рядок видалено." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14942,7 +14944,7 @@ msgstr "Переглянути дамп (схему) таблиці" msgid "Invalid table name" msgstr "Неправильна назва таблиці" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15968,7 +15970,7 @@ msgid "at beginning of table" msgstr "На початку таблиці" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16017,7 +16019,7 @@ msgstr "розділений" msgid "Edit partitioning" msgstr "Видалити розділи" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Редагувати подання" @@ -16144,11 +16146,11 @@ msgstr "Назва подання" msgid "Column names" msgstr "Назви колонок" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Перейменувати подання на" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Видалити подання (DROP)" diff --git a/po/ur.po b/po/ur.po index 760da1cd00..a94f05091e 100644 --- a/po/ur.po +++ b/po/ur.po @@ -4,9 +4,9 @@ # FIRST AUTHOR , YEAR. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Urdu %2$s" msgstr[0] "%sجدول کے ساتھ مشابہ%s" msgstr[1] "%sجدول کے ساتھ مشابہات%s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3801,16 +3805,16 @@ msgstr "ابتدائیہ" msgid "Search this table" msgstr "کوائفیہ میں تلاش کریں" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "شروع" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -3819,8 +3823,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "پچھلا" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -3829,8 +3833,8 @@ msgctxt "Next page" msgid "Next" msgstr "اگلا" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -3910,7 +3914,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3948,7 +3952,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3956,7 +3960,7 @@ msgid "With selected:" msgstr "مع منتخب:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4041,18 +4045,18 @@ msgstr "مسل قسم کی وجہ سے اپ لوڈ روکا گیا۔" msgid "Unknown error in file upload." msgstr "اپ لوڈ مسل میں نامعلوم نقص ہے۔" -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "اپ لوڈ مسل کو بڑھاتے ہوئے نقص ہے, دیکھیں [doc@faq1-11]عمومی سوالات 1.11[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4118,8 +4122,8 @@ msgid "Keyname" msgstr "کلید نام" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4167,15 +4171,15 @@ msgstr "بنیادی کلید چھوڑ دیا گیا ہے" msgid "Index %s has been dropped." msgstr "اشاریہ %s چھوڑ دیا گیا ہے۔" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "گرائیں" @@ -4188,7 +4192,7 @@ msgstr "" "اشاریے %1$s اور %2$s مساوی نظر آتے ہیں اور ان میں ایک ممکنہ طور پر ہٹا دیا " "جائے گا۔" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4238,8 +4242,8 @@ msgid "Table" msgstr "جدول" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4247,25 +4251,25 @@ msgstr "جدول" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "تلاش" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "داخل کریں" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4273,24 +4277,24 @@ msgid "Privileges" msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "عملیات" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4301,16 +4305,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4318,18 +4322,18 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Central columns" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4342,34 +4346,34 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "چربہ کاری" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4981,16 +4985,16 @@ msgstr "میزان" msgid "Max: %s%s" msgstr "زیادہ سے زیادہ: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5001,38 +5005,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL نے کہا: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL کی تفصیل بتائیں" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "SQL وضاحت کو چھوڑیں" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP کوڈ کے بغیر" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "طلب بھیجیں" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP کوڈ بنائیں" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5040,71 +5044,71 @@ msgid "Edit inline" msgstr "تدوین موڈ" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "اتوار" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y پر %I:%M %p" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s دن, %s گھنٹے, %s منٹ اور%s سیکنڈ" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "کوائفیہ میں جائیں \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s ایک نامعلوم نقص سے کام متاثر ہوا, دیکھیں %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "انتخاب کے لیے کلک کریں" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "اپنے کمپیوٹر کو براؤز کریں:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ویب سرور اپ لوڈ پوشہ سے منتخب کریں %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "اپ لوڈ کام کے لیے سیٹ کیا گیا پوشہ قابل رسائی نہیں ہے۔" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 #, fuzzy #| msgid "There are no files to upload" msgid "There are no files to upload!" msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "خالی" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "" @@ -5244,44 +5248,44 @@ msgstr "فیلڈ کالمز شامل یا ختم کریں" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Configuration file" msgid "Failed to read configuration file!" msgstr "تشکیلی مسل" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "طے شدہ تشکیلات کو لوڈ نہیں کرسکا: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "غلط سرور اشاریہ: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "سرور کے لیے ہوسٹ نام غلط ہے %1$s. اپنے تشکیل کا جائزہ لیں۔" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "سرور" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "غلط توثیقی طریقہ تشکیل میں دیا گیا ہے:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5289,24 +5293,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "آپ اس سے درجہ فزوں کریں %s %s یا بعد۔" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6073,7 +6077,7 @@ msgstr "کالم نام پہلے صف میں ڈالیں" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Columns enclosed by" msgid "Columns enclosed with" @@ -6081,7 +6085,7 @@ msgstr "کالم بند کیا گئے ہیں" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Columns escaped by" msgid "Columns escaped with" @@ -6103,14 +6107,14 @@ msgstr "کالم کے اندر CRLF حروف ہٹائیں" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "کالم کا خاتمہ" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -8521,7 +8525,7 @@ msgid "Table %s has been emptied." msgstr "جدول %s خالی ہوچکا ہے" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8658,8 +8662,8 @@ msgid "No data to display" msgstr "کوائف" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8705,57 +8709,57 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "کوائفیہ %s چھوڑ دیا گیا ہے۔" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Gather errors" msgid "Query error" msgstr "نقائص اکھٹی کریں" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -8767,7 +8771,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -9550,58 +9554,58 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Jump to database" msgid "Go to database: %s" msgstr "کوائفیہ جائیں" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "کوائف نہیں ملا برائے %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "Count tables" msgid "Go to table: %s" msgstr "حداول کی گنتی کریں" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "صرف ساخت" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9649,55 +9653,55 @@ msgstr "یا" msgid "web server upload directory:" msgstr "ویب سرور اپ لوڈ پوشہ سے منتخب کریں %s:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "داخل کریں" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "اور پھر" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9709,11 +9713,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10594,7 +10598,7 @@ msgstr "جدول مرمت کریں" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" @@ -10611,32 +10615,32 @@ msgid "Delete the table (DROP)" msgstr "ڈیٹا بیس کاپی کریں" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10664,37 +10668,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -10872,7 +10876,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10898,21 +10902,21 @@ msgstr "وضاحت" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -11020,7 +11024,7 @@ msgid "Database:" msgstr "کوائفیہ" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11133,7 +11137,7 @@ msgid "Data creation options" msgstr "عمل" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11202,7 +11206,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11250,60 +11254,60 @@ msgstr "استعمال میں ہے" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "جدول میں:" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "جدول میں:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "صفر قدروں کے لیے AUTO_INCREMENT استعمال مت کریں" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT قدر اضافہ کریں" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -11357,33 +11361,33 @@ msgstr "" msgid "Column names: " msgstr "آراء-رائے" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11391,7 +11395,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -11404,15 +11408,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11422,23 +11426,23 @@ msgstr "اوپن دستاویز" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -14393,15 +14397,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "Removing Selected Users" @@ -14416,17 +14416,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "Removing Selected Users" msgid "An alias was expected." @@ -14448,19 +14449,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The bookmark has been deleted." msgid "A rename operation was expected." @@ -14491,17 +14492,17 @@ msgstr "کوائفیہ $1%s بن گئی ہے۔" msgid "Variable name was expected." msgstr "جدول نام سانچا" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "Show dimension of tables" msgid "Unexpected beginning of statement." msgstr "ٹیبلز کی جسامت دیکھیں" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14522,17 +14523,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The bookmark has been deleted." msgid "At least one column definition was expected." msgstr "نشانی حذف ہو چکی ہے۔" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15230,7 +15231,7 @@ msgstr "" msgid "Invalid table name" msgstr "غلط جدول نام" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16327,7 +16328,7 @@ msgid "at beginning of table" msgstr "ٹیبلز کی جسامت دیکھیں" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -16372,7 +16373,7 @@ msgstr "تعلقات" msgid "Edit partitioning" msgstr "تدوین موڈ" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16504,11 +16505,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Copy database to" msgid "Delete the view (DROP)" diff --git a/po/uz.po b/po/uz.po index 552a09efd2..2d011ab9f3 100644 --- a/po/uz.po +++ b/po/uz.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-10-15 11:39+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek %2$s" msgstr[0] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" msgstr[1] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3982,16 +3986,16 @@ msgstr "Фильтр" msgid "Search this table" msgstr "Маълумотлар базасида қидириш" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Боши" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -4000,8 +4004,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Орқага" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -4010,8 +4014,8 @@ msgctxt "Next page" msgid "Next" msgstr "Кейинги" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -4098,7 +4102,7 @@ msgstr "Тахминий бўлиши мумкин. [doc@faq3-11]\"FAQ 3.11\"[/d #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4138,7 +4142,7 @@ msgid "Query took %01.4f seconds." msgstr "Сўров %01.4f секунд вақт олди" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -4146,7 +4150,7 @@ msgid "With selected:" msgstr "Белгиланганларни:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4236,7 +4240,7 @@ msgstr "Файлнинг юкланиши унинг кенгайтмаси са msgid "Unknown error in file upload." msgstr "Файл юкланаётган вақтда номаълум хатолик юз берди." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -4244,11 +4248,11 @@ msgstr "" "Юкланган файл жойини ўзгартиришда хатолик, [doc@faq1-11]\"FAQ 1.11\"[/doc]га " "қаранг" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4316,8 +4320,8 @@ msgid "Keyname" msgstr "Индекс номи" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4365,15 +4369,15 @@ msgstr "Бирламчи калит ўчирилди." msgid "Index %s has been dropped." msgstr "\"%s\" индекси ўчирилди." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Ўчириш" @@ -4384,7 +4388,7 @@ msgid "" "removed." msgstr "%1$s ва %2$s индекслари бир хил, улардан бирини ўчириш мумкин." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4434,8 +4438,8 @@ msgid "Table" msgstr "Жадвал" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4443,25 +4447,25 @@ msgstr "Жадвал" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Қидириш" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Қўйиш" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4469,24 +4473,24 @@ msgid "Privileges" msgstr "Привилегиялар" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Операциялар" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Кузатиш" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4497,16 +4501,16 @@ msgstr "Триггерлар" msgid "Database seems to be empty!" msgstr "Маълумотлар базаси бўш!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Сўров" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Муолажалар" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4514,18 +4518,18 @@ msgstr "Муолажалар" msgid "Events" msgstr "Ҳодисалар" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Дизайнер" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "CHAR textarea columns" msgid "Central columns" msgstr "CHAR майдонидаги устунлар сони" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4540,34 +4544,34 @@ msgid "User accounts" msgstr "Фойдаланувчи" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Иккилик журнал" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Репликация (захира нусха кўчириш)" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Ўзгарувчилар" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Кодировкалар" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Жадвал турлари" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -5186,16 +5190,16 @@ msgstr "Журнал файллари сони" msgid "Max: %s%s" msgstr "Максимал ҳажми: \"%s\"%s\"" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5206,38 +5210,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL жавоби: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Сўров таҳлили" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Таҳлил керак эмас" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP-код олиб ташлаш" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "сўровни бажариш" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP-код" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5245,76 +5249,76 @@ msgid "Edit inline" msgstr "Таҳрирлаш усули" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Якш" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y й., %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "\"%s\" кун, \"%s\" соат, \"%s\" минут ва \"%s\" секунд" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Муолажалар" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "\"%s\" маълумотлар базасига ўтиш." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "\"%s\" параметрининг иши маълум хатоликка олиб келиши мумкин, батафсил " "маълумот учун қаранг \"%s\"" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Танлаш учун сичқонча тугмасини босинг" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Юклаш каталогидан" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Кўрсатилган каталокка юклаб бўлмади." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 #, fuzzy #| msgid "There are no configured servers" msgid "There are no files to upload!" msgstr "Биронта ҳам конфигурацияланган сервер мавжуд эмас" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Тозалаш" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 #, fuzzy #| msgid "User" msgid "Users" @@ -5458,49 +5462,49 @@ msgstr "Устун(лар) қўшиш" msgid "Attributes" msgstr "Атрибутлар" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Failed to read configuration file!" msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "\"%1$s\" файлидан андоза конфигурацияни юклаб бўлмади." -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Сервер рақами нотўғри: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s сервери учун нотўғри хост номи кўрсатилган. phpMyAdmin конфигурацион " "файлида белгиланган созлашларни тўғирланг." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Сервер" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" "phpMyAdmin конфигурацион файлида нотўғри аутентификация усули белгиланган:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5508,24 +5512,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "\"%s\" ни \"%s\" версияга ёки каттароқ версияга янгилаш зарур." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6418,7 +6422,7 @@ msgstr "Майдон номларини биринчи қаторга жойла #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6426,7 +6430,7 @@ msgstr "Майдон қийматлари қуйидаги белги ичига #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6450,14 +6454,14 @@ msgstr "Майдонлар ичидаги сатрдан-сатрга кўчир #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Қаторлар бўлувчиси" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -9010,7 +9014,7 @@ msgid "Table %s has been emptied." msgstr "\"%s\" жадвали тозаланди." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -9153,8 +9157,8 @@ msgid "No data to display" msgstr "Маълумотлар базаси мавжуд эмас" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -9204,57 +9208,57 @@ msgstr[1] "" msgid "No column selected." msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Ignore errors" msgid "Query error" msgstr "Хатоларга эътибор бермаслик" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Ўзгартириш" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Индекс" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Матн тўлалигича" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -9266,7 +9270,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ўзгариш йўқ" @@ -10149,20 +10153,20 @@ msgstr "MySQL бўш натижа берди (яъни нольта сатр)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Қуйидаги тузилишлар ё тузилди ё ўзгартирилди. Бу ерда сиз қуйидаги амалларни " "бажаришингиз мумкин:" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 #, 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:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -10170,47 +10174,47 @@ msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Қуйидаги танловларни ўзгартириш учун, \"Танловлар\" боғига босинг" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "Тузилмани ўзгартириш учун, \"Тузилма\" боғига киринг" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Ушбу базага ўтиш" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "\"%s\" майдонида маълумот йўқ" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Ушбу жадвалга ўтиш" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Фақат тузилиши" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Ушбу кўринишга ўтиш" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -10261,51 +10265,51 @@ msgstr "Ёки" msgid "web server upload directory:" msgstr "Юклаш каталогидан" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Қўйиш" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Қўйилаётган қаторлар сони: \"%s\"" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "ва сўнг" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Ёзув киритиш" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Янги қатор сифатида қўшиш ва хатоликларга эътибор бермаслик" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Киритилган сўровни кўрсатиш" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Олдинги саҳифага ўтиш" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Янги ёзув киритиш" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Ушбу саҳифага қайтиш" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Кейинги қаторни таҳрирлаш" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -10314,7 +10318,7 @@ msgid "" msgstr "" "Майдонлараро ўтиш учун TAB тугмаси ёки CTRL+стрелка тугмаларидан фойдаланинг" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -10326,11 +10330,11 @@ msgstr "" msgid "Value" msgstr "Қиймати" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "SQL-сўровни кўрсатиш" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Киритилган қатор идентификатори: %1$d" @@ -11222,7 +11226,7 @@ msgstr "Жадвални тиклаш" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" @@ -11239,32 +11243,32 @@ msgid "Delete the table (DROP)" msgstr "Ушбу базага ўтиш" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Таҳлил" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Текшириш" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Оптимизация" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Қайта қуриш" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Тиклаш" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -11292,37 +11296,37 @@ msgstr "Бўлакларни (PARTITIONS) ўчириш" msgid "Check referential integrity:" msgstr "Маълумотлар яхлитлигини текшириш:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Жадвални ўз-ўзига кўчириб бўлмайди!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Жадвалнинг ўзидан ўзига нусха кўчириш мумкин эмас!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "\"%s\" жадвали \"%s\" га кўчирилди." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "\"%s\" жадвалидан \"%s\" га нусха кўчирилди." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Жадвал номи кўрсатилмаган!" @@ -11524,7 +11528,7 @@ msgstr "Маълумотлар базаларини кўрсатиш афзал #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Жадвал маълумотларини дамп қилиш" @@ -11550,21 +11554,21 @@ msgstr "Тавсифи" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Жадвал тузилиши" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Намойиш этиш учун тузилма" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Намойиш этиш учун тузилма" @@ -11678,7 +11682,7 @@ msgid "Database:" msgstr "Маълумотлар базаси" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11796,7 +11800,7 @@ msgid "Data creation options" msgstr "Ўгиришлар параметрлари" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11865,7 +11869,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11911,61 +11915,61 @@ msgstr "ишлатилмоқда" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Сақланган жадвалларнинг ташқи калитида чекловлар" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Жадвалларнинг ташқи калитида чекловлар" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Сақланган жадвалларнинг ташқи калитида чекловлар" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Жадваллардан:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Ноль қийматлари учун \"AUTO_INCREMENT\" ишлатмаслик" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT қўшиш" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "ЖАДВАЛ УЧУН MIME ТУРЛАРИ" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "Жадвал алоқалари" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Намойиш этиш учун тузилма" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -12021,36 +12025,36 @@ msgstr "" msgid "Column names: " msgstr "Майдон номлари" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV импортидаги парамерт нотўғри: \"%s\"" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" "Киритилаётган CSV маълумотларнинг %d қаторидаги маълумотлар формати нотўғри." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "" "Киритилаётган CSV маълумотларнинг %d қаторидаги майдонлар сони нотўғри." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Ушбу модул қисилган маълумотларни импорт қила олмайди!" @@ -12058,7 +12062,7 @@ msgstr "Ушбу модул қисилган маълумотларни импо msgid "MediaWiki Table" msgstr "MediaWiki жадвали" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." @@ -12078,9 +12082,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Пул бирликларини импорт қилиш (масалан, $5.00 ни 5.00 га)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -12088,7 +12092,7 @@ msgstr "" "Кўрсатилган XML файл ё нотўғри тузилган ё чала. Уни тўғирлаб, қайта ҳаракат " "қилиб кўринг." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -12098,23 +12102,23 @@ msgstr "Open Document жадвали" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -15490,15 +15494,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -15513,17 +15513,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -15545,23 +15546,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Очиқ жадваллар сони." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Очиқ жадваллар сони." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -15592,17 +15593,17 @@ msgstr "%1$s жадвали тузилди." msgid "Variable name was expected." msgstr "Жадвал номи шаблони" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Жадвал бошига" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -15623,19 +15624,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Ёзув ўчирилди" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -16380,7 +16381,7 @@ msgstr "Жадвал дампини (схемасини) намойиш этиш msgid "Invalid table name" msgstr "Жадвал номи нотўғри" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -17531,7 +17532,7 @@ msgid "at beginning of table" msgstr "Жадвал бошига" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -17580,7 +17581,7 @@ msgstr "бўлакларга бўлинган" msgid "Edit partitioning" msgstr "Бўлакларни (PARTITIONS) ўчириш" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17716,11 +17717,11 @@ msgstr "Ном кўриниши" msgid "Column names" msgstr "Майдон номлари" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Кўриниш номини ўзгартириш" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Go to database" msgid "Delete the view (DROP)" diff --git a/po/uz@latin.po b/po/uz@latin.po index 19549619d5..d8afc3face 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -1,9 +1,9 @@ # Automatically generated <>, 2010. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-12-29 19:19+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek (latin) %2$s" msgstr[0] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" msgstr[1] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3991,16 +3994,16 @@ msgstr "Filtr" msgid "Search this table" msgstr "Ma`lumotlar bazasida qidirish" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 #, fuzzy #| msgid "Begin" msgctxt "First page" msgid "Begin" msgstr "Boshi" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 #, fuzzy @@ -4009,8 +4012,8 @@ msgctxt "Previous page" msgid "Previous" msgstr "Orqaga" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 #, fuzzy @@ -4019,8 +4022,8 @@ msgctxt "Next page" msgid "Next" msgstr "Keyingi" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 #, fuzzy #| msgid "End" msgctxt "Last page" @@ -4107,7 +4110,7 @@ msgstr "Taxminiy bo‘lishi mumkin. [doc@faq3-11]\"FAQ 3.11\"[/doc]ga qarang" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4147,7 +4150,7 @@ msgid "Query took %01.4f seconds." msgstr "So‘rov %01.4f sekund vaqt oldi" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -4155,7 +4158,7 @@ msgid "With selected:" msgstr "Belgilanganlarni:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -4245,7 +4248,7 @@ msgstr "Faylning yuklanishi uning kengaytmasi sabali to‘xtatildi." msgid "Unknown error in file upload." msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -4253,11 +4256,11 @@ msgstr "" "Yuklangan fayl joyini o‘zgartirishda xatolik, [doc@faq1-11]\"FAQ 1.11\"[/" "doc]ga qarang" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4325,8 +4328,8 @@ msgid "Keyname" msgstr "Indeks nomi" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4374,15 +4377,15 @@ msgstr "Birlamchi kalit o‘chirildi." msgid "Index %s has been dropped." msgstr "\"%s\" indeksi o‘chirildi." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "O‘chirish" @@ -4393,7 +4396,7 @@ msgid "" "removed." msgstr "%1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -4443,8 +4446,8 @@ msgid "Table" msgstr "Jadval" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -4452,25 +4455,25 @@ msgstr "Jadval" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Qidirish" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Qo‘yish" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -4478,24 +4481,24 @@ msgid "Privileges" msgstr "Privilegiyalar" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Operatsiyalar" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Kuzatish" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4506,16 +4509,16 @@ msgstr "Triggerlar" msgid "Database seems to be empty!" msgstr "Ma`lumotlar bazasi bo‘sh!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "So‘rov" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Muolajalar" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -4523,18 +4526,18 @@ msgstr "Muolajalar" msgid "Events" msgstr "Hodisalar" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Dizayner" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 #, fuzzy #| msgid "CHAR textarea columns" msgid "Central columns" msgstr "CHAR maydonidagi ustunlar soni" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -4549,34 +4552,34 @@ msgid "User accounts" msgstr "Foydalanuvchi" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Ikkilik jurnal" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: 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:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "O‘zgaruvchilar" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Kodirovkalar" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Jadval turlari" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -5196,16 +5199,16 @@ msgstr "Jurnal fayllari soni" msgid "Max: %s%s" msgstr "Maksimal hajmi: \"%s\"%s\"" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5216,38 +5219,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL javobi: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "So‘rov tahlili" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Tahlil kerak emas" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP-kod olib tashlash" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "so‘rovni bajarish" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP-kod" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5255,76 +5258,76 @@ msgid "Edit inline" msgstr "Tahrirlash usuli" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "Yaksh" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y y., %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "\"%s\" kun, \"%s\" soat, \"%s\" minut va \"%s\" sekund" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Muolajalar" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "\"%s\" ma`lumotlar bazasiga o‘tish." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "\"%s\" parametrining ishi ma`lum xatolikka olib kelishi mumkin, batafsil " "ma`lumot uchun qarang \"%s\"" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Tanlash uchun sichqoncha tugmasini bosing" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Yuklash katalogidan" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 #, fuzzy #| msgid "There are no configured servers" msgid "There are no files to upload!" msgstr "Bironta ham konfiguratsiyalangan server mavjud emas" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Tozalash" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 #, fuzzy #| msgid "User" msgid "Users" @@ -5468,50 +5471,50 @@ msgstr "Ustun(lar) qo‘shish" msgid "Attributes" msgstr "Atributlar" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Failed to read configuration file!" msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "\"%1$s\" faylidan andoza konfiguratsiyani yuklab bo‘lmadi." -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Server raqami noto‘g‘ri: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s serveri uchun noto‘g‘ri xost nomi ko‘rsatilgan. phpMyAdmin " "konfiguratsion faylida belgilangan sozlashlarni to‘g‘irlang." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Server" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" "phpMyAdmin konfiguratsion faylida noto‘g‘ri autentifikatsiya usuli " "belgilangan:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5519,24 +5522,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "\"%s\" ni \"%s\" versiyaga yoki kattaroq versiyaga yangilash zarur." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6433,7 +6436,7 @@ msgstr "Maydon nomlarini birinchi qatorga joylashtirish" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6441,7 +6444,7 @@ msgstr "Maydon qiymatlari quyidagi belgi ichiga olingan " #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6465,14 +6468,14 @@ msgstr "Maydonlar ichidagi satrdan-satrga ko‘chirish belgilarini olib tashlash #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Qatorlar bo‘luvchisi" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -9033,7 +9036,7 @@ msgid "Table %s has been emptied." msgstr "\"%s\" jadvali tozalandi." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -9176,8 +9179,8 @@ msgid "No data to display" msgstr "Ma`lumotlar bazasi mavjud emas" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -9227,57 +9230,57 @@ msgid "No column selected." msgstr "" "Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Ignore errors" msgid "Query error" msgstr "Xatolarga e`tibor bermaslik" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "O‘zgartirish" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Matn to‘laligicha" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -9289,7 +9292,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "O‘zgarish yo‘q" @@ -10176,20 +10179,20 @@ msgstr "MySQL bo‘sh natija berdi (ya`ni nolta satr)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 #, 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:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -10197,47 +10200,47 @@ 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:1263 +#: libraries/import.lib.php:1264 #, 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:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Ushbu bazaga o‘tish" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "\"%s\" maydonida ma`lumot yo‘q" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Ushbu jadvalga o‘tish" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Faqat tuzilishi" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Ushbu ko‘rinishga o‘tish" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -10288,51 +10291,51 @@ msgstr "Yoki" msgid "web server upload directory:" msgstr "Yuklash katalogidan" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Qo‘yish" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, 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:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "va so‘ng" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Yozuv kiritish" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 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:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Kiritilgan so‘rovni ko‘rsatish" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Oldingi sahifaga o‘tish" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Yangi yozuv kiritish" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Ushbu sahifaga qaytish" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Keyingi qatorni tahrirlash" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -10342,7 +10345,7 @@ msgstr "" "Maydonlararo o‘tish uchun TAB tugmasi yoki CTRL+strelka tugmalaridan " "foydalaning" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -10354,11 +10357,11 @@ msgstr "" msgid "Value" msgstr "Qiymati" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "SQL-so‘rovni ko‘rsatish" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Kiritilgan qator identifikatori: %1$d" @@ -11253,7 +11256,7 @@ msgstr "Jadvalni tiklash" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" @@ -11270,32 +11273,32 @@ msgid "Delete the table (DROP)" msgstr "Ushbu bazaga o‘tish" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Tahlil" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Tekshirish" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimizatsiya" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Qayta qurish" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Tiklash" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -11323,37 +11326,37 @@ msgstr "Bo‘laklarni (PARTITIONS) o‘chirish" msgid "Check referential integrity:" msgstr "Ma`lumotlar yaxlitligini tekshirish:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Jadvalni o‘z-o‘ziga ko‘chirib bo‘lmaydi!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Jadvalning o‘zidan o‘ziga nusxa ko‘chirish mumkin emas!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "\"%s\" jadvali \"%s\" ga ko‘chirildi." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "\"%s\" jadvalidan \"%s\" ga nusxa ko‘chirildi." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Jadval nomi ko‘rsatilmagan!" @@ -11555,7 +11558,7 @@ msgstr "Ma`lumotlar bazalarini ko‘rsatish afzalliklari" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Jadval ma`lumotlarini damp qilish" @@ -11581,21 +11584,21 @@ msgstr "Tavsifi" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Jadval tuzilishi" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Namoyish etish uchun tuzilma" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Namoyish etish uchun tuzilma" @@ -11709,7 +11712,7 @@ msgid "Database:" msgstr "Ma`lumotlar bazasi" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11828,7 +11831,7 @@ msgid "Data creation options" msgstr "O‘girishlar parametrlari" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11897,7 +11900,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11949,61 +11952,61 @@ msgstr "ishlatilmoqda" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Saqlangan jadvallarning tashqi kalitida cheklovlar" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Jadvallarning tashqi kalitida cheklovlar" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Saqlangan jadvallarning tashqi kalitida cheklovlar" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Quyidagi jadval(lar)da qidirish:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT qo‘shish" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "JADVAL UCHUN MIME TURLARI" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "Jadval aloqalari" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -12059,37 +12062,37 @@ msgstr "" msgid "Column names: " msgstr "Maydon nomlari" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV importidagi paramert noto‘g‘ri: \"%s\"" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" "Kiritilayotgan CSV ma`lumotlarning %d qatoridagi ma`lumotlar formati " "noto‘g‘ri." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "" "Kiritilayotgan CSV ma`lumotlarning %d qatoridagi maydonlar soni noto‘g‘ri." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Ushbu modul qisilgan ma`lumotlarni import qila olmaydi!" @@ -12097,7 +12100,7 @@ msgstr "Ushbu modul qisilgan ma`lumotlarni import qila olmaydi!" msgid "MediaWiki Table" msgstr "MediaWiki jadvali" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." @@ -12118,9 +12121,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Pul birliklarini import qilish (masalan, $5.00 ni 5.00 ga)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -12128,7 +12131,7 @@ msgstr "" "Ko‘rsatilgan XML fayl yo noto‘g‘ri tuzilgan yo chala. Uni to‘g‘irlab, qayta " "harakat qilib ko‘ring." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -12138,23 +12141,23 @@ msgstr "Open Document jadvali" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -15556,15 +15559,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -15579,17 +15578,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -15612,23 +15612,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Ochiq jadvallar soni." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Ochiq jadvallar soni." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -15659,17 +15659,17 @@ msgstr "%1$s jadvali tuzildi." msgid "Variable name was expected." msgstr "Jadval nomi shabloni" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Jadval boshiga" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -15690,19 +15690,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -16448,7 +16448,7 @@ msgstr "Jadval dampini (sxemasini) namoyish etish" msgid "Invalid table name" msgstr "Jadval nomi noto‘g‘ri" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -17607,7 +17607,7 @@ msgid "at beginning of table" msgstr "Jadval boshiga" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -17656,7 +17656,7 @@ msgstr "bo‘laklarga bo‘lingan" msgid "Edit partitioning" msgstr "Bo‘laklarni (PARTITIONS) o‘chirish" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17792,11 +17792,11 @@ msgstr "Nom ko‘rinishi" msgid "Column names" msgstr "Maydon nomlari" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Ko‘rinish nomini o‘zgartirish" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Go to database" msgid "Delete the view (DROP)" diff --git a/po/vi.po b/po/vi.po index dfcfbc5153..a589275d58 100644 --- a/po/vi.po +++ b/po/vi.po @@ -6,9 +6,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-01-13 15:59+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Vietnamese %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s khớp trong %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3429,30 +3433,30 @@ msgstr "Số hàng" msgid "Search this table" msgstr "Tìm kiếm trong bảng này" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "Bắt đầu" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "Kế trước" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "Kế tiếp" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "Cuối" @@ -3523,7 +3527,7 @@ msgstr "Có thể chỉ là ước đoán. Xem [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Truy vấn SQL của bạn đã được thực hiện thành công." @@ -3557,7 +3561,7 @@ msgid "Query took %01.4f seconds." msgstr "Truy vấn cần %01.4f giây." #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3565,7 +3569,7 @@ msgid "With selected:" msgstr "Lưu mục đã chọn" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3643,16 +3647,16 @@ msgstr "Tải tập tin bị dừng bởi phần mở rộng." msgid "Unknown error in file upload." msgstr "Gặp lỗi chưa biết trong tải tập tin" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Lỗi di chuyển tập tin đã tải, vui lòng xem [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Lỗi khi di chuyển tập tin đã tải lên." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Không thể đọc tập tin đã tải lên." @@ -3716,8 +3720,8 @@ msgid "Keyname" msgstr "Tên khóa" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3765,15 +3769,15 @@ msgstr "Khóa chính đã được xóa bỏ" msgid "Index %s has been dropped." msgstr "Chỉ mục %s đã được xóa bỏ." -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Xóa" @@ -3786,7 +3790,7 @@ msgstr "" "Các chỉ mục %1$s và %2$s dường như là giống nhau và một trong số chúng có " "thể gần như chắc chắn nên được xóa bỏ." -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3838,8 +3842,8 @@ msgid "Table" msgstr "Bảng" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3847,25 +3851,25 @@ msgstr "Bảng" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "Tìm kiếm" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "Chèn" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3873,24 +3877,24 @@ msgid "Privileges" msgstr "Đặc quyền" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "Thao tác" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "Theo dõi" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3901,16 +3905,16 @@ msgstr "Bẫy" msgid "Database seems to be empty!" msgstr "Cơ sở dữ liệu có vẻ là đang trống rỗng!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "Truy vấn" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "Thủ tục" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3918,16 +3922,16 @@ msgstr "Thủ tục" msgid "Events" msgstr "Sự kiện" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "Bộ thiết kế" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "Các cột trung tâm" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3940,34 +3944,34 @@ msgid "User accounts" msgstr "Các tài khoản người dùng" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "Nhật ký nhị phân" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "Bản sao" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "Biến" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "Bảng mã" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "Bộ máy" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "Phần bổ sung" @@ -4533,16 +4537,16 @@ msgstr "Spatial" msgid "Max: %s%s" msgstr "T.Đa: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "Thống kê phân tích:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "Đã phát sinh %d lỗi trong quá trình phân tích." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4553,98 +4557,98 @@ msgstr "Đã phát sinh %d lỗi trong quá trình phân tích." msgid "MySQL said: " msgstr "MySQL đã nói: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Giải thích SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "Bỏ qua giảng giải SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "Analyze Explain tại %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "Không mã PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "Gửi truy vấn" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Tạo mã PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Sửa chung dòng" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "CN" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y lúc %I:%M %p" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ngày, %s giờ, %s phút và %s giây" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "Thiếu tham số:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "Nhảy tới cơ sở dữ liệu \"%s\"." -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Hàm %s bị ảnh hưởng bởi lỗi đã biết, xem %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "Nhấn vào để bật/tắt" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "Duyệt máy tính của bạn:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Chọn từ thư mục tải lên của máy phục vụ web %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "Thư mục bạn đặt cho việc tải lên không thể tiếp cận được." -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "Không có tập tin nào để tải lên!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "Rỗng" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "Thi hành" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Người dùng" @@ -4770,11 +4774,11 @@ msgstr "Thêm cột mới" msgid "Attributes" msgstr "Thuộc tính" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Gặp lỗi khi đọc tập tin cấu hình!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4782,32 +4786,32 @@ msgstr "" "Việc này thường do có lỗi cú pháp trong đó, vui lòng kiểm tra xem các lỗi " "hiển thị bên dưới." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Không thể tải cấu hình mặc định từ: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Chỉ mục máy chủ không hợp lệ: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Tên máy không hợp lệ cho máy phục vụ %1$s. Vui lòng xem lại cấu hình của bạn." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Máy chủ %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Phương thức xác thực trong cấu hình không hợp lệ:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4815,24 +4819,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Bạn nên nâng cấp lên %s %s hay bản mới hơn." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Lỗi: Không khớp thẻ" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Cố gắng kết nối gặp lỗi" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "Kết quả có thể" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "Ứng xử phím xóa của vùng số" @@ -5511,13 +5515,13 @@ msgstr "Đặt tên các cột ở hàng đầu tiên" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Bao các cột bằng" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Thoát các cột bằng" @@ -5535,12 +5539,12 @@ msgstr "Gỡ bỏ các ký tự CRLF có trong các cột" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Các cột được chấm dứt bằng" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Dòng được chấm dứt bằng" @@ -7586,7 +7590,7 @@ msgid "Table %s has been emptied." msgstr "Bảng %s đã được làm trống." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "View %s đã được xóa bỏ." @@ -7717,8 +7721,8 @@ msgid "No data to display" msgstr "Không có dữ liệu để hiển thị" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7755,52 +7759,52 @@ msgstr[0] "Tên “%s” là từ khóa dành riêng của MySQL." msgid "No column selected." msgstr "Chưa chọn cột nào." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Các cột được di chuyển thành công." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Lỗi truy vấn" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "Bảng %1$s đã được thay đổi thành công. Đặc quyền đã được chỉnh sửa." -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Thay đổi" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Chỉ mục" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spatial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Toàn văn" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Giá trị Distinct" @@ -7811,7 +7815,7 @@ msgstr "" "Thiếu phần mở rộng %s. Vui lòng kiểm tra lại phần cấu hình PHP của bạn." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Không thay đổi gì" @@ -8558,57 +8562,57 @@ msgstr "MySQL trả về kết quả là trống rỗng (vd. không có hàng n msgid "[ROLLBACK occurred.]" msgstr "[đã nảy sinh ROLLBACK.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Các cấu trúc sau đây hoặc là được tạo hoặc là bị sửa chữa. Ở đây bạn có thể:" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "Xem nội dung của cấu trúc bằng cách bấm vào tên của nó." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Thay đổi bất kỳ các tùy chọn của nó bằng các bấm vào liên kết \"Tùy chọn\" " "tương ứng." -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Sửa cấu trúc bằng cách bấm vào liên kết \"Cấu trúc\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Chuyển đến cơ sở dữ liệu: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Sửa các cài đặt cho %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Chuyển đến bảng: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Cấu trúc của %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Chuyển đến view: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Chỉ các truy vấn UPDATE và DELETE trên một bảng được mô phỏng." -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8656,55 +8660,55 @@ msgstr "Hoặc" msgid "web server upload directory:" msgstr "thư mục để tải lên máy chủ:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Sửa/Chèn" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Tiếp tục chèn với %s hàng" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "và sau đó" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Chèn hàng mới" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Chèn hàng mới và bỏ qua các lỗi" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Hiện câu truy vấn chèn dữ liệu" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Trở về trang kế trước" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Chèn thêm một hàng mới nữa" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Trở lại trang này" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Sửa hàng kế tiếp" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Dùng phím TAB để di chuyển từ giá trị này sang giá trị khác và CTRL+phím mũi " "tên để di chuyển ở chỗ khác." -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8716,11 +8720,11 @@ msgstr "" msgid "Value" msgstr "Giá trị" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Hiện truy vấn SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Chỉ số id người dùng kép: %1$d" @@ -9545,7 +9549,7 @@ msgstr "Sửa chữa bảng" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Xóa dữ liệu hay bảng" @@ -9558,32 +9562,32 @@ msgid "Delete the table (DROP)" msgstr "Xóa bảng (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Phân tích" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Kiểm tra" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Tối ưu hóa" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Xây dụng lại" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Sửa chữa" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Cắt ngắn" @@ -9609,35 +9613,35 @@ msgstr "Xóa phân vùng" msgid "Check referential integrity:" msgstr "Kiểm tra tính nguyên vẹn dữ liệu của đĩa" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Không thể di chuyển bảng đến cùng một cái!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Không thể sao chép bảng đến cùng một cái!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Bảng %s đã được chuyển sang %s. Đặc quyền đã được điều chỉnh lại." -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Bảng %s đã được chép sang %s. Đặc quyền đã được điều chỉnh lại." -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Bảng %s được chuyển sang %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Bảng %s được chép sang %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Tên bảng còn để trống!" @@ -9810,7 +9814,7 @@ msgstr "Hiển thị hộp thoại tùy chọn" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Đang đổ dữ liệu cho bảng" @@ -9834,21 +9838,21 @@ msgstr "Định nghĩa" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Cấu trúc bảng cho bảng" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Cấu trúc cho view" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Cấu trúc đóng vai cho view" @@ -9938,7 +9942,7 @@ msgid "Database:" msgstr "Cơ sở dữ liệu:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Dữ liệu:" @@ -10030,7 +10034,7 @@ msgid "Data creation options" msgstr "Tùy chọn tạo tập tin:" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Cắt ngắn bảng trước khi chèn" @@ -10110,7 +10114,7 @@ msgstr "Cơ sở dữ liệu của bạn có vẻ như có dùng các hàm;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "xuất bí danh có thể không làm việc đúng trong mọi trường hợp" @@ -10152,52 +10156,52 @@ msgstr "đang dùng" msgid "It appears your database uses views;" msgstr "Cơ sở dữ liệu của bạn có vẻ như có dùng các view;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Các ràng buộc cho các bảng đã đổ" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Các ràng buộc cho bảng" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Chỉ mục cho các bảng đã đổ" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Chỉ mục cho bảng" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT cho các bảng đã đổ" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT cho bảng" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Cơ sở dữ liệu của bạn có vẻ như có dùng các bẫy;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "Cấu trúc cho view %s được xuất dạng một bảng" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Gặp lỗi khi đọc dữ liệu:" @@ -10245,15 +10249,15 @@ msgstr "" msgid "Column names: " msgstr "Tên cột:" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Đối số không hợp lệ cho nhập CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10262,18 +10266,18 @@ msgstr "" "Đã đưa ra cột không hợp lệ (%s)! Hãy chắc là tên các cột được viết đúng, " "ngăn cách bằng dấu phẩy, và không được bao quanh bằng dấu trích dẫn." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Định dạng CSV đầu vào không hợp lệ tại dòng %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Số lượng cột trong CSV đầu vào không đúng tại dòng %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Phần bổ sung này không hỗ trợ nhập khẩu tập tin nén!" @@ -10281,7 +10285,7 @@ msgstr "Phần bổ sung này không hỗ trợ nhập khẩu tập tin nén!" msgid "MediaWiki Table" msgstr "Bảng MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Định dạng đầu vào của mediawiki không hợp lệ tại dòng:
%s." @@ -10295,9 +10299,9 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Nhập tiền tệ (vd. $5.00 thành 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10305,7 +10309,7 @@ msgstr "" "Đặc tả tập tin XML hoặc là sai dạng hoặc là chưa hoàn thiện. Vui lòng sửa " "các lỗi và thử lại." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Mở tài liệu định dạng HTML" @@ -10313,12 +10317,12 @@ msgstr "Mở tài liệu định dạng HTML" msgid "ESRI Shape File" msgstr "Tập tin hình ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Có lỗi khi nhập vào tập tin hình dạng ESRI: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10326,12 +10330,12 @@ msgstr "" "Bạn đã cố nhập vào một tập tin không hợp lệ hoặc nhập vào tập tin có chứa dữ " "liệu không hợp lệ!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Spatial Extension không hỗ trợ kiểu ESRI \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Tập tin không chứa bất kỳ một dữ liệu có thể nhập vào." @@ -13094,15 +13098,11 @@ msgstr "Cần giá trị %1$d, nhưng lại nhận được %2$d." msgid "An opening bracket followed by a set of values was expected." msgstr "Cần một dấu ngoặc ôm mở theo sau bởi một tập hợp các giá trị." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "Cần dấu ngoặc ôm mở." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "Cần dấu phẩy hoặc dấu ngoặc ôm đóng" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Cần dấu phẩy hoặc dấu ngoặc ôm đóng." @@ -13115,17 +13115,18 @@ msgstr "Cần dấu ngoặc ôm đóng." msgid "Unrecognized data type." msgstr "Không nhận ra kiểu dữ liệu." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Một bí danh đã tìm thấy từ trước đây." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Gặp dấu chấm không cần." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Cần một bí danh." @@ -13143,19 +13144,19 @@ msgstr "Cần vị trí tương đối." msgid "This option conflicts with \"%1$s\"." msgstr "Tùy chọn này xung đột với \"%1$s\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Cần tên cũ của bảng." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Cần từ khóa \"TO\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Cần tên mới của bảng." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Cần thao tác đổi tên." @@ -13181,15 +13182,15 @@ msgstr "Cần trích dẫn đóng %1$s." msgid "Variable name was expected." msgstr "Cần tên biến." -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Gặp phần đầu mệnh đề không cần." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Không thừa nhận kiểu mệnh đề." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Chưa có giao địch nào đã bắt đầu trước đây." @@ -13211,15 +13212,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Không nhận ra từ khóa." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Cần tên của thực thể." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Cần từ khóa \"RETURNS\"." @@ -13909,7 +13910,7 @@ msgstr "Tới ô xem bảng sóng" msgid "Invalid table name" msgstr "Tên bảng không hợp lệ" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Hàng: %1$s, Cột: %2$s, Lỗi: %3$s" @@ -14814,7 +14815,7 @@ msgid "at beginning of table" msgstr "tại đầu của bảng" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Phân vùng" @@ -14847,7 +14848,7 @@ msgstr "Bảng phân vùng" msgid "Edit partitioning" msgstr "Sửa phân vùng" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Sửa view" @@ -14962,11 +14963,11 @@ msgstr "Tên VIEW" msgid "Column names" msgstr "Các tên cột" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Việc đổi tên %s thành %s bị lỗi" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Xóa bảng (DROP)" @@ -16038,6 +16039,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert được đặt thành 0" +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Cần dấu phẩy hoặc dấu ngoặc ôm đóng" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/vls.po b/po/vls.po index 28b870f53c..e4c4115cca 100644 --- a/po/vls.po +++ b/po/vls.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2014-12-23 23:39+0200\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: West Flemish %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3317,30 +3320,30 @@ msgstr "" msgid "Search this table" msgstr "" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "" @@ -3411,7 +3414,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3444,7 +3447,7 @@ msgid "Query took %01.4f seconds." msgstr "" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3452,7 +3455,7 @@ msgid "With selected:" msgstr "" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3528,15 +3531,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3600,8 +3603,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3649,15 +3652,15 @@ msgstr "" msgid "Index %s has been dropped." msgstr "" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -3668,7 +3671,7 @@ msgid "" "removed." msgstr "" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3718,8 +3721,8 @@ msgid "Table" msgstr "" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3727,25 +3730,25 @@ msgstr "" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3753,24 +3756,24 @@ msgid "Privileges" msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3781,16 +3784,16 @@ msgstr "" msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3798,16 +3801,16 @@ msgstr "" msgid "Events" msgstr "" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3820,34 +3823,34 @@ msgid "User accounts" msgstr "" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "" @@ -4413,16 +4416,16 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4433,98 +4436,98 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "zu" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s daagn, %s eurn, %s menuutn and %s secondn" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "Gebrukers" @@ -4650,41 +4653,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4692,24 +4695,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5366,13 +5369,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5390,12 +5393,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -7334,7 +7337,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "" @@ -7464,8 +7467,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7503,52 +7506,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7558,7 +7561,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8277,54 +8280,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8370,53 +8373,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8428,11 +8431,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9252,7 +9255,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9265,32 +9268,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9316,35 +9319,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9513,7 +9516,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9537,21 +9540,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9641,7 +9644,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9733,7 +9736,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9802,7 +9805,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9844,52 +9847,52 @@ msgstr "" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -9937,33 +9940,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -9971,7 +9974,7 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" @@ -9984,15 +9987,15 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10000,23 +10003,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -12733,15 +12736,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "" @@ -12754,17 +12753,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "" @@ -12782,19 +12782,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "" @@ -12820,15 +12820,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12849,15 +12849,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13515,7 +13515,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14413,7 +14413,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14446,7 +14446,7 @@ msgstr "" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14561,11 +14561,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 869656edb3..3231fade83 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2015-11-19 08:10+0000\n" "Last-Translator: disorderman \n" "Language-Team: Chinese (China) %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "在 %2$s 中找到 %1$s 个" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3372,30 +3375,30 @@ msgstr "过滤行" msgid "Search this table" msgstr "在表中搜索" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "首页" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" msgid "Previous" msgstr "上一页" -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "下一页" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "尾页" @@ -3466,7 +3469,7 @@ msgstr "可能是近似值。参见[doc@faq3-11]常见问题 3.11[/doc]。" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "您的 SQL 语句已成功运行。" @@ -3499,7 +3502,7 @@ msgid "Query took %01.4f seconds." msgstr "查询花费 %01.4f 秒。" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3507,7 +3510,7 @@ msgid "With selected:" msgstr "选中项:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3583,15 +3586,15 @@ msgstr "扩展停止了文件上传。" msgid "Unknown error in file upload." msgstr "上传文件时发生未知错误。" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "移动已上传的文件时发生错误,参见[doc@faq1-11]常见问题 1.11[/doc]。" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "移动已上传的文件时发生错误。" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "无法读取上传的文件。" @@ -3655,8 +3658,8 @@ msgid "Keyname" msgstr "键名" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3704,15 +3707,15 @@ msgstr "已删除主键。" msgid "Index %s has been dropped." msgstr "已删除索引 %s。" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "删除" @@ -3723,7 +3726,7 @@ msgid "" "removed." msgstr "索引 %1$s 和 %2$s 似乎是相同的,可以删除其中一个。" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3773,8 +3776,8 @@ msgid "Table" msgstr "表" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3782,25 +3785,25 @@ msgstr "表" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "搜索" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "插入" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3808,24 +3811,24 @@ msgid "Privileges" msgstr "权限" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "操作" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "追踪" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3836,16 +3839,16 @@ msgstr "触发器" msgid "Database seems to be empty!" msgstr "数据库是空的!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "查询" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "程序" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3853,16 +3856,16 @@ msgstr "程序" msgid "Events" msgstr "事件" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "设计器" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "文本框列" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3875,34 +3878,34 @@ msgid "User accounts" msgstr "用户账户" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "二进制日志" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "复制" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "变量" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "字符集" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "引擎" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "插件" @@ -4496,16 +4499,16 @@ msgstr "空间" msgid "Max: %s%s" msgstr "最大限制:%s %s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "静态分析:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "分析时发现%d个错误。" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4516,98 +4519,98 @@ msgstr "分析时发现%d个错误。" msgid "MySQL said: " msgstr "MySQL 返回: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "解析 SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "略过解析 SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "分析解释了%s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 msgid "Without PHP code" msgstr "无 PHP 代码" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 msgid "Submit query" msgstr "提交查询" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "创建 PHP 代码" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "编辑内嵌" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "周日" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y-%m-%d %H:%M:%S" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 天 %s 小时,%s 分 %s 秒" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "缺少参数:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "转到数据库 \"%s\"。" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "功能 %s 受到一个已知缺陷的影响,参见 %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "点击切换" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "从计算机中上传:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "从网站服务器上传文件夹 %s 中选择:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "无法访问用于上传的文件夹。" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "没有可上传的文件!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "清空" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "执行" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "用户" @@ -4733,41 +4736,41 @@ msgstr "添加新字段" msgid "Attributes" msgstr "属性" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "读取配置文件失败!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "这通常意味着文件中有语法错误,请检查下面显示出的错误。" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "无法加载默认设置:%1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "无效的服务器索引:%s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "服务器 %1$s 的主机名无效。请复查您的设置。" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "服务器 %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "配置文件中设置的认证方式无效:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4777,24 +4780,24 @@ msgstr "" "无法为服务器 %2$d 设置时区 %1$s 。请检查您的配置中 [em]$cfg['Servers'][%3$d]" "['SessionTimeZone'][/em] 字段。服务器当前使用默认时区。" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "您应升级到 %s %s 或更高版本。" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "错误:令牌不符" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "企图覆盖 GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "检测到有利用漏洞的企图" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "检测到数字索引" @@ -5482,13 +5485,13 @@ msgstr "首行保存字段名" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "内容分隔符" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "内容转义符" @@ -5506,12 +5509,12 @@ msgstr "删除内容中的回车换行符" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "字段分隔符" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "换行符" @@ -7526,7 +7529,7 @@ msgid "Table %s has been emptied." msgstr "已清空表 %s。" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "已删除视图 %s。" @@ -7657,8 +7660,8 @@ msgid "No data to display" msgstr "没有可显示数据" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7699,52 +7702,52 @@ msgstr[0] "名称 '%s' 是一个MySQL 保留关键字。" msgid "No column selected." msgstr "没有选中任何列。" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "已成功移动字段。" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "查询错误" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "已成功修改表 %1$s。已调整权限。" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "修改" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "索引" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "空间" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "全文搜索" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "非重复值 (DISTINCT)" @@ -7754,7 +7757,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "缺少 %s 扩展。请检查 PHP 配置。" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "无更改" @@ -8504,54 +8507,54 @@ msgstr "MySQL 返回的查询结果为空 (即零行)。" msgid "[ROLLBACK occurred.]" msgstr "[发生 ROLLBACK.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "下列结构被创建或修改。你可以:" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "请通过点击结构的名称来查看它的内容。" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "点击相应的“选项”链接修改设置。" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "请通过点击 \"结构\" 链接来编辑结构." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "转到数据库: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "编辑 %s 的设置" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "转到表: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s 的结构" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "转到视图: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "只能预览单一数据表的UPDATE和DELETE查询。" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 #, fuzzy msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " @@ -8600,53 +8603,53 @@ msgstr "或" msgid "web server upload directory:" msgstr "网站服务器上传文件夹:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "编辑/插入" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "继续插入 %s 行" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "然后" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "以新行插入" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "以新行插入 (忽略错误)" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "显示插入语句" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "返回上一页" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "插入新数据" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "返回到本页" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "编辑下一行" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动." -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8658,11 +8661,11 @@ msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动." msgid "Value" msgstr "值" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "显示 SQL 查询" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" @@ -9509,7 +9512,7 @@ msgstr "修复表" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "删除数据或数据表" @@ -9522,32 +9525,32 @@ msgid "Delete the table (DROP)" msgstr "删除数据表 (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "分析" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "检查" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "优化" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "重建" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "修复" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9575,35 +9578,35 @@ msgstr "删除分区" msgid "Check referential integrity:" msgstr "检查引用完整性:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "目标数据表不能为源数据表!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "目标数据表不能为源数据表!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "已将数据表 %s 移动到 %s。已调整权限。" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "已将数据表 %s 复制为 %s。已调整权限。" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "已将数据表 %s 移动到 %s。" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "已将数据表 %s 复制为 %s。" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "表名不能为空!" @@ -9777,7 +9780,7 @@ msgstr "数据转储选项" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "转存表中的数据" @@ -9801,21 +9804,21 @@ msgstr "定义" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "表的结构" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "视图结构" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "替换视图以便查看" @@ -9921,7 +9924,7 @@ msgid "Database:" msgstr "数据库" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10027,7 +10030,7 @@ msgid "Data creation options" msgstr "数据创建选项" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "插入之前先把表清空(truncate)" @@ -10110,7 +10113,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10156,57 +10159,57 @@ msgstr "使用中" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "限制导出的表" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "限制表" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "限制导出的表" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "于下列表:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "在导出的表使用AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "使用表AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME 类型表" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "表的关联" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "视图结构" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "读取数据时发生错误:" @@ -10260,15 +10263,15 @@ msgstr "" msgid "Column names: " msgstr "字段名: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "导入 CSV 文件 %s 时有无效参数" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10277,18 +10280,18 @@ msgstr "" "无效字段 (%s)!请检查字段名是否拼写正确,使用半角逗号分隔,并且不要用引号括" "起。" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "CSV 输入的第 %d 行格式有错。" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "CSV 输入的第 %d 行字段数有错。" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "该插件不支持导入文件!" @@ -10296,7 +10299,7 @@ msgstr "该插件不支持导入文件!" msgid "MediaWiki Table" msgstr "MediaWiki 表" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "mediawiki输入在此行存在格式错误:
%s。" @@ -10309,15 +10312,15 @@ msgstr "导入百分数为小数 (如: 12.00% 将被导入为 .12)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "导入货币 (如: $5.00 将被导入为 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "该 XML 文件有错误或者不完整。请修复错误后重试。" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -10327,12 +10330,12 @@ msgstr "OpenOffice 表格" msgid "ESRI Shape File" msgstr "ESRI 图形文件" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "导入 ESRI 图形文件时出错: \"%s\"。" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 #, fuzzy #| msgid "" #| "You tried to import an invalid file or the imported file contains invalid " @@ -10342,12 +10345,12 @@ msgid "" "data!" msgstr "您要导入的文件无效或文件中含有无效数据" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Spatial 扩展不支持 ESRI 类型 \"%s\"。" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "The imported file does not contain any data" msgid "The imported file does not contain any data!" @@ -13388,15 +13391,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -13411,17 +13410,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -13443,23 +13443,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "打开的数据表个数。" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "打开的数据表个数。" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -13492,17 +13492,17 @@ msgstr "已创建事件 %1$s 。" msgid "Variable name was expected." msgstr "表名称模板" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "于表开头" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13525,19 +13525,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "已删除该行。" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14242,7 +14242,7 @@ msgstr "查看数据表的转储(大纲)" msgid "Invalid table name" msgstr "表名无效" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15278,7 +15278,7 @@ msgid "at beginning of table" msgstr "于表开头" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "分区" @@ -15325,7 +15325,7 @@ msgstr "已分区" msgid "Edit partitioning" msgstr "删除分区" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "编辑视图" @@ -15452,11 +15452,11 @@ msgstr "视图名" msgid "Column names" msgstr "字段名" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "将视图改名为" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "删除视图(DROP)" diff --git a/po/zh_TW.po b/po/zh_TW.po index 8b05109a45..6da2129abb 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -1,9 +1,9 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 4.6.0-dev\n" +"Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:38+0100\n" +"POT-Creation-Date: 2016-02-17 11:39+0100\n" "PO-Revision-Date: 2016-01-09 03:03+0000\n" "Last-Translator: Kelvin Lee \n" "Language-Team: Chinese (Taiwan) %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s 筆資料符合 %2$s" -#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3406 -#: libraries/Util.php:3416 libraries/Util.php:3692 libraries/Util.php:3693 -#: libraries/Util.php:4351 libraries/config.values.php:43 +#: libraries/DbSearch.php:350 libraries/Menu.php:317 libraries/Util.php:3413 +#: libraries/Util.php:3423 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Util.php:4358 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 @@ -3393,14 +3396,14 @@ msgstr "搜尋資料列" msgid "Search this table" msgstr "搜尋此資料表" -#: libraries/DisplayResults.php:983 libraries/Util.php:2601 -#: libraries/Util.php:2604 +#: libraries/DisplayResults.php:983 libraries/Util.php:2608 +#: libraries/Util.php:2611 msgctxt "First page" msgid "Begin" msgstr "最前頁" -#: libraries/DisplayResults.php:986 libraries/Util.php:2602 -#: libraries/Util.php:2605 +#: libraries/DisplayResults.php:986 libraries/Util.php:2609 +#: libraries/Util.php:2612 #: libraries/controllers/server/ServerBinlogController.php:193 #: libraries/controllers/server/ServerBinlogController.php:195 msgctxt "Previous page" @@ -3408,16 +3411,16 @@ msgid "Previous" msgstr "上一頁" # 這應該使用於選擇日期的小月曆 -#: libraries/DisplayResults.php:1052 libraries/Util.php:2633 -#: libraries/Util.php:2643 +#: libraries/DisplayResults.php:1052 libraries/Util.php:2640 +#: libraries/Util.php:2650 #: libraries/controllers/server/ServerBinlogController.php:227 #: libraries/controllers/server/ServerBinlogController.php:229 msgctxt "Next page" msgid "Next" msgstr "下一頁" -#: libraries/DisplayResults.php:1082 libraries/Util.php:2634 -#: libraries/Util.php:2644 +#: libraries/DisplayResults.php:1082 libraries/Util.php:2641 +#: libraries/Util.php:2651 msgctxt "Last page" msgid "End" msgstr "最末頁" @@ -3488,7 +3491,7 @@ msgstr "可能為近似值,請參考 [doc@faq3-11]FAQ 3.11[/doc]。" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "您的 SQL 語法已順利執行。" @@ -3521,7 +3524,7 @@ msgid "Query took %01.4f seconds." msgstr "查詢花費 %01.4f 秒。" #: libraries/DisplayResults.php:4827 libraries/DisplayResults.php:4834 -#: libraries/Util.php:4622 libraries/Util.php:4628 +#: libraries/Util.php:4629 libraries/Util.php:4635 #: libraries/mult_submits.inc.php:53 #: templates/database/structure/check_all_tables.phtml:2 #: templates/database/structure/check_all_tables.phtml:9 @@ -3529,7 +3532,7 @@ msgid "With selected:" msgstr "已選擇項目:" #: libraries/DisplayResults.php:4831 libraries/DisplayResults.php:4833 -#: libraries/Util.php:4624 libraries/Util.php:4625 +#: libraries/Util.php:4631 libraries/Util.php:4632 #: libraries/server_privileges.lib.php:1272 #: libraries/server_privileges.lib.php:1273 #: libraries/server_privileges.lib.php:1485 @@ -3605,15 +3608,15 @@ msgstr "不允許上傳此檔案類型的檔案。" msgid "Unknown error in file upload." msgstr "上傳檔案時發生未知錯誤。" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "移動上傳檔案時發生錯誤,請參考 [doc@faq1-11]FAQ 1.11[/doc]。" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "移動暫存檔時發生錯誤,請確認 TempDir 資料夾的寫入權限。" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "無法讀取已上傳的檔案。" @@ -3677,8 +3680,8 @@ msgid "Keyname" msgstr "鍵名" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3726,15 +3729,15 @@ msgstr "已刪除主鍵(Primary key)。" msgid "Index %s has been dropped." msgstr "已刪除索引 %s。" -#: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 +#: libraries/Index.php:755 libraries/Util.php:3706 libraries/Util.php:3707 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "刪除" @@ -3745,7 +3748,7 @@ msgid "" "removed." msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一個將可能被刪除。" -#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2590 +#: libraries/Language.php:195 libraries/PDF.php:71 libraries/Util.php:2597 #: libraries/browse_foreigners.lib.php:324 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:495 #: libraries/plugins/schema/pdf/PdfRelationSchema.php:520 @@ -3795,8 +3798,8 @@ msgid "Table" msgstr "資料表" #: libraries/Menu.php:331 libraries/Menu.php:434 libraries/Menu.php:547 -#: libraries/Util.php:3403 libraries/Util.php:3413 libraries/Util.php:3419 -#: libraries/Util.php:4321 libraries/Util.php:4336 libraries/Util.php:4353 +#: libraries/Util.php:3410 libraries/Util.php:3420 libraries/Util.php:3426 +#: libraries/Util.php:4328 libraries/Util.php:4343 libraries/Util.php:4360 #: 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:324 @@ -3804,25 +3807,25 @@ msgstr "資料表" msgid "SQL" msgstr "SQL" -#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3404 -#: libraries/Util.php:3414 libraries/Util.php:3420 libraries/Util.php:3694 -#: libraries/Util.php:3695 libraries/Util.php:4337 libraries/Util.php:4354 +#: libraries/Menu.php:334 libraries/Menu.php:437 libraries/Util.php:3411 +#: libraries/Util.php:3421 libraries/Util.php:3427 libraries/Util.php:3701 +#: libraries/Util.php:3702 libraries/Util.php:4344 libraries/Util.php:4361 #: 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 msgid "Search" msgstr "搜尋" -#: libraries/Menu.php:344 libraries/Util.php:3405 libraries/Util.php:3415 -#: libraries/Util.php:3696 libraries/Util.php:3697 libraries/Util.php:4355 +#: libraries/Menu.php:344 libraries/Util.php:3412 libraries/Util.php:3422 +#: libraries/Util.php:3703 libraries/Util.php:3704 libraries/Util.php:4362 #: 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:286 libraries/sql_query_form.lib.php:289 msgid "Insert" msgstr "新增" -#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4342 -#: libraries/Util.php:4358 libraries/config.values.php:107 +#: libraries/Menu.php:368 libraries/Menu.php:472 libraries/Util.php:4349 +#: libraries/Util.php:4365 libraries/config.values.php:107 #: libraries/server_common.lib.php:48 libraries/server_privileges.lib.php:2672 #: libraries/server_privileges.lib.php:4523 #: templates/privileges/privileges_summary.phtml:16 @@ -3830,24 +3833,24 @@ msgid "Privileges" msgstr "權限" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 -#: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 -#: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: libraries/Util.php:3414 libraries/Util.php:3428 libraries/Util.php:4348 +#: libraries/Util.php:4366 libraries/config.values.php:113 +#: view_operations.php:102 msgid "Operations" msgstr "操作" -#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4346 -#: libraries/Util.php:4360 libraries/relation.lib.php:264 +#: libraries/Menu.php:390 libraries/Menu.php:494 libraries/Util.php:4353 +#: libraries/Util.php:4367 libraries/relation.lib.php:264 msgid "Tracking" msgstr "追蹤" -#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4345 -#: libraries/Util.php:4361 +#: libraries/Menu.php:402 libraries/Menu.php:488 libraries/Util.php:4352 +#: libraries/Util.php:4368 #: libraries/navigation/nodes/NodeTriggerContainer.php:25 #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -3858,16 +3861,16 @@ msgstr "觸發器" msgid "Database seems to be empty!" msgstr "資料庫是空的!" -#: libraries/Menu.php:444 libraries/Util.php:4338 +#: libraries/Menu.php:444 libraries/Util.php:4345 msgid "Query" msgstr "查詢" -#: libraries/Menu.php:477 libraries/Util.php:4343 +#: libraries/Menu.php:477 libraries/Util.php:4350 #: libraries/rte/rte_words.lib.php:36 msgid "Routines" msgstr "預存程序" -#: libraries/Menu.php:482 libraries/Util.php:4344 +#: libraries/Menu.php:482 libraries/Util.php:4351 #: libraries/navigation/nodes/NodeEventContainer.php:25 #: libraries/plugins/export/ExportSql.php:947 #: libraries/plugins/export/ExportXml.php:103 @@ -3875,16 +3878,16 @@ msgstr "預存程序" msgid "Events" msgstr "事件" -#: libraries/Menu.php:500 libraries/Util.php:4347 +#: libraries/Menu.php:500 libraries/Util.php:4354 msgid "Designer" msgstr "設計器" -#: libraries/Menu.php:509 libraries/Util.php:4348 +#: libraries/Menu.php:509 libraries/Util.php:4355 #: templates/database/structure/check_all_tables.phtml:34 msgid "Central columns" msgstr "中央欄位" -#: libraries/Menu.php:543 libraries/Util.php:4320 +#: libraries/Menu.php:543 libraries/Util.php:4327 #: libraries/config.values.php:104 libraries/config/messages.inc.php:269 #: libraries/config/messages.inc.php:344 #: libraries/navigation/NavigationTree.php:1268 @@ -3897,34 +3900,34 @@ msgid "User accounts" msgstr "使用者帳號" #: libraries/Menu.php:594 libraries/ServerStatusData.php:119 -#: libraries/Util.php:4327 libraries/server_common.lib.php:33 +#: libraries/Util.php:4334 libraries/server_common.lib.php:33 msgid "Binary log" msgstr "二進位記錄" #: libraries/Menu.php:600 libraries/ServerStatusData.php:124 -#: libraries/Util.php:4328 libraries/server_common.lib.php:39 +#: libraries/Util.php:4335 libraries/server_common.lib.php:39 #: templates/database/structure/body_for_table_summary.phtml:10 #: templates/database/structure/table_header.phtml:27 msgid "Replication" msgstr "備援" #: libraries/Menu.php:605 libraries/ServerStatusData.php:191 -#: libraries/Util.php:4329 libraries/config.values.php:106 +#: libraries/Util.php:4336 libraries/config.values.php:106 #: libraries/sql_query_form.lib.php:422 #: templates/server/engines/engine.phtml:15 #: templates/server/engines/engine.phtml:18 msgid "Variables" msgstr "變數" -#: libraries/Menu.php:609 libraries/Util.php:4330 +#: libraries/Menu.php:609 libraries/Util.php:4337 msgid "Charsets" msgstr "字元編碼" -#: libraries/Menu.php:613 libraries/Util.php:4332 +#: libraries/Menu.php:613 libraries/Util.php:4339 msgid "Engines" msgstr "引擎" -#: libraries/Menu.php:617 libraries/Util.php:4331 +#: libraries/Menu.php:617 libraries/Util.php:4338 #: libraries/server_common.lib.php:30 msgid "Plugins" msgstr "附加元件" @@ -4520,16 +4523,16 @@ msgstr "空間類型" msgid "Max: %s%s" msgstr "上限: %s %s" -#: libraries/Util.php:680 +#: libraries/Util.php:686 msgid "Static analysis:" msgstr "靜態分析:" -#: libraries/Util.php:683 +#: libraries/Util.php:689 #, php-format msgid "%d errors were found during analysis." msgstr "分析過程中發生 %d 個錯誤。" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:752 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4540,102 +4543,102 @@ msgstr "分析過程中發生 %d 個錯誤。" msgid "MySQL said: " msgstr "MySQL 回應: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1206 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL 語句分析" -#: libraries/Util.php:1211 +#: libraries/Util.php:1217 msgid "Skip Explain SQL" msgstr "略過 SQL 語句分析" -#: libraries/Util.php:1219 +#: libraries/Util.php:1225 #, php-format msgid "Analyze Explain at %s" msgstr "分析語句於 %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1256 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "關閉 PHP 程式碼" -#: libraries/Util.php:1262 +#: libraries/Util.php:1268 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "送出查詢" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1279 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "產生 PHP 程式碼" -#: libraries/Util.php:1336 +#: libraries/Util.php:1342 msgctxt "Inline edit query" msgid "Edit inline" msgstr "行內編輯" #. l10n: Short week day name -#: libraries/Util.php:1682 +#: libraries/Util.php:1689 msgctxt "Short week day name" msgid "Sun" msgstr "週日" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/Util.php:1698 +#: libraries/Util.php:1705 #: libraries/plugins/transformations/abs/DateFormatTransformationsPlugin.php:67 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %m 月 %d 日 %H:%M" -#: libraries/Util.php:2085 +#: libraries/Util.php:2092 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 天 %s 小時,%s 分 %s 秒" -#: libraries/Util.php:2181 +#: libraries/Util.php:2188 msgid "Missing parameter:" msgstr "未填寫必要的參數:" -#: libraries/Util.php:2714 +#: libraries/Util.php:2721 #, php-format msgid "Jump to database \"%s\"." msgstr "切換到資料庫「%s」。" -#: libraries/Util.php:2739 +#: libraries/Util.php:2746 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 功能受到一個已知的問題影響,詳情請參考 %s" -#: libraries/Util.php:2950 +#: libraries/Util.php:2957 msgid "Click to toggle" msgstr "點此切換" -#: libraries/Util.php:3611 prefs_manage.php:247 +#: libraries/Util.php:3618 prefs_manage.php:247 msgid "Browse your computer:" msgstr "由電腦上傳:" -#: libraries/Util.php:3636 +#: libraries/Util.php:3643 #, php-format msgid "Select from the web server upload directory %s:" msgstr "由網頁伺服器上傳目錄中選擇 %s:" -#: libraries/Util.php:3665 libraries/insert_edit.lib.php:1176 +#: libraries/Util.php:3672 libraries/insert_edit.lib.php:1176 msgid "The directory you set for upload work cannot be reached." msgstr "設定之上傳目錄錯誤,無法使用。" -#: libraries/Util.php:3676 +#: libraries/Util.php:3683 msgid "There are no files to upload!" msgstr "無可上傳的檔案!" -#: libraries/Util.php:3701 libraries/Util.php:3702 +#: libraries/Util.php:3708 libraries/Util.php:3709 #: templates/database/structure/check_all_tables.phtml:16 msgid "Empty" msgstr "清空" -#: libraries/Util.php:3707 libraries/Util.php:3708 +#: libraries/Util.php:3714 libraries/Util.php:3715 msgid "Execute" msgstr "執行" -#: libraries/Util.php:4323 +#: libraries/Util.php:4330 msgid "Users" msgstr "使用者" @@ -4761,41 +4764,41 @@ msgstr "新增欄位" msgid "Attributes" msgstr "屬性" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "無法讀取設定檔!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "此情況通常是有語法錯誤,請檢查下列顯示的錯誤。" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "無法讀取預設設定: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "無效的伺服器索引: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "伺服器 %1$s 主機名稱無效,請重新檢查您的設定檔。" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "伺服器 %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "在設定檔中設定的認證方式無效:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4805,24 +4808,24 @@ msgstr "" "無法於伺服器 %2$d 使用時區 %1$s。請檢查您於設定檔的 [em]$cfg['Servers'][%3$d]" "['SessionTimeZone'][/em] 設定。phpMyAdmin 目前使用資料庫伺服器的預設時區。" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "您應升級到 %s %s 或更新版本。" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "錯誤: 連線資訊失效,請重新連線" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "嘗試覆寫 GLOBALS (全域變數)" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "$_REQUEST 數量過多(駭客?)" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "$_GLOBALS 內含非法的數字鍵名" @@ -5514,13 +5517,13 @@ msgstr "將欄位名稱儲存至第一行" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "內容分隔符號" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "內容跳脫符號" @@ -5538,12 +5541,12 @@ msgstr "將欄位之間的換行符號(CRLF)移除" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "欄位內容換行使用字元為" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "換行符號" @@ -7556,7 +7559,7 @@ msgid "Table %s has been emptied." msgstr "已清空資料表 %s。" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "已刪除檢視表 %s。" @@ -7688,8 +7691,8 @@ msgid "No data to display" msgstr "無資料可顯示" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7726,52 +7729,52 @@ msgstr[0] "名稱 '%s' 是 MySQL 保留字。" msgid "No column selected." msgstr "尚未選擇欄位。" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "欄位已移動成功。" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "查詢錯誤" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "已成功修改資料表 %1$s 。已調整權限。" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "修改" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "索引" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "空間" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "全文搜尋" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "顯示相異值" @@ -7781,7 +7784,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "缺少 %s 擴充套件。請檢查 PHP 設定。" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "無更改" @@ -8535,54 +8538,54 @@ msgstr "MySQL 回傳空的查詢結果 (即零資料列)。" msgid "[ROLLBACK occurred.]" msgstr "[已發生 ROLLBACK。]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "下列結構被建立或修改。您可以:" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "點選結構的名稱查看內容。" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "點選 \"選項\" 連結以修改項目的設定值。" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "點選「結構」連結以編輯。" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "前往資料庫: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "修改 %s 的設定" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "前往資料表: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s 的結構" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "前往檢視: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "只有單一資料表的更新(UPDATE)與刪除(DELETE)查詢能模擬。" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8630,48 +8633,48 @@ msgstr "或" msgid "web server upload directory:" msgstr "網站伺服器上傳資料夾:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "修改/新增" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "繼續新增 %s 列" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "然後" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "以新資料列新增" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "以新資料列新增 (忽略錯誤)" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "顯示新增指令" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "返回上一頁" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "新增其他新資料列" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "返回到本頁" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "編輯下一行" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -8679,7 +8682,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8691,11 +8694,11 @@ msgstr "按 TAB 鍵跳到下一個數值,或 CTRL+方向鍵 作隨意移動" msgid "Value" msgstr "值" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "顯示 SQL 查詢" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "新增的資料列行 id: %1$d" @@ -9537,7 +9540,7 @@ msgstr "修復資料表" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "刪除資料或資料表" @@ -9550,32 +9553,32 @@ msgid "Delete the table (DROP)" msgstr "刪除資料表 (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "分析" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "檢查" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "最佳化" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "重建" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "修復" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "清空" @@ -9601,35 +9604,35 @@ msgstr "刪除分區" msgid "Check referential integrity:" msgstr "檢查引用完整性:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "目標資料表不能爲來源資料表!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "目標資料表不能爲來源資料表!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "已將資料表 %s 移動到 %s。已調整權限。" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "已將資料表 %s 複製爲 %s。已調整權限。" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "已將資料表 %s 移動到 %s。" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "已將資料表 %s 複製爲 %s。" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "資料表名稱不能爲空!" @@ -9800,7 +9803,7 @@ msgstr "資料匯出選項" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "資料表的匯出資料" @@ -9824,21 +9827,21 @@ msgstr "定義" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "資料表結構" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "檢視表結構" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "替換檢視表以便查看" @@ -9928,7 +9931,7 @@ msgid "Database:" msgstr "資料庫:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "資料:" @@ -10022,7 +10025,7 @@ msgid "Data creation options" msgstr "資料建立選項" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "資料表新增前先清除舊資料" @@ -10105,7 +10108,7 @@ msgstr "您的資料庫使用了函數(Function);" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "別名匯出可能無法在所有的情況下正常運作。" @@ -10149,52 +10152,52 @@ msgstr "使用中" msgid "It appears your database uses views;" msgstr "您的資料庫使用了檢視表(View);" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "已匯出資料表的限制(Constraint)" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "資料表的 Constraints" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "已匯出資料表的索引" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "資料表索引" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "在匯出的資料表使用 AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "使用資料表 AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME 類型表" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "表的關聯" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "您的資料表使用了觸發(Trigger);" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "將視表 %s 結構匯出成資料表" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "讀取資料錯誤:" @@ -10244,15 +10247,15 @@ msgstr "" msgid "Column names: " msgstr "欄位名稱: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "匯入 CSV 檔案 %s 時有無效參數" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10261,18 +10264,18 @@ msgstr "" "無效欄位 (%s)!請檢查欄位名稱是否拼寫正確,使用半角逗號分隔,並且不要用引號括" "起。" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "CSV 輸入的第 %d 行格式有錯。" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "CSV 輸入的第 %d 行欄位數有錯。" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "該外掛程式不支援匯入檔案!" @@ -10280,7 +10283,7 @@ msgstr "該外掛程式不支援匯入檔案!" msgid "MediaWiki Table" msgstr "MediaWiki 表" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "mediawiki 輸入在此行格式錯誤:
%s." @@ -10293,15 +10296,15 @@ msgstr "匯入百分數爲小數 (如: 12.00% 將被匯入爲 .12)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "匯入貨幣 (如: $5.00 將被匯入爲 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:160 +#: libraries/plugins/import/ImportXml.php:119 +#: libraries/plugins/import/ImportXml.php:184 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "該 XML 檔案有錯誤或者不完整。請修復錯誤後重試。" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:171 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "無法解析 OpenOffice 表格!" @@ -10312,23 +10315,23 @@ msgstr "" "href=\"http://zh.wikipedia.org/wiki/Shapefile\" target=\"_blank\">Shape " "File" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "在匯入 ESRI Shapefile 時發生錯誤: 「%s」。" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "您嘗試匯入無效的檔案或檔案內的資料不正確!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Spatial 擴充套件不支援「%s」ESRI 類型。" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "匯入的檔案中沒有任何資料!" @@ -13207,15 +13210,11 @@ msgstr "預期要有 %1$d 個數值,但只找到 %2$d 個。" msgid "An opening bracket followed by a set of values was expected." msgstr "預期要於數值之後接著開始括號。" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "預期要有開始括號。" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "預期要有逗號或者結束括號" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "預期要有逗號或者結束括號。" @@ -13228,17 +13227,18 @@ msgstr "預期要有結束括號。" msgid "Unrecognized data type." msgstr "預期之外的資料類型。" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "已於前面找到別名。" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "預期之外的句點。" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "預期要有別名。" @@ -13256,19 +13256,19 @@ msgstr "預期要有偏移量(Offset)。" msgid "This option conflicts with \"%1$s\"." msgstr "此選項與 \"%1$s\" 發生衝突。" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "預期要有舊的資料表名稱。" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "預期要有 \"TO\" 關鍵字。" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "預期要有新的資料表名稱。" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "預期要有重新命名的操作。" @@ -13294,15 +13294,15 @@ msgstr "預期要於結束使用括號 %1$s。" msgid "Variable name was expected." msgstr "預期要有變數名稱。" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "預期之外的陳述句開頭。" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "無法辨識的陳述句類型。" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "前面未開啟交易(Transaction)模式。" @@ -13323,15 +13323,15 @@ msgstr "找到新的陳述句,但與前一個陳述句之間未加入間隔符 msgid "Unrecognized keyword." msgstr "無法辨識的關鍵字。" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "預期要有實體名稱。" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "預期要至少一個欄位定義。" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "預期要使用 \"RETURNS\" 關鍵字。" @@ -14005,7 +14005,7 @@ msgstr "檢視資料表結構的匯出資料" msgid "Invalid table name" msgstr "無效的資料表名稱" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "列:%1$s,欄:%2$s,錯誤:%3$s" @@ -14945,7 +14945,7 @@ msgid "at beginning of table" msgstr "於資料表開始" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "分區" @@ -14984,7 +14984,7 @@ msgstr "已做分區依:" msgid "Edit partitioning" msgstr "刪除分區" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "編輯檢視表" @@ -15101,11 +15101,11 @@ msgstr "檢視表名稱" msgid "Column names" msgstr "欄位名稱" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "重新命名檢視表為" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "刪除檢視表 (DROP)" @@ -16277,6 +16277,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 目前設定為 0" +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "預期要有逗號或者結束括號" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" From 99ba940ed06cccdbc598fa325ea28347998f08d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 11:49:49 +0100 Subject: [PATCH 19/42] Correct gender for bookmarks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- po/cs.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/cs.po b/po/cs.po index 6fd6b143c6..52f4848c7e 100644 --- a/po/cs.po +++ b/po/cs.po @@ -2986,11 +2986,11 @@ msgstr[2] "Celkem %d záložek" #: libraries/Console.php:108 msgid "private" -msgstr "soukromé" +msgstr "soukromá" #: libraries/Console.php:112 libraries/bookmark.lib.php:94 msgid "shared" -msgstr "sdílený" +msgstr "sdílená" #. l10n: First parameter will be replaced with the translation #. for Total and the number of bookmarks, second one with the From a14e0af554bcdafdb8f8f86e1aabc617775dd9d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 11:53:17 +0100 Subject: [PATCH 20/42] Simplify and improve message about listing bookmarks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The string concatenation makes it really poor for translating, usually leading to sentences which do not make sense. Signed-off-by: Michal Čihař --- libraries/Console.php | 24 +++--------------------- 1 file changed, 3 insertions(+), 21 deletions(-) diff --git a/libraries/Console.php b/libraries/Console.php index b00a2c6352..7ce772c947 100644 --- a/libraries/Console.php +++ b/libraries/Console.php @@ -95,32 +95,14 @@ class Console $output .= '
'; $count_bookmarks = count($bookmarks); if ($count_bookmarks > 0) { - $bookmarks_message = sprintf( + $output .= sprintf( _ngettext( - 'Total %d bookmark', - 'Total %d bookmarks', + 'Showing %1$d bookmark (both private and shared)', + 'Showing %1$d bookmarks (both private and shared)', $count_bookmarks ), $count_bookmarks ); - $private_message = sprintf( - '%1$s', - __('private') - ); - $shared_message = sprintf( - '%1$s', - __('shared') - ); - $output .= sprintf( - /* l10n: First parameter will be replaced with the translation - for Total and the number of bookmarks, second one with the - translation for private and the third one, with the translation - for shared */ - __('%1$s, %2$s and %3$s bookmarks included'), - $bookmarks_message, - $private_message, - $shared_message - ); } else { $output .= __('No bookmarks'); } From f97c3081fe9673b8945d75df2a37af81e0667e4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 11:55:42 +0100 Subject: [PATCH 21/42] Add missing include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- scripts/advisor2po | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/advisor2po b/scripts/advisor2po index bfffb3860f..445fc11b13 100644 --- a/scripts/advisor2po +++ b/scripts/advisor2po @@ -50,6 +50,7 @@ function print_message($idx) { } define('PHPMYADMIN', 1); +require_once 'libraries/vendor_config.php'; require_once 'libraries/autoloader.php'; require_once 'libraries/core.lib.php'; From 1f26e895796feff81a239ca4fd644ecd9f2e6de3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 11:56:15 +0100 Subject: [PATCH 22/42] Update po files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [CI skip] Signed-off-by: Michal Čihař --- po/af.po | 139 +++++++++++++++++++++--------------------- po/ar.po | 151 +++++++++++++++++++++++----------------------- po/az.po | 134 ++++++++++++++++++++-------------------- po/be.po | 142 +++++++++++++++++++++---------------------- po/be@latin.po | 142 +++++++++++++++++++++---------------------- po/bg.po | 134 ++++++++++++++++++++-------------------- po/bn.po | 139 +++++++++++++++++++++--------------------- po/br.po | 139 +++++++++++++++++++++--------------------- po/brx.po | 119 ++++++++++++++++-------------------- po/bs.po | 142 +++++++++++++++++++++---------------------- po/ca.po | 134 ++++++++++++++++++++-------------------- po/ckb.po | 139 +++++++++++++++++++++--------------------- po/cs.po | 137 +++++++++++++++++++++-------------------- po/cy.po | 143 +++++++++++++++++++++---------------------- po/da.po | 134 ++++++++++++++++++++-------------------- po/de.po | 134 ++++++++++++++++++++-------------------- po/el.po | 134 ++++++++++++++++++++-------------------- po/en_GB.po | 139 +++++++++++++++++++++--------------------- po/eo.po | 119 ++++++++++++++++-------------------- po/es.po | 134 ++++++++++++++++++++-------------------- po/et.po | 134 ++++++++++++++++++++-------------------- po/eu.po | 139 +++++++++++++++++++++--------------------- po/fa.po | 139 +++++++++++++++++++++--------------------- po/fi.po | 134 ++++++++++++++++++++-------------------- po/fr.po | 134 ++++++++++++++++++++-------------------- po/fy.po | 119 ++++++++++++++++-------------------- po/gl.po | 134 ++++++++++++++++++++-------------------- po/gu.po | 119 ++++++++++++++++-------------------- po/he.po | 139 +++++++++++++++++++++--------------------- po/hi.po | 139 +++++++++++++++++++++--------------------- po/hr.po | 142 +++++++++++++++++++++---------------------- po/hu.po | 134 ++++++++++++++++++++-------------------- po/hy.po | 134 ++++++++++++++++++++-------------------- po/ia.po | 134 ++++++++++++++++++++-------------------- po/id.po | 131 ++++++++++++++++++++-------------------- po/it.po | 134 ++++++++++++++++++++-------------------- po/ja.po | 136 ++++++++++++++++++++--------------------- po/ka.po | 128 ++++++++++++++++++--------------------- po/kk.po | 131 +++++++++++++++++++--------------------- po/km.po | 136 ++++++++++++++++++++--------------------- po/kn.po | 119 ++++++++++++++++-------------------- po/ko.po | 128 +++++++++++++++++++-------------------- po/ksh.po | 119 ++++++++++++++++-------------------- po/ky.po | 119 ++++++++++++++++-------------------- po/li.po | 119 ++++++++++++++++-------------------- po/lt.po | 142 +++++++++++++++++++++---------------------- po/lv.po | 142 +++++++++++++++++++++---------------------- po/mk.po | 139 +++++++++++++++++++++--------------------- po/ml.po | 119 ++++++++++++++++-------------------- po/mn.po | 139 +++++++++++++++++++++--------------------- po/ms.po | 136 ++++++++++++++++++++--------------------- po/nb.po | 134 ++++++++++++++++++++-------------------- po/ne.po | 119 ++++++++++++++++-------------------- po/nl.po | 134 ++++++++++++++++++++-------------------- po/pa.po | 119 ++++++++++++++++-------------------- po/phpmyadmin.pot | 119 ++++++++++++++++-------------------- po/pl.po | 137 +++++++++++++++++++++-------------------- po/pt.po | 134 ++++++++++++++++++++-------------------- po/pt_BR.po | 134 ++++++++++++++++++++-------------------- po/ro.po | 137 +++++++++++++++++++++-------------------- po/ru.po | 137 +++++++++++++++++++++-------------------- po/si.po | 139 +++++++++++++++++++++--------------------- po/sk.po | 137 +++++++++++++++++++++-------------------- po/sl.po | 140 +++++++++++++++++++++--------------------- po/sq.po | 134 ++++++++++++++++++++-------------------- po/sr.po | 142 +++++++++++++++++++++---------------------- po/sr@latin.po | 142 +++++++++++++++++++++---------------------- po/sv.po | 134 ++++++++++++++++++++-------------------- po/ta.po | 134 ++++++++++++++++++++-------------------- po/te.po | 133 +++++++++++++++++++--------------------- po/th.po | 136 ++++++++++++++++++++--------------------- po/tk.po | 119 ++++++++++++++++-------------------- po/tr.po | 134 ++++++++++++++++++++-------------------- po/tt.po | 136 ++++++++++++++++++++--------------------- po/ug.po | 136 ++++++++++++++++++++--------------------- po/uk.po | 137 +++++++++++++++++++++-------------------- po/ur.po | 139 +++++++++++++++++++++--------------------- po/uz.po | 137 ++++++++++++++++++++--------------------- po/uz@latin.po | 136 ++++++++++++++++++++--------------------- po/vi.po | 131 ++++++++++++++++++++-------------------- po/vls.po | 119 ++++++++++++++++-------------------- po/zh_CN.po | 131 ++++++++++++++++++++-------------------- po/zh_TW.po | 131 ++++++++++++++++++++-------------------- 83 files changed, 5361 insertions(+), 5719 deletions(-) diff --git a/po/af.po b/po/af.po index b4d1cb7b3a..3fdd06e15b 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2015-10-15 11:30+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Afrikaans $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/ar.po b/po/ar.po index 88dafb867e..e62064c200 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2015-10-15 11:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Arabic \n" "Language-Team: Azerbaijani \n" "Language-Team: Belarusian $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/be@latin.po b/po/be@latin.po index 535a44c871..79f09de2bc 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2015-10-15 11:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Belarusian (latin) $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/bg.po b/po/bg.po index 7f50e96f3a..4fa1c632c4 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2015-06-28 13:36+0200\n" "Last-Translator: Valter Georgiev \n" "Language-Team: Bulgarian \n" "Language-Team: Bengali \n" "Language-Team: Breton $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/brx.po b/po/brx.po index 2628df9dd5..953a257d89 100644 --- a/po/brx.po +++ b/po/brx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2015-09-04 09:33+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bodo \n" "Language-Team: Bosnian $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/ca.po b/po/ca.po index 6df3ec05fb..0eedbdd55e 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2016-02-11 23:11+0000\n" "Last-Translator: Xavier Navarro \n" "Language-Team: Catalan >" @@ -4796,6 +4779,10 @@ msgstr "per hora" msgid "per day" msgstr "per dia" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "compartit" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Cerca:" @@ -16979,6 +16966,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "{concurrent_insert} està establert a 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Total %d desat" +#~ msgstr[1] "Total %d desats" + +#~ msgid "private" +#~ msgstr "privat" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s i %3$s desats inclosos" + #~ msgid "A comma or a closing bracket was expected" #~ msgstr "S'esperava una coma o un claudàtor de tancament" diff --git a/po/ckb.po b/po/ckb.po index d8dac981ab..888b5c5932 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2015-11-20 15:47+0000\n" "Last-Translator: Dana Akram \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: Basque $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/fa.po b/po/fa.po index f23c625599..c19638a0ad 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2015-11-21 11:45+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Persian \n" "Language-Team: Finnish \n" "Language-Team: French \n" "Language-Team: Frisian \n" "Language-Team: Galician \n" "Language-Team: Gujarati \n" "Language-Team: Hebrew \n" "Language-Team: Hindi $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/hr.po b/po/hr.po index 91e89a7252..6bf47f5475 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2015-10-15 11:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Croatian $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/hu.po b/po/hu.po index e41de649ce..8aab9a977e 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2015-10-15 11:09+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Hungarian \n" "Language-Team: Armenian \n" "Language-Team: Interlingua \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: Limburgish \n" "Language-Team: Lithuanian $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/lv.po b/po/lv.po index 17ec009706..ef1e347fe4 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2016-01-23 11:11+0000\n" "Last-Translator: Arturs Nikolajevs \n" "Language-Team: Latvian $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/mk.po b/po/mk.po index 1ba36f1c3c..0dcd536744 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2015-10-15 11:23+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Macedonian $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/ml.po b/po/ml.po index a1f7c8f599..8794839fc0 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2015-10-15 11:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malayalam \n" "Language-Team: Mongolian $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/ms.po b/po/ms.po index c3e82941be..5f78293157 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2015-10-15 11:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malay $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/nb.po b/po/nb.po index 85515d6284..6fa09b3767 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\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: Nepali \n" "Language-Team: Dutch \n" "Language-Team: Punjabi \n" "Language-Team: LANGUAGE \n" @@ -1760,7 +1760,7 @@ msgstr "" msgid "Show query box" msgstr "" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 #: libraries/Index.php:721 libraries/Util.php:732 libraries/Util.php:1242 #: libraries/Util.php:3710 libraries/Util.php:3711 @@ -2413,7 +2413,7 @@ msgstr "" msgid "Hide arguments" msgstr "" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:708 libraries/Console.php:306 msgid "Time taken:" msgstr "" @@ -2831,19 +2831,19 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2863,74 +2863,57 @@ msgstr "" #: libraries/Console.php:100 #, possible-php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, possible-php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1328 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1328 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "" -#: libraries/Console.php:243 libraries/Console.php:373 +#: libraries/Console.php:225 libraries/Console.php:355 #: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 #: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 @@ -2960,121 +2943,121 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "" -#: libraries/Console.php:339 libraries/Util.php:1298 +#: libraries/Console.php:321 libraries/Util.php:1298 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "" @@ -4546,6 +4529,10 @@ msgstr "" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "" diff --git a/po/pl.po b/po/pl.po index f70d0c96a1..d219e393bf 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2015-12-31 14:50+0000\n" "Last-Translator: Sebastian Weremczuk \n" "Language-Team: Polish \n" "Language-Team: Portuguese \n" "Language-Team: Portuguese (Brazil) \n" "Language-Team: Romanian $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/ru.po b/po/ru.po index 153ea5bffb..c9b46d83e1 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2015-12-09 12:57+0000\n" "Last-Translator: Roman Imankulov \n" "Language-Team: Russian \n" "Language-Team: Sinhala \n" "Language-Team: Slovak \n" "Language-Team: Slovenian \n" "Language-Team: Albanian \n" "Language-Team: Serbian $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/sr@latin.po b/po/sr@latin.po index 82a2dd3654..aa17bfda90 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2015-10-15 11:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian (latin) $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/sv.po b/po/sv.po index 9e0e26adb1..a820a27b22 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2015-11-12 10:41+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Swedish \n" "Language-Team: Tamil வரிசை" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "எண்ணிக்கை" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute" msgid "Execution order" msgstr "செயலாக்குக" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Order" msgid "Order by:" msgstr "ஏனையது->வரிசை" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "SQL வினவல்கள்" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "SQL வினவல்கள்" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show create" msgid "Show trace" msgstr "உருவாக்கத்தை காட்டு" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide Panel" msgid "Hide trace" msgstr "பலகத்தை மறை" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Count" msgid "Count:" msgstr "எண்ணிக்கை" -#: libraries/Console.php:339 libraries/Util.php:1298 +#: libraries/Console.php:321 libraries/Util.php:1298 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "புதுப்பி" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "சேர்க்க" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "புத்தகக்குறி சேர்க்க" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "சிட்டை" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "இலக்கு தரவுத்தளம்" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "இப்புத்தகக்குறியை பகிர்க" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "இயல்நிலையை அமைக்க" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "எப்போதும் வினவல் தகவல்களை விரிக்க" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "துவக்கத்தின் போது வினவல் வரலாற்றை காண்பி" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "தற்போது உலவும் வினவலை காண்பிக்க" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied database" msgid "Switch to dark theme" @@ -4835,6 +4818,10 @@ msgstr "ஒவ்வொரு மணிக்கும்" msgid "per day" msgstr "ஒரு நாளைக்கு" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "பகிரப்பட்டது" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "தேடுக:" @@ -16222,6 +16209,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "மொத்தம் %d புத்தகக்குறி" +#~ msgstr[1] "மொத்தம் %d புத்தகக்குறிகள்" + +#~ msgid "private" +#~ msgstr "தனிப்பட்ட" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s மற்றும் %3$s புத்தகக்குறிகள் சேர்க்கப்பட்டன" + #~ msgid "Replace table prefix:" #~ msgstr "அட்டவணை முன்னொட்டை பதிலிடு:" diff --git a/po/te.po b/po/te.po index 522183d99d..336ebcf913 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2015-10-15 11:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Telugu \n" "Language-Team: Thai $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/tk.po b/po/tk.po index 5042fe39bb..4f7da9a6ee 100644 --- a/po/tk.po +++ b/po/tk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2013-05-07 17:12+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Turkmen \n" "Language-Team: Turkish \n" "Language-Team: Tatar \n" "Language-Team: Uighur $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/uk.po b/po/uk.po index 4e67b31568..807c90737d 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2015-10-15 11:19+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Ukrainian \n" "Language-Team: Urdu $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/uz.po b/po/uz.po index 2d011ab9f3..9855953da9 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2015-10-15 11:39+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/uz@latin.po b/po/uz@latin.po index d8afc3face..97b06ae2a0 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2015-12-29 19:19+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek (latin) $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/vi.po b/po/vi.po index a589275d58..21c8556553 100644 --- a/po/vi.po +++ b/po/vi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:55+0100\n" "PO-Revision-Date: 2016-01-13 15:59+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Vietnamese \n" "Language-Team: West Flemish \n" "Language-Team: Chinese (China) \n" "Language-Team: Chinese (Taiwan) Date: Wed, 17 Feb 2016 11:57:25 +0100 Subject: [PATCH 23/42] Update po files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [CI skip] Signed-off-by: Michal Čihař --- po/af.po | 1455 ++++++++++++++++++++++---------------------- po/ar.po | 1460 ++++++++++++++++++++++---------------------- po/az.po | 1439 ++++++++++++++++++++++--------------------- po/be.po | 1456 ++++++++++++++++++++++---------------------- po/be@latin.po | 1456 ++++++++++++++++++++++---------------------- po/bg.po | 1439 ++++++++++++++++++++++--------------------- po/bn.po | 1444 ++++++++++++++++++++++--------------------- po/br.po | 1444 ++++++++++++++++++++++--------------------- po/brx.po | 1427 ++++++++++++++++++++++--------------------- po/bs.po | 1459 ++++++++++++++++++++++---------------------- po/ca.po | 1451 ++++++++++++++++++++++---------------------- po/ckb.po | 1446 +++++++++++++++++++++---------------------- po/cs.po | 1447 ++++++++++++++++++++++---------------------- po/cy.po | 1465 ++++++++++++++++++++++---------------------- po/da.po | 1439 ++++++++++++++++++++++--------------------- po/de.po | 1443 +++++++++++++++++++++---------------------- po/el.po | 1447 ++++++++++++++++++++++---------------------- po/en_GB.po | 1444 ++++++++++++++++++++++--------------------- po/eo.po | 1427 ++++++++++++++++++++++--------------------- po/es.po | 1442 +++++++++++++++++++++---------------------- po/et.po | 1447 ++++++++++++++++++++++---------------------- po/eu.po | 1458 ++++++++++++++++++++++---------------------- po/fa.po | 1441 ++++++++++++++++++++++--------------------- po/fi.po | 1480 ++++++++++++++++++++++----------------------- po/fr.po | 1446 +++++++++++++++++++++---------------------- po/fy.po | 1427 ++++++++++++++++++++++--------------------- po/gl.po | 1439 ++++++++++++++++++++++--------------------- po/gu.po | 1427 ++++++++++++++++++++++--------------------- po/he.po | 1458 ++++++++++++++++++++++---------------------- po/hi.po | 1444 ++++++++++++++++++++++--------------------- po/hr.po | 1448 ++++++++++++++++++++++---------------------- po/hu.po | 1440 +++++++++++++++++++++---------------------- po/hy.po | 1439 ++++++++++++++++++++++--------------------- po/ia.po | 1444 ++++++++++++++++++++++--------------------- po/id.po | 1435 ++++++++++++++++++++++--------------------- po/it.po | 1442 +++++++++++++++++++++---------------------- po/ja.po | 1440 ++++++++++++++++++++++--------------------- po/ka.po | 1429 ++++++++++++++++++++++--------------------- po/kk.po | 1433 ++++++++++++++++++++++--------------------- po/km.po | 1437 ++++++++++++++++++++++--------------------- po/kn.po | 1427 ++++++++++++++++++++++--------------------- po/ko.po | 1436 ++++++++++++++++++++++--------------------- po/ksh.po | 1428 ++++++++++++++++++++++--------------------- po/ky.po | 1427 ++++++++++++++++++++++--------------------- po/li.po | 1427 ++++++++++++++++++++++--------------------- po/lt.po | 1448 ++++++++++++++++++++++---------------------- po/lv.po | 1448 ++++++++++++++++++++++---------------------- po/mk.po | 1463 ++++++++++++++++++++++---------------------- po/ml.po | 1441 ++++++++++++++++++++++--------------------- po/mn.po | 1458 ++++++++++++++++++++++---------------------- po/ms.po | 1451 ++++++++++++++++++++++---------------------- po/nb.po | 1439 ++++++++++++++++++++++--------------------- po/ne.po | 1427 ++++++++++++++++++++++--------------------- po/nl.po | 1446 +++++++++++++++++++++---------------------- po/pa.po | 1441 ++++++++++++++++++++++--------------------- po/phpmyadmin.pot | 1427 ++++++++++++++++++++++--------------------- po/pl.po | 1443 +++++++++++++++++++++---------------------- po/pt.po | 1439 ++++++++++++++++++++++--------------------- po/pt_BR.po | 1467 ++++++++++++++++++++++---------------------- po/ro.po | 1443 +++++++++++++++++++++---------------------- po/ru.po | 1443 +++++++++++++++++++++---------------------- po/si.po | 1444 ++++++++++++++++++++++--------------------- po/sk.po | 1443 +++++++++++++++++++++---------------------- po/sl.po | 1459 ++++++++++++++++++++++---------------------- po/sq.po | 1442 +++++++++++++++++++++---------------------- po/sr.po | 1470 ++++++++++++++++++++++---------------------- po/sr@latin.po | 1448 ++++++++++++++++++++++---------------------- po/sv.po | 1442 +++++++++++++++++++++---------------------- po/ta.po | 1439 ++++++++++++++++++++++--------------------- po/te.po | 1441 ++++++++++++++++++++++--------------------- po/th.po | 1440 ++++++++++++++++++++++--------------------- po/tk.po | 1441 ++++++++++++++++++++++--------------------- po/tr.po | 1447 ++++++++++++++++++++++---------------------- po/tt.po | 1451 ++++++++++++++++++++++---------------------- po/ug.po | 1448 ++++++++++++++++++++++---------------------- po/uk.po | 1443 +++++++++++++++++++++---------------------- po/ur.po | 1444 ++++++++++++++++++++++--------------------- po/uz.po | 1450 ++++++++++++++++++++++---------------------- po/uz@latin.po | 1448 ++++++++++++++++++++++---------------------- po/vi.po | 1439 +++++++++++++++++++++---------------------- po/vls.po | 1427 ++++++++++++++++++++++--------------------- po/zh_CN.po | 1435 ++++++++++++++++++++++--------------------- po/zh_TW.po | 1438 +++++++++++++++++++++---------------------- 83 files changed, 59763 insertions(+), 60069 deletions(-) diff --git a/po/af.po b/po/af.po index feabe367f6..3b0b5247b3 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:30+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Afrikaans " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Stoor as leer (file)" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Herstel" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Kies Alles" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Daar ontbreek 'n waarde in die vorm !" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "ten minste een van die woorde" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Index" msgid "Add index" msgstr "Indeks" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Index" msgid "Edit index" msgstr "Indeks" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format msgid "Add %s column(s) to index" msgstr "Voeg 'n nuwe veld by" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Bediener weergawe" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Bediener weergawe" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Velde omring met" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy msgid "Please select column(s) for the index." msgstr "Voeg 'n nuwe veld by" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Jy moet ten minste een Kolom kies om te vertoon" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "in navraag" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Start" msgid "Matched rows:" msgstr "Sa" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL-stelling" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Waarde" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Die gasheer naam is leeg!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Die gebruiker naam ontbreek!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Die wagwoord is leeg!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Die wagwoorde is verskillend!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy msgid "Template was created." msgstr "Tabel %s is verwyder" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Die profiel is opgedateer." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Die ry is verwyder" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1215,171 +1218,171 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 #, fuzzy #| msgid "Space usage" msgid "Query cache efficiency" msgstr "Spasie verbruik" -#: js/messages.php:177 +#: js/messages.php:179 #, fuzzy #| msgid "Space usage" msgid "Query cache usage" msgstr "Spasie verbruik" -#: js/messages.php:178 +#: js/messages.php:180 #, fuzzy #| msgid "Space usage" msgid "Query cache used" msgstr "Spasie verbruik" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "Gebruik" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 #, fuzzy msgid "Total memory" msgstr "totaal" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy msgid "Total swap" msgstr "totaal" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Spasie verbruik" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s tabel(le)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 #, fuzzy msgid "Questions" msgstr "Operasies" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Algemene verwantskap funksies" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1391,47 +1394,47 @@ msgstr "" msgid "None" msgstr "Geen" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1439,150 +1442,150 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Stoor as leer (file)" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Beskikbaar" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Onbeskikbaar" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Algemene verwantskap funksies" -#: js/messages.php:254 +#: js/messages.php:256 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Algemene verwantskap funksies" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy msgid "Chart title" msgstr "Geen tabelle" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 #, fuzzy msgid "Analysing logs" msgstr "Local" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 #, fuzzy msgid "Jump to Log table" msgstr "Geen databasisse" -#: js/messages.php:285 +#: js/messages.php:287 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Geen databasisse" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Verduidelik SQL" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1590,7 +1593,7 @@ msgstr "Verduidelik SQL" msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1600,94 +1603,94 @@ msgstr "Status" msgid "Time" msgstr "" -#: js/messages.php:293 +#: js/messages.php:295 #, fuzzy msgid "Total time:" msgstr "totaal" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "SQL resultaat" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tabel" -#: js/messages.php:296 +#: js/messages.php:298 #, fuzzy msgid "Chart" msgstr "Geen tabelle" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 #, fuzzy msgid "Log table filter options" msgstr "Databasis statistieke" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 #, fuzzy #| msgid "Number of rows per page" msgid "Sum of grouped rows:" msgstr "Hoeveelheid rye per bladsy" -#: js/messages.php:306 +#: js/messages.php:308 #, fuzzy msgid "Total:" msgstr "totaal" -#: js/messages.php:308 +#: js/messages.php:310 #, fuzzy msgid "Loading logs" msgstr "Local" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 #, fuzzy msgid "Reload page" msgstr "Hernoem tabel na" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1697,71 +1700,71 @@ msgstr "" msgid "Import" msgstr "Export" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Verander Navraag" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 -msgid "Issue" -msgstr "" - -#: js/messages.php:338 -#, fuzzy -#| msgid "Documentation" -msgid "Recommendation" -msgstr "Dokumentasie" - #: js/messages.php:339 -msgid "Rule details" +msgid "Issue" msgstr "" #: js/messages.php:340 #, fuzzy #| msgid "Documentation" -msgid "Justification" +msgid "Recommendation" msgstr "Dokumentasie" #: js/messages.php:341 -msgid "Used variable / formula" +msgid "Rule details" msgstr "" #: js/messages.php:342 +#, fuzzy +#| msgid "Documentation" +msgid "Justification" +msgstr "Dokumentasie" + +#: js/messages.php:343 +msgid "Used variable / formula" +msgstr "" + +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Nie goeie parameters nie!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1773,70 +1776,70 @@ msgstr "Nie goeie parameters nie!" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Algemene verwantskap funksies" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy msgid "Loading…" msgstr "Local" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "SQL result" msgid "Processing request" msgstr "SQL resultaat" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Query" msgid "Request failed!!" msgstr "Navraag dmv Voorbeeld" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Inside table(s):" msgid "Dropping column" msgstr "Binne tabel(le):" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy msgid "Adding primary key" msgstr "Voeg 'n nuwe veld by" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1846,65 +1849,65 @@ msgstr "Voeg 'n nuwe veld by" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy msgid "Renaming databases" msgstr "Hernoem tabel na" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy msgid "Copying database" msgstr "Geen databasisse" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Soek" -#: js/messages.php:384 +#: js/messages.php:386 #, fuzzy msgid "Hide search results" msgstr "SQL-stelling" -#: js/messages.php:385 +#: js/messages.php:387 #, fuzzy msgid "Show search results" msgstr "SQL-stelling" -#: js/messages.php:386 +#: js/messages.php:388 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Beloer Data" -#: js/messages.php:387 +#: js/messages.php:389 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "Verwyder" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1920,47 +1923,47 @@ msgstr "" msgid "Export" msgstr "Export" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Values for column %s" msgstr "Hoeveelheid rye per bladsy" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Voeg 'n nuwe gebruiker by" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 #, fuzzy msgid "Hide query box" msgstr "SQL-stelling" -#: js/messages.php:408 +#: js/messages.php:410 #, fuzzy msgid "Show query box" msgstr "SQL-stelling" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1970,7 +1973,7 @@ msgstr "SQL-stelling" msgid "Edit" msgstr "Verander" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1981,94 +1984,94 @@ msgstr "Verander" msgid "Delete" msgstr "Verwyder" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Disable" msgid "Variable %d:" msgstr "Onbeskikbaar" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "Column names" msgid "Column selector" msgstr "Kolom name" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Soek in databasis" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Kenmerke" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 #, 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:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Naspeur verslag" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2076,86 +2079,86 @@ msgstr "" msgid "End of step" msgstr "By Einde van Tabel" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 #, fuzzy #| msgid "None" msgid "Done" msgstr "Geen" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Create table on database %s" msgid "Create the following table" msgstr "Skep 'n nuwe tabel op databasis %s" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2165,192 +2168,192 @@ msgstr "" msgid "Save" msgstr "Stoor" -#: js/messages.php:472 +#: js/messages.php:474 #, fuzzy msgid "Hide search criteria" msgstr "SQL-stelling" -#: js/messages.php:473 +#: js/messages.php:475 #, fuzzy msgid "Show search criteria" msgstr "SQL-stelling" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Soek" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Kolom name" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Kolom name" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL-stelling" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL-stelling" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy msgid "Data point content" msgstr "Tabel kommentaar" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignoreer" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Lyne beeindig deur" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner ring %d:" msgid "Inner ring" msgstr "Binne kring %d:" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Buite kring:" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Bladsy nommer:" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2358,237 +2361,237 @@ msgstr "Kies Alles" msgid "Open page" msgstr "Gebruik" -#: js/messages.php:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Kies Alles" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 #, 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:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Display PDF schema" msgid "Export relational schema" msgstr "Vertoon PDF skema" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Veranderinge is gestoor" -#: js/messages.php:554 +#: js/messages.php:556 #, 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:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Stuur" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Kolom name" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Wys alles" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Lines terminated by" msgid "Original length" msgstr "Lyne beeindig deur" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy msgid "Import status" msgstr "Export" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Kies Tabelle" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy msgid "Go to link:" msgstr "Geen databasisse" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Kolom name" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Verander wagwoord" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 #, fuzzy msgid "Generate" msgstr "Voortgebring deur" -#: js/messages.php:628 +#: js/messages.php:630 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Ma" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Wys alles" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indekse" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Wys ruitgebied" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Indexes" msgid "Link with main panel" msgstr "Indekse" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Indexes" msgid "Unlink from main panel" msgstr "Indekse" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2596,121 +2599,121 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 #, fuzzy msgid "up to date" msgstr "Geen databasisse" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy msgid "Create view" msgstr "Bediener weergawe" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy msgid "Send error report" msgstr "Bediener Keuse" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy msgid "Submit error report" msgstr "Bediener Keuse" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Algemene verwantskap funksies" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy msgid "Show report details" msgstr "Wys tabelle" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoreer" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Wys hierdie navraag weer hier" -#: js/messages.php:700 +#: js/messages.php:702 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Wil jy regtig " -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Tabel kommentaar" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy msgid "Hide arguments" msgstr "SQL-stelling" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2719,37 +2722,37 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy msgid "Copy tables to" msgstr "Geen databasisse" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Replace table data with file" msgid "Add table prefix" msgstr "Vervang tabel data met leer (file)" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Vervang tabel data met leer (file)" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Vervang tabel data met leer (file)" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Vorige" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2757,95 +2760,95 @@ msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 #, fuzzy msgid "Today" msgstr "totaal" -#: js/messages.php:755 +#: js/messages.php:757 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Biner" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:758 +#: js/messages.php:760 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Mei" -#: js/messages.php:760 +#: js/messages.php:762 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:761 +#: js/messages.php:763 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:762 +#: js/messages.php:764 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2853,78 +2856,78 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Des" -#: js/messages.php:801 +#: js/messages.php:803 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "So" -#: js/messages.php:802 +#: js/messages.php:804 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Ma" -#: js/messages.php:803 +#: js/messages.php:805 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Di" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Fr" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2932,201 +2935,201 @@ msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Wo" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Geen" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in gebruik" -#: js/messages.php:873 +#: js/messages.php:875 #, fuzzy #| msgid "Records" msgid "Second" msgstr "Rekords" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Add new field" msgid "Please fix this field" msgstr "Voeg 'n nuwe veld by" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Kies asb. 'n databasis" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 #, 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:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Fout" @@ -3176,34 +3179,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "in query" msgid "Requery" msgstr "in navraag" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3222,90 +3225,71 @@ msgid "Database" msgstr "Databasis" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Search" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Soek" -msgstr[1] "Soek" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "Die boekmerk is verwyder." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "Soek" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "Verduidelik SQL" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Search" msgid "Bookmark" msgstr "Soek" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query" msgid "Query failed" msgstr "Navraag dmv Voorbeeld" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy msgid "SQL Query Console" msgstr "SQL-stelling" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "Skip Validate SQL" msgid "History" msgstr "Ignoreer SQL Validasie" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3323,10 +3307,10 @@ msgstr "Ignoreer SQL Validasie" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 @@ -3334,177 +3318,177 @@ msgstr "Ignoreer SQL Validasie" msgid "Options" msgstr "Operasies" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Search" msgid "Bookmarks" msgstr "Soek" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy msgid "Press Ctrl+Enter to execute query" msgstr "SQL-stelling" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy msgid "Press Enter to execute query" msgstr "SQL-stelling" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Dalend" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Dalend" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column names" msgid "Count" msgstr "Kolom name" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy msgid "Group queries" msgstr "SQL-stelling" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy msgid "Ungroup queries" msgstr "SQL-stelling" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Wys kleur" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Indexes" msgid "Hide trace" msgstr "Indekse" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column names" msgid "Count:" msgstr "Kolom name" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "En" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Search" msgid "Add bookmark" msgstr "Soek" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "Etiket" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy msgid "Target database" msgstr "Soek in databasis" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Search" msgid "Share this bookmark" msgstr "Soek" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Default" msgid "Set default" msgstr "Verstekwaarde (default)" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy msgid "Show query history at start" msgstr "SQL-stelling" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3879,7 +3863,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Jou SQL-navraag is suksesvol uitgevoer." @@ -4006,15 +3990,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4081,8 +4065,8 @@ msgid "Keyname" msgstr "Sleutelnaam" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4133,13 +4117,13 @@ msgstr "Indeks %s is verwyder." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Verwyder" @@ -4237,7 +4221,7 @@ msgstr "Regte" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operasies" @@ -4252,7 +4236,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4654,11 +4638,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -4927,21 +4911,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "totaal" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4952,38 +4936,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL het gepraat: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Verduidelik SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Ignoreer SQL Verduideliking" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Sonder PHP Kode" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Doen Navraag" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Skep PHP Kode" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5075,6 +5059,10 @@ msgstr "" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5193,41 +5181,41 @@ msgstr "Voeg 'n nuwe veld by" msgid "Attributes" msgstr "Kenmerke" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format msgid "Server %d" msgstr "Bediener Keuse" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5235,24 +5223,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5949,7 +5937,7 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -5957,7 +5945,7 @@ msgstr "Velde omring met" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -5977,14 +5965,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Lyne beeindig deur" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6592,7 +6580,7 @@ msgid "Column names in first row" msgstr "Kolom name" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -8060,7 +8048,7 @@ msgid "Table %s has been emptied." msgstr "Tabel %s is leeg gemaak." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format msgid "View %s has been dropped." msgstr "Veld %s is verwyder" @@ -8196,8 +8184,8 @@ msgid "No data to display" msgstr "Geen databasisse" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8241,57 +8229,57 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "Databasis %s is verwyder." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query" msgid "Query error" msgstr "Navraag dmv Voorbeeld" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Verander" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Volteks" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -8301,7 +8289,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Geen verandering" @@ -9085,55 +9073,55 @@ msgstr "MySQL het niks teruggegee nie (dus nul rye)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Geen databasisse" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Geen databasisse" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Slegs struktuur" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9183,56 +9171,56 @@ msgstr "Of" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Voeg by" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Voeg by as 'n nuwe ry" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Terug na vorige bladsy" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Voeg 'n nuwe ry by" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 #, fuzzy msgid "Go back to this page" msgstr "Terug na vorige bladsy" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9244,11 +9232,11 @@ msgstr "" msgid "Value" msgstr "Waarde" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10114,7 +10102,7 @@ msgstr "Herstel tabel" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10130,33 +10118,33 @@ msgid "Delete the table (DROP)" msgstr "Geen databasisse" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 #, fuzzy msgid "Repair" msgstr "Herstel tabel" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10184,37 +10172,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Toets referential integrity:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s is geskuif na %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabel %s is gekopieer na %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Die tabel naam is leeg!" @@ -10395,7 +10383,7 @@ msgstr "Databasis statistieke" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Stort data vir tabel" @@ -10420,14 +10408,14 @@ msgstr "geen Beskrywing" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tabel struktuur vir tabel" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10435,7 +10423,7 @@ msgstr "Slegs struktuur" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10545,7 +10533,7 @@ msgid "Database:" msgstr "Databasis" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10655,7 +10643,7 @@ msgid "Data creation options" msgstr "Databasis statistieke" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10724,7 +10712,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10769,56 +10757,56 @@ msgstr "in gebruik" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "Binne tabel(le):" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Binne tabel(le):" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Slegs struktuur" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10850,7 +10838,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10870,33 +10858,33 @@ msgstr "" msgid "Column names: " msgstr "Kolom name" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10904,28 +10892,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -10935,23 +10923,23 @@ msgstr "Dokumentasie" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10963,7 +10951,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -13857,15 +13845,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "With selected:" @@ -13880,17 +13864,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "With selected:" msgid "An alias was expected." @@ -13912,19 +13897,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -13952,17 +13937,17 @@ msgstr "Tabel %s is verwyder" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "By Begin van Tabel" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13983,17 +13968,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14686,7 +14671,7 @@ msgstr "Sien die storting (skema) van die tabel" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15765,7 +15750,7 @@ msgid "at beginning of table" msgstr "By Begin van Tabel" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy msgid "Partitions" msgstr "Operasies" @@ -15808,7 +15793,7 @@ msgstr "Operasies" msgid "Edit partitioning" msgstr "Drukker mooi (print view)" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -15940,12 +15925,12 @@ msgstr "" msgid "Column names" msgstr "Kolom name" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Hernoem tabel na" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Geen databasisse" @@ -17049,6 +17034,18 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Search" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Soek" +#~ msgstr[1] "Soek" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "Die boekmerk is verwyder." + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/ar.po b/po/ar.po index 5efbc4c43e..3b2170b3a3 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Arabic " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "حفظ كملف" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "إعادة تعيين" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "تحديد الكل" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "يوجد قيمة مفقودة بالنموذج !" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "على الأقل أحد الكلمات" -#: js/messages.php:118 +#: js/messages.php:120 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number!" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:119 +#: js/messages.php:121 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid length!" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "إضافة فهرس" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "حرّر الفهرس" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format #| msgid "Add %d column(s) to index" msgid "Add %s column(s) to index" msgstr "أضف %d عمود/عواميد إلى الفهرس" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "إنشاء إجراء" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "إنشاء إجراء" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Columns enclosed with:" msgid "Composite with:" msgstr "حقل محاط بـ" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %d column(s) to index" msgid "Please select column(s) for the index." msgstr "أضف %d عمود/عواميد إلى الفهرس" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "عليك اختيار عمود واحد على الأقل للعرض" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "في الإستعلام" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "الصفوف المتأثرة:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "استعلام SQL" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "القيمة" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "إسم المستضيف فارغ!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "إسم المستخدم فارغ!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "كلمة المرور فارغة !" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "كلمتا المرور غير متشابهتان !" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "حذف المستخدمين المحددين" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "أغلاق" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template was created." msgstr "%s جدول (جداول)" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "لقد تم تجديد الملف الشخصي." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "لقد تمّ حذف الصّف" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "آخر" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "اتصالات / عمليات" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "فشل قراءة ملف الإعدادات" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1175,167 +1183,167 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "فعالية خابية المسائلة" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "إستعمال خابية المسائلة" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "خابية المسائلة المستعملة" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "إستخدام النظام للمعالج (CPU)" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "ذاكرة النظام" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "المقايدة النظامية" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "متوسط التحميل" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "إجمالي الذاكرة" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "الذاكرة المؤقتة" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "الذاكرة الوسيطة" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "الذاكرة الحرة" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "الذاكرة المستخدمة" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "مجموع المقايدة" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "المقايدة في الخابية" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "المقايدة المستخدمة" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "المقايدة الحرّة" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "بايتات أُرسلت" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "بايتات أُستلمت" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "اتصالات" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "عمليات" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "بايت" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "كيلوبايت" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "ميجابايت" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "جيجابايت" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "تيرابايت" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "بيتابايت" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "إكسابايت" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d جدول/جداول" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "العمليات" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "بيانات سير" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "الإعدادات" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "أضف تخطيط إلى المشبكة" -#: js/messages.php:218 +#: js/messages.php:220 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "فضلا , أضف متغير واحد على الأقل للسلسلة" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1347,47 +1355,47 @@ msgstr "فضلا , أضف متغير واحد على الأقل للسلسلة" msgid "None" msgstr "لا شيء" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "إستئناف المراقبة" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "إيقاف المراقبة" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "بدء التحديث التلقائي" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "وقف التحديث التلقائي" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "(general_log و slow_query_log) مفعلة." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log مفعل." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log مفعل." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "(general_log و slow_query_log) معطلة." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1395,43 +1403,43 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time محددة بـ %d ثانية." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "الإعدادات التالية سوف تفعل عند إعادة تشغيل السيرفر:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "تعيين log_output بـ %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "تفعيل %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "تعطيل %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Set long_query_time to %ds" msgid "Set long_query_time to %d seconds." msgstr "تعيين long_query_time بـ %ds" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1439,98 +1447,98 @@ msgstr "" "لاتستطيع تغير هذه المتغيرات , فضلاً سجل دخولك كمدير أو أتصل بمدير قاعدة " "البيانات." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "تغيير الإعدادات" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "الإعدادات الحالية" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "استورد الملفات" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "الفارق" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "مقسوم على %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "سعرة" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "من السجل البطيء" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "من السجل العام" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "تحليل السجلات" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "تحميل وتحليل السجل . قد يستغرق بعض الوقت." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "ألغ الطلب" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "تم تحميل بيانات سجلّ الوقائع. الإستعلامات المنفذة في الفترة الزمنية هذه:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "قفز لجدول التسجيل" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "لايوجد بيانات" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "تمّ تحليل سجل الوقائع، و لكن لم توجد أي بيانات في إمتداد الزمن هذا." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "جاري التحليل…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "إشرح الخرج" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1538,7 +1546,7 @@ msgstr "إشرح الخرج" msgid "Status" msgstr "الحالة" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1548,82 +1556,82 @@ msgstr "الحالة" msgid "Time" msgstr "وقت" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "مجموع الوقت:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "الجدول" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "الرسم البياني" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "خيارات مرشح جدول السجل" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "مرشح" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "ترشيح الإستعلامات بواسطة word/regexp :" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "مجموعة إستعلامات , تجاهل المتغيرات في جملة WHERE" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "مجموع الصفوف المدخلة:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "المجموع:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "تحميل السجلات" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "فشل تحديث المراقب" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "إعادة تحميل الصفحة" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "الصفوف المتأثرة:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1632,69 +1640,69 @@ msgstr "" msgid "Import" msgstr "استيراد" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "تشكيل مراقب الواردات" -#: js/messages.php:328 +#: js/messages.php:330 #, fuzzy #| msgid "Please select the file you want to import" msgid "Please select the file you want to import." msgstr "الرجاء تحديد الملف الذي تريد استيراده" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "تحليل الإستعلام" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "نظام المرشد" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "الأداء المتوقع" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "قضايا" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "توصية" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "تفاصيل القواعد" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "المصادقة" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "المتغيرات المستعملة" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "إختبار" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "عوامل متغيرة غير جيدة!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1706,74 +1714,74 @@ msgstr "عوامل متغيرة غير جيدة!" msgid "Cancel" msgstr "ألغاء" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "تغيير الإعدادات" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy #| msgid "Loading" msgid "Loading…" msgstr "تحميل" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "معالجة الطلب" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Query type" msgid "Request failed!!" msgstr "نوع الاستعلام" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Error in processing request" msgid "Error in processing request" msgstr "خطأ في معالجة الطلب" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "لا قواعد بيانات محددة." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "إزالة العمود" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "إضافة مفتاح رئيسي" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1783,65 +1791,65 @@ msgstr "إضافة مفتاح رئيسي" msgid "OK" msgstr "موافق" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "إضغط لإغلاق هذا الإشعار" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "أعادة تسمية قاعدة البيانات" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "نسخ قاعدة البيانات" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "تغيير مجموعة المحارف" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "تعطيل التحقق من المفتاح الغريب" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "فشل إحضار الترويسة" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "بحث" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "إخفاء نتائج البحث" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "إظهار نتائج البحث" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "استعراض" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "حذف" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "تعريف الدالة المخزنة يجب أن تحتوي جملة RETURN !" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1857,47 +1865,47 @@ msgstr "تعريف الدالة المخزنة يجب أن تحتوي جملة R msgid "Export" msgstr "تصدير" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "القيم للعمود %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "القيم لعمود جديد" -#: js/messages.php:398 +#: js/messages.php:400 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Enter each value in a separate field." msgstr "أدخل كل قيمة بحقل منفصل" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "إضافة قيمة/قيم %d" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "ملاحظة: إذا كان الملف يحتوي على جداول متعددة , سيتم تجميعها فى جدول واحد." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "إخفاء صندوق الإستعلام" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "إظهار صندوق الإستعلام" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1907,7 +1915,7 @@ msgstr "إظهار صندوق الإستعلام" msgid "Edit" msgstr "تعديل" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1918,96 +1926,96 @@ msgstr "تعديل" msgid "Delete" msgstr "حذف" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d ليس رقم عمود صالح." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "استعرض القيم الغريبة" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "متغير" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "اختيار" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "لايوجد صفوف مختارة" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "بحث في قاعدة البيانات" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "الذاكرة الحرة" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "هل أنت متأكد؟" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "مشاركه" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "إضافة مفتاح رئيسي" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "تم إضافة المفتاح الأساسي في %s" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "تقرير التتبع" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2015,88 +2023,88 @@ msgstr "" msgid "End of step" msgstr "في نهاية الجدول" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "إنتهى" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "تأكيد تبعيات جزئية" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "لا قواعد بيانات محددة." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "خطوة" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "إضافة الصلاحيات على الجدول التالي" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "لا قواعد بيانات محددة." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2106,262 +2114,262 @@ msgstr "لا قواعد بيانات محددة." msgid "Save" msgstr "حفظ" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "إخفاء معايير البحث" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "إظهار معايير البحث" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "بحث في الجدول" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "اسم العمود" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "اسم العمود" -#: js/messages.php:477 +#: js/messages.php:479 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "جداول أكبر" -#: js/messages.php:478 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "جداول أكبر" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "إخفاء معايير البحث" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "إظهار معايير البحث" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "كل نقطة تمثل صف بيانات." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "لإستعمال المقربة، إختر جزء من رسم البيانات بواسطة الفأرة." -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "أنقر زر الإسعادة للمقربة للرجوع إلى الحالة الأصلية." -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "أنقر على نقطة من البيانات لمشاهدة و ربما تحرير سطر البيانات." -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "يمكن تغيير قياس الرسم البياني من خلال سحبه على طول القرنة في أسفل اليمين." -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "إختر عمودين" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "إختر عمودين مختلفين" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "محتوى نقطة البيانات" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "تجاهل" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "نسخ" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "نقطة" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "منحنى" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "مضلع" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "هندسة" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "الحلقة الداخلية" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "الحلقة الخارجية :" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "مفتاح التشفير" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "إختيار المفتاح المرجع" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "إختيار المفتاح الغريب" -#: js/messages.php:533 +#: js/messages.php:535 #, 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "اختر الحقل لإظهاره" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "صفحة رقم:" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "اختر الجداول" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "سعرة" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "رجاء اختر صفحة لتعديلها" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "بناء الارتباطات" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "تمت التعديلات" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "إضافة خيار للعمود " -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "إرسال" -#: js/messages.php:559 +#: js/messages.php:561 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "إضغط escape لإلغاء التعديل" -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2369,185 +2377,185 @@ msgstr "" "لقد تم التعديل على بعض البيانات ولم يتم حفظها. هل تريد ترك هذه الصفحة بدون " "حفظ البيانات الجديدة؟" -#: js/messages.php:564 +#: js/messages.php:566 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "إسحب لإعادة الترتيب" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "إضغط لوضع علامة / إزالة علامة" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "أنقر مرتين لنسخ اسم العمود" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "عرض الكل" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "منحنى" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "ألغاء" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "ألغي" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "نجاح" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "إفتراضيات الإستيراد" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "إسقاط الملفات هنا" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "اختر الجداول" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "طباعة" -#: js/messages.php:606 +#: js/messages.php:608 #, 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:611 +#: js/messages.php:613 #, 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:617 +#: js/messages.php:619 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "ذهاب للرابط" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "أنسخ اسم العمود" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "توليد كلمة مرور" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "توليد" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "أكثر" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "عرض الكل" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "إخفاء الفهارس" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "عرض الشعار في الإطار الأيسر" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "تخصيص الإطار الرئيسي" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "تخصيص الإطار الرئيسي" -#: js/messages.php:639 +#: js/messages.php:641 #, 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2557,120 +2565,120 @@ msgstr "" "هو %s, released on %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", آخر إصدار مستقر:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "محدثة" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "إنشاء عرض" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "تغيير الإعدادات" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Import files" msgid "Show report details" msgstr "استورد الملفات" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "تجاهل" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "أعرض هذا الاستعلام هنا مرة أخرى" -#: js/messages.php:700 +#: js/messages.php:702 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "هل تريد فعلاً تنفيذ \"%s\"؟" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format #| msgid "Issued queries" msgid "%s queries executed %s times in %s seconds." msgstr "إستعلامات صادرة" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "تعليقات الجدول" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "إخفاء نتائج البحث" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2679,385 +2687,385 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "نسخ قاعدة البيانات إلى" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "إضافة حقل جديد" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "استبدال بادئة الجدول" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "نسخ الجدول مع البادئة" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "سابق" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "التالي" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "اليوم" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "يناير" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "فبراير" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "مارس" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "أبريل" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "مايو" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "يونيو" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "يوليو" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "أغسطس" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "سبتمبر" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "أكتوبر" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "نوفمبر" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "ديسمبر" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "يناير" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "فبراير" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "أبريل" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "مايو" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "يونيو" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "يوليو" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "أغسطس" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "سبتمبر" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "أكتوبر" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "نوفمبر" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "ديسمبر" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "الأحد" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "الإثنين" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "الثلاثاء" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "الأربعاء" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "الخميس" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "الجمعة" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "السبت" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "الأحد" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "الإثنين" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "الثلاثاء" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "الأربعاء" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "الخميس" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "الجمعة" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "السبت" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "الأحد" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "الإثنين" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "الثلاثاء" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "الأربعاء" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "الخميس" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "الجمعة" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "السبت" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "التقويم-الشهر-السنة" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "لا شيء" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "الساعة" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "الدقيقة" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "الثانية" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "استخدم حقل نص" -#: js/messages.php:886 +#: js/messages.php:888 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:887 +#: js/messages.php:889 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:925 +#: js/messages.php:927 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:930 +#: js/messages.php:932 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "خطأ" @@ -3110,34 +3118,34 @@ msgstr "أحرف غير متوقعة على السطر %s." msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "أحرف غير متوقعة على السطر %s" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "ملف الإعدادت (%s) غير قابل للقراءة." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "صلاحيات خاطئة على ملف الإعدادات , لاينبغى أن يكون قابل للكتابة!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "حجم الخط" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "in query" msgid "Requery" msgstr "في الاستعلام" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3156,97 +3164,78 @@ msgid "Database" msgstr "قاعدة البيانات" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Table Search" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "بحث في الجدول" -msgstr[1] "بحث في الجدول" -msgstr[2] "بحث في الجدول" -msgstr[3] "بحث في الجدول" -msgstr[4] "بحث في الجدول" -msgstr[5] "بحث في الجدول" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "مشترك" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "لقد حذفت العلامة المرجعية." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Table Search" msgid "No bookmarks" msgstr "بحث في الجدول" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "شرح SQL" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "جانبي" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Table Search" msgid "Bookmark" msgstr "بحث في الجدول" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query type" msgid "Query failed" msgstr "نوع الاستعلام" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "Query execution time" msgid "Queried time" msgstr "وقت التنفيذ الأقصى" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "صندوق إستعلام SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "نصوص SQL سابقة" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3264,203 +3253,203 @@ msgstr "نصوص SQL سابقة" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "خيارات" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Table Search" msgid "Bookmarks" msgstr "بحث في الجدول" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "تصحيح SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute" msgid "Press Ctrl+Enter to execute query" msgstr "تنفيذ" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute" msgid "Press Enter to execute query" msgstr "تنفيذ" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "تصاعديا" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "تنازليا" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Other" msgid "Order:" msgstr "آخر" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "عمود" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute" msgid "Execution order" msgstr "تنفيذ" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Other" msgid "Order by:" msgstr "آخر" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "إستعلام SQL" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "إستعلام SQL" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "أظهر اللون" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide indexes" msgid "Hide trace" msgstr "إخفاء الفهارس" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "عمود" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "تحديث" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "و" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Table Search" msgid "Add bookmark" msgstr "بحث في الجدول" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "علامة" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy #| msgid "Create database" msgid "Target database" msgstr "أنشئ قاعدة معطيات" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Table Search" msgid "Share this bookmark" msgstr "بحث في الجدول" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Restore default value" msgid "Set default" msgstr "إستعادة القيمة الإفتراضية" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "Show query box" msgid "Show query history at start" msgstr "إظهار صندوق الإستعلام" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "بدل إلى الجدول المنسوخ" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "فشل قراءة ملف الإعدادات" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "التفاصيل…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3817,7 +3806,7 @@ msgstr "ممكن أن يكون تقريبي. أنظر إلى [doc@faq3-11]الأ #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3951,17 +3940,17 @@ msgstr "رفع الملف إستوقف من قبل الامتداد." msgid "Unknown error in file upload." msgstr "خطأ غير معروف عند رفع الملف." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "خطأ عند نقل الملف المرفوع , إنظر :[doc@faq1-11]FAQ 1.11[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "خطأ عند نقل الملف المرفوع." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -4029,8 +4018,8 @@ msgid "Keyname" msgstr "اسم المفتاح" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4080,13 +4069,13 @@ msgstr "تم حذف الفهرس %s." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "سقّط" @@ -4184,7 +4173,7 @@ msgstr "الإمتيازات" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "عمليات" @@ -4199,7 +4188,7 @@ msgstr "تتبع" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4625,11 +4614,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "مسار الصورة للمظهر %s غير صحيح!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "لاتتوفر معاينة." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "إعتبر" @@ -4894,23 +4883,23 @@ msgctxt "spatial types" msgid "Spatial" msgstr "" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "كبير: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "بيانات ثابتة" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4921,38 +4910,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL قال: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "شرح SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "تخطي شرح SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "بدون كود PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "إرسال الإستعلام" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "أنشئ كود PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5044,6 +5033,10 @@ msgstr "لكل ساعة" msgid "per day" msgstr "يومياً" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "مشترك" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5162,44 +5155,44 @@ msgstr "إضافة عمود" msgid "Attributes" msgstr "الخواص" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to read configuration file!" msgstr "فشل قراءة ملف الإعدادات" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "يبدو أن هناك خطأ في بناء الجملة." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "لا يمكن تحميل الإعدادات الإفتراضية من : %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "فهرس خادم غير صحيح: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "إسم المضيف غير صحيح للخادم %1$s." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "خادم" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "اسلوب مصادقة غير صحيح في الإعدادات:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5207,24 +5200,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "عليك الترقية إلى %s%s أو لاحقا." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "إستغلال محتمل" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "الكشف عن مفتاح رقمي" @@ -5965,7 +5958,7 @@ msgstr "ضع أسماء الحقول في السطر الأول" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Columns enclosed with:" msgid "Columns enclosed with" @@ -5973,7 +5966,7 @@ msgstr "حقل محاط بـ" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -5995,14 +5988,14 @@ msgstr "حذف CRLF من الأعمدة" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "خطوط تنتهي بـ" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6658,7 +6651,7 @@ msgid "Column names in first row" msgstr "ضع أسماء الصفوف في السطر الأول" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "لاتستورد صفوف فارغة" @@ -8190,7 +8183,7 @@ msgid "Table %s has been emptied." msgstr "تم إفراغ محتويات الجدول %s." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8334,8 +8327,8 @@ msgid "No data to display" msgstr "لايوجد بيانات" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8389,55 +8382,55 @@ msgstr[5] "" msgid "No column selected." msgstr "لايوجد صفوف مختارة" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "تم حذف المستخدمين المحددين بنجاح." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "خطأ في الإستعلام" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "تغيير" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "فهرست" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "النص كاملا" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8449,7 +8442,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "لا تغييرات" @@ -9233,58 +9226,58 @@ msgstr "قام MySQL بإرجاع نتيجة فارغة." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "لايوجد قواعد بيانات" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "بيانات مفقودة لـ %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "اذهب إلى الجدول" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "البنية فقط" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9334,53 +9327,53 @@ msgstr "أو" msgid "web server upload directory:" msgstr "دليل تحميل الملفات على خادم الشبكة" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "تحرير/إدخال" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "وبعدها" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "إدخال كتسجيل جديد" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "الرجوع إلى الصفحة السابقة" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "إدخال تسجيل جديد" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "ارجع إلى هذه الصفحة" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "عدل الصف التالي" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9392,11 +9385,11 @@ msgstr "" msgid "Value" msgstr "القيمة" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10289,7 +10282,7 @@ msgstr "إصلاح الجدول" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "حذف البيانات او الجدول" @@ -10302,32 +10295,32 @@ msgid "Delete the table (DROP)" msgstr "حذف الجدول (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "حلل" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "تحقق" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "تحسين" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "إعادة بناء" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "إصلاح" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10355,37 +10348,37 @@ msgstr "إزالة التقسيم" msgid "Check referential integrity:" msgstr "تحديد التكامل المرجعي:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "لايمكن نقل الجدول إلى نفسه!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "لا يمكن نسخ الجدول إلى نفسه!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "%s جدول تم نقله إلى %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "الجدول %s لقد تم نسخه إلى %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "اسم الجدول فارغ!" @@ -10574,7 +10567,7 @@ msgstr "خيارات تصدير قاعدة بيانات" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "إرجاع أو استيراد بيانات الجدول" @@ -10600,21 +10593,21 @@ msgstr "الوصف" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "بنية الجدول" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10730,7 +10723,7 @@ msgid "Database:" msgstr "قاعدة البيانات" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10846,7 +10839,7 @@ msgid "Data creation options" msgstr "خيارات التحويل" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10915,7 +10908,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10961,60 +10954,60 @@ msgstr "قيد الإستعمال" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "قيود الجداول المحفوظة" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "القيود للجدول" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "قيود الجداول المحفوظة" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "داخل الجداول:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "لاتستعمل AUTO_INCREMENT للقيم الصفرية" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "أضف قيمة AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11050,7 +11043,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11070,33 +11063,33 @@ msgstr "" msgid "Column names: " msgstr "اسم العمود" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11104,28 +11097,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "جدول ميدياويكي" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11135,23 +11128,23 @@ msgstr "مستند مفتوح" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -11165,7 +11158,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "إكس إم إل" @@ -14250,15 +14243,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14273,17 +14262,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14305,19 +14295,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14350,17 +14340,17 @@ msgstr "تم إنشاء الإجراء %1$s." msgid "Variable name was expected." msgstr "إسم قالب الجدول" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "في بداية الجدول" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14383,17 +14373,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "لقد تمّ حذف الصّف" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15096,7 +15086,7 @@ msgstr "عرض بنية الجدول" msgid "Invalid table name" msgstr "اسم الجدول غير صالح" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16222,7 +16212,7 @@ msgid "at beginning of table" msgstr "في بداية الجدول" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16271,7 +16261,7 @@ msgstr "مقسم" msgid "Edit partitioning" msgstr "إزالة التقسيم" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16402,11 +16392,11 @@ msgstr "اسم VIEW" msgid "Column names" msgstr "اسم العمود" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "أعد تسمية العرض الـ" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Delete the table (DROP)" msgid "Delete the view (DROP)" @@ -17555,6 +17545,22 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Table Search" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "بحث في الجدول" +#~ msgstr[1] "بحث في الجدول" +#~ msgstr[2] "بحث في الجدول" +#~ msgstr[3] "بحث في الجدول" +#~ msgstr[4] "بحث في الجدول" +#~ msgstr[5] "بحث في الجدول" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "لقد حذفت العلامة المرجعية." + #, fuzzy #~| msgid "Force secured connection while using phpMyAdmin" #~ msgid "Force secured connection while using phpMyAdmin." diff --git a/po/az.po b/po/az.po index 6a92253897..5f608d444f 100644 --- a/po/az.po +++ b/po/az.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-05-21 01:04+0200\n" "Last-Translator: Sevdimali İsa \n" "Language-Team: Azerbaijani " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save & Close" msgid "Save & close" msgstr "Yaddaşa ver və Bağla" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Sıfırla" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Reset All" msgid "Reset all" msgstr "Hamısını Sıfırla" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Formda tam doldurulmayıb!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Seçimlərdən ən az birin seçin!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Zəhmət olmasa keçərli bir nömrə daxil edin!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Zəhmət olmasa keçərli uzunluq daxil edin!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "İndeks əlavə et" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "İndeksi redaktə et" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "İndeksə %s sütun əlavə et" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Tək-sütun indeksi yarat" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Kompleks indeks yarat" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Saheler ehate edildiyi işare" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "İndeksə əlavə olunması üçün sütunları seçin." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Ən az bir sütun əlavə etməlisiniz." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "SQL önizləmə" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Sorğunu simulyasiya et" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Uyğun gələn sətirlər:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL sorğusu:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y Qiyməti" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Host adı boşdur!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "İstifadəçi adı boş qaldı!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Parol boşdur!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Girdiyiniz parollar eyni deyil!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Seçilən İstifadəçilər Silinir" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Bağla" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Yaradılmış səhifələrin sayı." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profil yenilendi." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Sətir silindi." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Digər" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Əlaqələr / Proseslər" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Lokal izləmə konfiqurasiyası uyğun deyil!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1157,165 +1161,165 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Sorğu keş effektivliyi" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Sorğu keş istifadəsi" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "İstifadə edilən sorğu keşi" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Sistem prosessoru istifadəsi" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Sistem Yaddaşı" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Sistem mübadiləsi" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Ortalama yükləmə" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Toplam Yaddaş" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Keş edilmiş yaddaş" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Boş yaddaş" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "İstifadə olunan yaddaş" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Toplam mübadilə" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Keş edilmiş mübadilə" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "İstifadə olunan mübadilə" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Sərbəst mübadilə" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Göndərilmiş bayt" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Alınan bayt" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Əlaqələr" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Prosesler" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "Bayt" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "QB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d cədvəl" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Suallar" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Tənzimləmələr" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Zəhmət olmasa massivə ən azı bir dəyişən əlavə edin!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1327,47 +1331,47 @@ msgstr "Zəhmət olmasa massivə ən azı bir dəyişən əlavə edin!" msgid "None" msgstr "Heç biri" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "İzləməyə davam et" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "İzləməni dayandır" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log və slow_query_log aktivləşdirilib." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log aktivləşdirildi." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log aktivləşdirildi." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output TABLE olaraq ayarlı deyil." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output TABLE olaraq ayarlı." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1375,12 +1379,12 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time %d saniyəyə qurulub." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1389,30 +1393,30 @@ msgstr "" "ilkin vəziyyətinə sıfırlanacaq:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "log_output-u %s-ə ayarla" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "%s aktiv" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Söndürmək %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "long_query_time-ı %d saniyəyə ayarlayın." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1420,95 +1424,95 @@ msgstr "" "Bu dəyişənləri dəyişdirə bilməzsiniz. Zəhmət olmasa root olaraq daxil olun " "vəya Baza adminstartoru ilə əlaqə saxlayın." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Dəyişdirmə tənzimləmələri" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Cari Seçimlər" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Diaqram başlığı" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Ayırıcı" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "%s tərəfindən bölən" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Vahid" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Loglar analiz edilir" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "İstəyi ləğv et" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Log cədvəlinə keç" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Heç bir məlumat tapılmadı" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analiz edilir…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Eksportu açıqla" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1516,7 +1520,7 @@ msgstr "Eksportu açıqla" msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1526,82 +1530,82 @@ msgstr "Status" msgid "Time" msgstr "Müddət" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Toplam vaxt:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Nəticələrin profili çıxardılır" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Cədvəl" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Diaqram" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Log Cədvəl Filtr seçənəkləri" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filtr" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Söz/düzənli ifadəyə görə sorğuları filtrlə:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Qruplanmış sətirlərin cəmi:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Cəm:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Loglar yüklənir" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Səhifəi yenidən yüklə" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Təsirlənən sətirlər:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1610,67 +1614,67 @@ msgstr "" msgid "Import" msgstr "İmport" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Zəhmət olmasa import etmək istədiyiniz faylı seçin." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "İmport üçün serverdə fayllar yoxdur!" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "Sorğunu Analiz et" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Müşavir sistemi" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Ola biləcək performans problemləri" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Problem" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Tövsiyə" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Qayda təfsilatları" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Əsaslandırma" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "İstifadə olunan dəyişən / formula(düstur)" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Sınaq" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Pis parametrlər!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1682,74 +1686,74 @@ msgstr "Pis parametrlər!" msgid "Cancel" msgstr "Ləğv et" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Dəyişdirmə tənzimləmələri" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Təsdiqlə" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Yüklənir…" -#: js/messages.php:358 +#: js/messages.php:360 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "İstək ləğv edildi!" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "istək emal olunur" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Request Aborted!!" msgid "Request failed!!" msgstr "İstək ləğv edildi!" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Prosesler" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Xəta Kodu: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Xəta mətni: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Heç bir baza seçilmemişdir." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Series column:" msgid "Dropping column" msgstr "Ardıcıllıq sütunu:" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Birinci dərəcəli açar əlavə et" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1759,61 +1763,61 @@ msgstr "Birinci dərəcəli açar əlavə et" msgid "OK" msgstr "Tamam" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Bu bildirişi rədd etmək üçün klikləyin" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Verilənlər Bazası yenidən adlandırılır" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Verilənlər Bazası kopyalanır" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Kodlaşdırma dəyişdirilir" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Gerçək sətir sayını almaq mümkün olmadı." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Axtarır" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Axtarış nəticələrini gizlət" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Axtarış nəticələrini göstər" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Gözdən keçirilir" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Silinir" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1829,46 +1833,46 @@ msgstr "" msgid "Export" msgstr "Eksport" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET redaktoru" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "%s sütunu üçün qiymətlər" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Yeni sütun üçün qiymətlər" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Hər bir qiyməti ayrı sahəyə daxil edin." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "%d qiymət əlavə et" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Qeyd: Əgər faylda çoxlu cədvəl vardırsa, bunlar birinin içərisində " "birləşdiriləcək." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Sorğu qutusunu gizlət" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Sorğu qutusunu göstər" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1878,7 +1882,7 @@ msgstr "Sorğu qutusunu göstər" msgid "Edit" msgstr "Redaktə et" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1889,41 +1893,41 @@ msgstr "Redaktə et" msgid "Delete" msgstr "Sil" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d keçərli sətir sayı deyil." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Dəyişən %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Seç" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Sütun seçici" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Bu siyahıda axtar" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1932,15 +1936,15 @@ msgstr "" "Mərkəzi siyahıda sütun yoxdur. %s Verilənlər Bazası üçün Mərkəzi sütunlar " "siyahısının, cari cədvəldə olmayan sütunlara sahib olduğundan əmin olun." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Daha çoxuna bax" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Əminsiniz?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1948,113 +1952,113 @@ msgstr "" "Bu addım bəzi sütunların tərifini dəyişdirə bilər.
Davam etmək " "istəyirsinizmi?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Davam" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Birinci dərəcəli açar əlavə et" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Birinci Dərəcəli Açar əlavə edildi." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Sizi növbəti addıma aparır…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Addım sonu" -#: js/messages.php:439 +#: js/messages.php:441 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:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Hazırdır" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Heç bir baza seçilmemişdir." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Göstərilən cədvəli yarat" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Heç bir baza seçilmemişdir." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2064,227 +2068,227 @@ msgstr "Heç bir baza seçilmemişdir." msgid "Save" msgstr "Yaddaşa ver" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Axtarış kriteriyalarını gizlət" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Axtarış kriteriyalarını göstər" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Aralıq Axtarma" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Maksimum Sütun:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Minimum Sütun:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Minimum dəyər:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Maksimum dəyər:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Axtar və Dəyişdir kriteriyalarını gizlət" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Axtar və Dəyişdir kriteriyalarını göstər" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Hər nöqtə bir verilən sətrini təmsil edir." -#: js/messages.php:488 +#: js/messages.php:490 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:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "İki sütun seçin" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "İki fərqli sütun seçin" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Verilən nöqtə məzmunu" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Diqqətə Alma" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Xətt" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Poliqon" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner ring %d:" msgid "Inner ring" msgstr "Daxili halqa %d:" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Xarici halqa:" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Şifrələmə açarını kopyalamaq istəyirsinizmi?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Şifrələmə açarı" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "Səhifə adı" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Səhifəni sil" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Başlıqsız" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Zəhmət olmasa davam etmək üçün bir səhifə seçin" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:548 +#: js/messages.php:550 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:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Səhifə uğurla silindi" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Əlaqəli sxemləri eksport et" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Modifikasiyalar yaddaşa verildi" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "\"%s\" sütunu üçün seçim əlavə edin." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d obyekt yaradıldı." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Submit" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Redaktəni ləğv etmək üçün Esc düyməsinə basın." -#: js/messages.php:561 +#: js/messages.php:563 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,157 +2296,157 @@ msgstr "" "Bəzi verilənləri redaktə etdiniz və yaddaşa vermədiniz. Verilənləri yadda " "saxlamadan çıxmaq istəyirsinizmi?" -#: js/messages.php:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Yenidən düzənləmək üçün sürükləyin." -#: js/messages.php:565 +#: js/messages.php:567 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:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Sütun adını kopyalamaq üçün iki dəfə klikləyin." -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Hamısını göstər" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Orjinal sətir" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "ləğv et" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Dayandırılmış Əlaqələr" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "İmport statusu" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Əvvəlcə Verilənlər Bazasını seçin" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Çap et" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Bağlantıya get:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Sütun adını kopyala." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Parol yarat" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Yarat" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Daha çox" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Paneli Göstər" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Paneli Gizlət" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Gizli naviqasiya ağac bəndlərini göstər." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Əsas panel ilə əlaqələndir" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Əsas panel ilə əlaqəni kəs" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2452,56 +2456,56 @@ msgstr "" "versiya %s, %s tarixində yayımlanıb." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", son stabil versiya:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "aktual" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Görünüş yarat" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Xəta hesabatları göndər" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Xəta Hesabatı Göndər" -#: js/messages.php:656 +#: js/messages.php:658 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:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Hesabat tənzimləmələrini dəyişdir" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Hesabat Təfsilatlarını Göstər" -#: js/messages.php:662 +#: js/messages.php:664 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:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2511,64 +2515,64 @@ 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Serverdə bəzi xətalar aşkar edildi!" -#: js/messages.php:674 +#: js/messages.php:676 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:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Heç birin diqqətə alma" -#: js/messages.php:688 +#: js/messages.php:690 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:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Bu sorğu təkrar icra olunsunmu?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Bu əlfəcini silmək istədiyinizə əminsinizmi?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Cədvəl haqqında izahat" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Axtarış nəticələrini gizlət" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2577,387 +2581,387 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Verilənlər Bazasını buraya kopyala" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Cədvəl prefiksi əlavə et:" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Cədvəl prefiksini dəyiş" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Cədvəli prefiks ilə birgə kopyala" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Əvvəlki" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Sonrakı" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Bugün" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Yanvar" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Fevral" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Mart" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Aprel" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "May" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "İyun" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "İyul" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Avqust" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Sentyabr" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Oktyabr" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Noyabr" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Dekabr" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Yan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "İyun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "İyul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Avq" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Sent" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Noy" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Dek" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Bazar" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Bazar Ertəsi" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Çərşənbə axşamı" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Çərşənbə" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Cümə axşamı" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Cümə" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Şənbə" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Baz" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Baz Ert" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Çerş Axş" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Çerş" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Cüme Axş" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Cüme" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Şen" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "B" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Baz Ert" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Çərş Axş" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Ç" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "CA" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "C" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Ş" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "təqvim-ay-il" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "Heç biri" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Saat" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Dəqiqə" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Saniyə" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Mətn sahəsi istifadə et" -#: js/messages.php:886 +#: js/messages.php:888 #, 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:889 #, 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:890 #, 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:891 +#: js/messages.php:893 #, 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:893 +#: js/messages.php:895 #, 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:896 +#: js/messages.php:898 #, 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:898 +#: js/messages.php:900 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "Zəhmət olmasa keçərli uzunluq daxil edin!" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter the same value again" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:905 +#: js/messages.php:907 #, 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:910 +#: js/messages.php:912 #, 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:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, 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:925 +#: js/messages.php:927 #, 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:930 +#: js/messages.php:932 #, 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:936 +#: js/messages.php:938 #, 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:941 +#: js/messages.php:943 #, 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:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Xəta" @@ -3009,33 +3013,33 @@ msgstr "" "%1$s. sətirində gözlənilməyən simvollar. Gözlənən pəncərə, amma tapılan " "\"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Mövcud konfiqurasiya faylı(%s) oxuna bilən deyil." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Konfiqurasiya faylında yanlış icazələr, hərkəsə yazılabilən olmamalıdır!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Şrift ölçüsü" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Genişlət" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Sorğunu təkrarla" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3055,76 +3059,59 @@ msgstr "Verilənlər Bazası" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Toplam %d əlfəcin" -msgstr[1] "Toplam %d əlfəcin" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "özəl" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "paylaşılan" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s and %3$s əlfəcin daxil edildi" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Əlfəcinlər yoxdur" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Cari sessiya ərzində" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "İzah Et" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profilləmə" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Əlfəcin" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Sorğu uğursuz oldu" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "SQL sorğu konsolu" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Konsol" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Təmizlə" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Tarixçə" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3142,145 +3129,145 @@ msgstr "Tarixçə" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Seçimlər" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Əlfəcinlər" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Sorğunu icra etmək üçün Ctrl+Enter düymələrinə basın" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Sorğunu icra etmək üçün Enter-ə basın" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Artan sırada" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Azalan sırada" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Order" msgid "Order:" msgstr "Sıra" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Sayı" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute every" msgid "Execution order" msgstr "Yerinə yetir; hər biri" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Order" msgid "Order by:" msgstr "Sıra" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "SQL sorğuları" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "SQL sorğuları" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show create" msgid "Show trace" msgstr "Yaradılmanı göstər" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide Panel" msgid "Hide trace" msgstr "Paneli Gizlət" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Count" msgid "Count:" msgstr "Sayı" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Yenilə" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Əlavə et" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Əlfəcin əlavə et" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Etiket" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Hədəf verilənlər bazası" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Bu əlfəcini paylaş" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Susmaya görəni tənzimlə" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Sorğu mesajlarını həmişə genişlət" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Başlanğıcda sorğu keçmişini göstər" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Hal-hazırda baxılan sorğunu göstər" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3288,17 +3275,17 @@ msgstr "" "Enterə basaraq sorğuları icra edin və Shift+Enter ilə yeni sətir əlavə edin. " "Bunu həmişəlik etmək üçün tənzimləmələrə baxın." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Qaranlıq temaya keç" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Konfiqurasiya faylını oxuma uğursuz oldu!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3306,19 +3293,19 @@ msgstr "" "Server cavab vermir(yada ki lokal MYSQL serverinin soketi duzgün " "konfiqurasiya edilməyib)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Server cavab vermir." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 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:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Detallar…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 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 " @@ -3637,7 +3624,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "SQL sorğunuz müvəffəqiyyətlə icra edilmişdir." @@ -3758,15 +3745,15 @@ msgstr "Fayl yükləmə genişlənməsinə görə dayandırrıldı." msgid "Unknown error in file upload." msgstr "Faylın yüklənməsi zamanı naməlum xəta baş verdi." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Yüklənən fayl daşınarkən xəta oldu." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -3832,8 +3819,8 @@ msgid "Keyname" msgstr "Açar söz" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3883,13 +3870,13 @@ msgstr "%s indeksi ləğv edildi." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Ləğv et" @@ -3987,7 +3974,7 @@ msgstr "Səlahiyyətlər" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Əməliyyatlar" @@ -4002,7 +3989,7 @@ msgstr "İzləmə" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4378,11 +4365,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "%s teması üçün keçərli şəkil adresi tapılmadı!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Önizləmə mövcud deyil." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "Götür" @@ -4672,21 +4659,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Fəza" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Ən çox: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4697,38 +4684,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL deyir: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL-i İzah Et" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "SQL İzah Et-i Keç" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP Kodunu Göstərmə" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Sorğunu göndər" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP Kodunu Hazırla" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Sətir içi redaktə" @@ -4816,6 +4803,10 @@ msgstr "saatda" msgid "per day" msgstr "Günə" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "paylaşılan" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Axtarış:" @@ -4922,43 +4913,43 @@ msgstr "Yeni sütun əlavə et" msgid "Attributes" msgstr "Xüsusiyyətlər" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Konfiqurasiya faylını oxuma uğursuz oldu!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "İlkin konfiqurasiya burdan yüklənə bilmədi: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Uyğun olmayan server indeksi: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s. serveri üçün uyğun olmayan hostname. Zəhmət olmasa server " "konfiqurasiyalarını gözdən keçirin." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4966,24 +4957,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s vəya yenisinə yüksəltməlisiniz." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5664,13 +5655,13 @@ msgstr "Sütun adlarını ilk sətrə qoy" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Sütunların əhatə edildiyi işarə" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Sahələrin escape edildiyi işarə" @@ -5688,12 +5679,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Sütunlar bununla sonlandırılıb(Columns terminated by)" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Sətirlər bununla ləğv edilib(Lines terminated by)" @@ -6266,7 +6257,7 @@ msgid "Column names in first row" msgstr "İlk sətirdəki sütun adları" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Boş sətirləri import etmə" @@ -7741,7 +7732,7 @@ msgid "Table %s has been emptied." msgstr "%s cədvəli boşaldıldı." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "%s görünüşünü yığışdır." @@ -7876,8 +7867,8 @@ 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:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7920,53 +7911,53 @@ msgstr[1] "Sütün adı '%s' MySQL'ə ayrılmış açar kəlimədir." msgid "No column selected." msgstr "Sütun seçilməmişdir." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Sütunlar uğurlu şəkildə daşındı." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Sorğu xətası" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Dəyişdir" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "İndeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Tam metn (Fulltext)" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Fərdi qiymətlər" @@ -7976,7 +7967,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Deyişiklik Yoxdur" @@ -8732,54 +8723,54 @@ msgstr "MySQL boş nəticə çoxluğu göndərdi(yəni sıfır sətir)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "%s Verilənlər Bazasına get" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "%s Cədvəlinə get" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s Strukturu" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8825,53 +8816,53 @@ msgstr "ya da" msgid "web server upload directory:" msgstr "web-server upload direktoriyası:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Redaktə et/Əlavə et" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Yeni sətir olaraq əlavə et" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Evvelki sehifeye qayıt" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Teze bir setir daha gir" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Bu sehifeye geri dön" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Bir sonrakı setre keç" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8883,11 +8874,11 @@ msgstr "" msgid "Value" msgstr "Dəyər" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9731,7 +9722,7 @@ msgstr "Cedveli te'mir et" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Cədvəl və ya veriləni sil" @@ -9744,32 +9735,32 @@ msgid "Delete the table (DROP)" msgstr "Cədvəli sil(DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analiz et" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Yoxlama" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimallaşdır" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Yenidən Qur" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Təmir et" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9797,36 +9788,36 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Cedveli eynisinin üzerine kopyalaya bilmerem!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "%s cədvəli %s - ə daşınmışdır." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, fuzzy, php-format msgid "Table %s has been copied to %s." msgstr "%s cədvəli %s - ə kopyalandı." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Cedveli adı boşdur!" @@ -10009,7 +10000,7 @@ msgstr "Data Dump seçimləri" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Sxemi çıxarılan cedvel" @@ -10033,21 +10024,21 @@ msgstr "Tərif" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Cədvəl üçün cədvəl strukturu" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Görünüş strukturu" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10137,7 +10128,7 @@ msgid "Database:" msgstr "Verilənlər Bazası:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Verilən:" @@ -10235,7 +10226,7 @@ msgid "Data creation options" msgstr "Verilən yaratma seçimləri" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10304,7 +10295,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10350,56 +10341,56 @@ msgstr "istifadede" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "Inside table(s):" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Cədvəl üçün indekslər" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT deyeri elave et" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "Cədvəl üçün AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "Cədvəl Əlaqələri" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Verilənlərin oxunması xətası:" @@ -10431,7 +10422,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10449,33 +10440,33 @@ msgstr "" msgid "Column names: " msgstr "Sütun adları: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10483,28 +10474,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -10514,23 +10505,23 @@ msgstr "Dokumentasiya" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10542,7 +10533,7 @@ msgstr "SQL compatibility rejimi:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Sıfır qiymətləri üçün AUTO_INCREMENT istifadə etmə" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13436,15 +13427,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -13459,17 +13446,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -13491,23 +13479,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Açıq olan cədvəl sayı." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Açıq olan cədvəl sayı." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -13540,17 +13528,17 @@ msgstr "%1$s hadisəsi yaradıldı." msgid "Variable name was expected." msgstr "Cədvəl adı şablonu" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Cədvəlin başına" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13573,19 +13561,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14272,7 +14260,7 @@ msgstr "Cedvelin sxemini göster" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15290,7 +15278,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:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15339,7 +15327,7 @@ msgstr "bölündü" msgid "Edit partitioning" msgstr "bölündü" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Redaktə görünuşü" @@ -15462,12 +15450,12 @@ msgstr "" msgid "Column names" msgstr "Sütun adları" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Cedveli yeniden adlandır" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." @@ -16561,6 +16549,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 0-a konfiqurasiya edilib" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Toplam %d əlfəcin" +#~ msgstr[1] "Toplam %d əlfəcin" + +#~ msgid "private" +#~ msgstr "özəl" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s and %3$s əlfəcin daxil edildi" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/be.po b/po/be.po index 7973b40157..8e1edf4a1b 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-05-15 14:28+0200\n" "Last-Translator: Viktar Palstsiuk \n" "Language-Team: Belarusian " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Захаваць як файл" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Скінуць" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Выбраць усё" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Не зададзенае значэньне ў форме!" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "прынамсі адно з словаў" -#: js/messages.php:118 +#: js/messages.php:120 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number!" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:119 +#: js/messages.php:121 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid length!" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Дадаць новае поле" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit next row" msgid "Edit index" msgstr "Рэдагаваць наступны радок" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" msgstr "Дадаць %s новыя палі" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Стварыць сувязь" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Стварыць сувязь" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Палі ўзятыя ў" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %s field(s)" msgid "Please select column(s) for the index." msgstr "Дадаць %s новыя палі" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Трэба дадаць прынамсі адно поле." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "па запыту" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Latched pages" msgid "Matched rows:" msgstr "Фіксаваныя старонкі" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL-запыт" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Значэньне" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Пустое імя хосту!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Пустое імя карыстальніка!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Пусты пароль!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Паролі не супадаюць!" -#: js/messages.php:148 +#: js/messages.php:150 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Выдаліць выбраных карыстальнікаў" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Колькасьць створаных старонак." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Профіль быў адноўлены." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Радок быў выдалены" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Падлучэньні" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Local monitor configuration incompatible!" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1261,181 +1266,181 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Кэш запытаў" -#: js/messages.php:177 +#: js/messages.php:179 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Кэш запытаў" -#: js/messages.php:178 +#: js/messages.php:180 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Кэш запытаў" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "Выкарыстаньне" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "Колькасьць файлаў логу" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Пул буфэру" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Агулам" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Выкарыстаньне прасторы" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "Вольных старонак" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Атрымана" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Падлучэньні" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Працэсы" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "Б" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "КiБ" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "МіБ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "ГіБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "ТіБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "ПіБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "ЭіБ" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s табліц(ы)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 #, fuzzy msgid "Questions" msgstr "Пэрсыдзкая" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Трафік" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:215 +#: js/messages.php:217 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Зьвяць зь сеткай" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1447,47 +1452,47 @@ msgstr "" msgid "None" msgstr "Няма" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1495,156 +1500,156 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Захаваць як файл" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Уключана" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Адключана" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "Запыт выконваўся %01.4f сэк" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:254 +#: js/messages.php:256 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Загаловак справаздачы" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 #, fuzzy msgid "Analysing logs" msgstr "Лякальны" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Запыты чытаньня" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 #, fuzzy msgid "Jump to Log table" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:285 +#: js/messages.php:287 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Прааналізаваць" -#: js/messages.php:290 +#: js/messages.php:292 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Тлумачыць SQL" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1652,7 +1657,7 @@ msgstr "Тлумачыць SQL" msgid "Status" msgstr "Стан" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1662,98 +1667,98 @@ msgstr "Стан" msgid "Time" msgstr "Час" -#: js/messages.php:293 +#: js/messages.php:295 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Агулам" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Прафіляваньне" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Табліца" -#: js/messages.php:296 +#: js/messages.php:298 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Кадыроўка" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 #, fuzzy msgid "Log table filter options" msgstr "Налады экспарту базы дадзеных" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 #, fuzzy msgid "Filter" msgstr "Файлы" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 #, fuzzy msgid "Sum of grouped rows:" msgstr "Колькасьць адсартаваных радкоў." -#: js/messages.php:306 +#: js/messages.php:308 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Агулам" -#: js/messages.php:308 +#: js/messages.php:310 #, fuzzy msgid "Loading logs" msgstr "Лякальны" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Абнавіць" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1762,76 +1767,76 @@ msgstr "" msgid "Import" msgstr "Імрарт" -#: js/messages.php:326 +#: js/messages.php:328 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: js/messages.php:328 +#: js/messages.php:330 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import." msgstr "Калі ласка, выберыце першасны (PRIMARY) альбо ўнікальны ключ (UNIQUE)" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Абнавіць запыт" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Дакумэнтацыя" -#: js/messages.php:339 +#: js/messages.php:341 #, fuzzy #| msgid "Details…" msgid "Rule details" msgstr "Падрабязьней…" -#: js/messages.php:340 +#: js/messages.php:342 #, fuzzy msgid "Justification" msgstr "Аўтэнтыфікацыя…" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Add new field" msgid "No parameters found!" msgstr "Дадаць новае поле" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1843,73 +1848,73 @@ msgstr "Дадаць новае поле" msgid "Cancel" msgstr "Скасаваць" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy msgid "Loading…" msgstr "Лякальны" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Працэсы" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Кэш запытаў" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Працэсы" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Ня выбраная база дадзеных." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Procedure" msgid "Dropping column" msgstr "Працэдуры" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "Дадаць %s новыя палі" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1919,72 +1924,72 @@ msgstr "Дадаць %s новыя палі" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Перайменаваць базу дадзеных у" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Капіяваць базу дадзеных у" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Кадыроўка" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Адключыць праверку зьнешніх ключоў" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy msgid "Failed to get real row count." msgstr "Памылка запісу на дыск." -#: js/messages.php:383 +#: js/messages.php:385 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Пошук" -#: js/messages.php:384 +#: js/messages.php:386 #, fuzzy msgid "Hide search results" msgstr "SQL-запыт" -#: js/messages.php:385 +#: js/messages.php:387 #, fuzzy msgid "Show search results" msgstr "SQL-запыт" -#: js/messages.php:386 +#: js/messages.php:388 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Прагляд" -#: js/messages.php:387 +#: js/messages.php:389 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Выдаленьне %s" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -2000,47 +2005,47 @@ msgstr "" msgid "Export" msgstr "Экспарт" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Колькасьць палёў" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Дадаць новага карыстальніка" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 #, fuzzy msgid "Hide query box" msgstr "SQL-запыт" -#: js/messages.php:408 +#: js/messages.php:410 #, fuzzy msgid "Show query box" msgstr "SQL-запыт" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -2050,7 +2055,7 @@ msgstr "SQL-запыт" msgid "Edit" msgstr "Рэдагаваць" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -2061,94 +2066,94 @@ msgstr "Рэдагаваць" msgid "Delete" msgstr "Выдаліць" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Праглядзець зьнешнія значэньні" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Зьменная" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Ніводны радок ня выбраны" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Пошук у базе дадзеных" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Атрыбуты" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Першасны ключ быў дададзены да %s." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Зьмяніць" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2156,89 +2161,89 @@ msgstr "" msgid "End of step" msgstr "У канцы табліцы" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 #, fuzzy msgid "Done" msgstr "Дадзеныя" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Ня выбраная база дадзеных." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Дадаць прывілеі на наступную табліцу" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Ня выбраная база дадзеных." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2248,439 +2253,439 @@ msgstr "Ня выбраная база дадзеных." msgid "Save" msgstr "Захаваць" -#: js/messages.php:472 +#: js/messages.php:474 #, fuzzy msgid "Hide search criteria" msgstr "SQL-запыт" -#: js/messages.php:473 +#: js/messages.php:475 #, fuzzy msgid "Show search criteria" msgstr "SQL-запыт" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Пошук" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Назвы калёнак" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Назвы калёнак" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 #, fuzzy msgid "Maximum value:" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL-запыт" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL-запыт" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Памер указальніка на дадзеныя" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ігнараваць" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Скапіяваць" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Радкі падзеленыя" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Дадаць новага карыстальніка" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Радкі падзеленыя" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Выберыце спасылкавы ключ" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Выберыце зьнешні ключ" -#: js/messages.php:533 +#: js/messages.php:535 #, 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Старонка:" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Выбраць усё" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Калі ласка, выберыце старонку для рэдагаваньня" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Рэляцыйная схема" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Мадыфікацыі былі захаваныя" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Number of fields" msgid "Add an option for column \"%s\"." msgstr "Колькасьць палёў" -#: js/messages.php:555 +#: js/messages.php:557 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%d object(s) created." msgstr "Зьменена радкоў: %1$d." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Адправіць" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Назвы калёнак" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Паказаць усе" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Першапачатковая пазыцыя" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Скасаваць" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Спынена" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy msgid "Import status" msgstr "Імпартаваць файлы" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Парог файла логу" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Выберыце табліцу(ы)" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Друк" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy msgid "Go to link:" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Назвы калёнак" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Згенэраваць пароль" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Згенэраваць" -#: js/messages.php:628 +#: js/messages.php:630 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пан" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Паказаць усе" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Дадаць новае поле" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Паказаць сетку" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy msgid "Link with main panel" msgstr "Налады экспарту базы дадзеных" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy msgid "Unlink from main panel" msgstr "Налады экспарту базы дадзеных" -#: js/messages.php:639 +#: js/messages.php:641 #, 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2688,123 +2693,123 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 #, fuzzy msgid ", latest stable version:" msgstr "Стварыць сувязь" -#: js/messages.php:648 +#: js/messages.php:650 #, fuzzy msgid "up to date" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy msgid "Create view" msgstr "Стварыць сувязь" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy msgid "Send error report" msgstr "ID сэрвэра" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy msgid "Submit error report" msgstr "ID сэрвэра" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Паказаць адкрытыя табліцы" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ігнараваць" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Паказаць гэты запыт зноў" -#: js/messages.php:700 +#: js/messages.php:702 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Ці сапраўды вы жадаеце " -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL-запыт" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Камэнтар да табліцы" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy msgid "Hide arguments" msgstr "SQL-запыт" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2813,38 +2818,38 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Капіяваць базу дадзеных у" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Дадаць новае поле" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Замяніць дадзеныя табліцы дадзенымі з файла" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Замяніць дадзеныя табліцы дадзенымі з файла" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Папярэдняя старонка" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2852,96 +2857,96 @@ msgid "Next" msgstr "Наступная старонка" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Агулам" -#: js/messages.php:755 +#: js/messages.php:757 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Двайковы" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Сак" -#: js/messages.php:758 +#: js/messages.php:760 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Кра" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Тра" -#: js/messages.php:760 +#: js/messages.php:762 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Чэр" -#: js/messages.php:761 +#: js/messages.php:763 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Ліп" -#: js/messages.php:762 +#: js/messages.php:764 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Жні" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Кас" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Сту" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Сак" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Кра" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2949,78 +2954,78 @@ msgid "May" msgstr "Тра" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Чэр" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Ліп" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Жні" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Кас" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Ліс" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Сьн" -#: js/messages.php:801 +#: js/messages.php:803 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ндз" -#: js/messages.php:802 +#: js/messages.php:804 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пан" -#: js/messages.php:803 +#: js/messages.php:805 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Аўт" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пят" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3028,86 +3033,86 @@ msgid "Sun" msgstr "Ндз" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Пан" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Аўт" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Цач" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Пят" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ндз" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пан" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Аўт" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сер" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Цач" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пят" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3116,139 +3121,139 @@ msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Няма" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "выкарыстоўваецца" -#: js/messages.php:873 +#: js/messages.php:875 #, fuzzy #| msgid "per second" msgid "Second" msgstr "у сэкунду" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Выкарыстоўваць тэкставае поле" -#: js/messages.php:886 +#: js/messages.php:888 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:887 +#: js/messages.php:889 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:925 +#: js/messages.php:927 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:930 +#: js/messages.php:932 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Памылка" @@ -3299,34 +3304,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Памер шрыфта" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "in query" msgid "Requery" msgstr "па запыту" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3345,92 +3350,73 @@ msgid "Database" msgstr "База дадзеных" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Delete relation" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Выдаліць сувязь" -msgstr[1] "Выдаліць сувязь" -msgstr[2] "Выдаліць сувязь" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "Закладка была выдаленая." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Выдаліць сувязь" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "Тлумачыць SQL" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Прафіляваньне" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Delete relation" msgid "Bookmark" msgstr "Выдаліць сувязь" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query cache" msgid "Query failed" msgstr "Кэш запытаў" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy msgid "SQL Query Console" msgstr "SQL-запыт" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 #, fuzzy msgid "Clear" msgstr "Каляндар" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "Гісторыя SQL" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3448,177 +3434,177 @@ msgstr "Гісторыя SQL" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Налады" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Delete relation" msgid "Bookmarks" msgstr "Выдаліць сувязь" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Ctrl+Enter to execute query" msgstr "Выканаць запыт з закладак" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Enter to execute query" msgstr "Выканаць запыт з закладак" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "прамы" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "адваротны" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column names" msgid "Count" msgstr "Назвы калёнак" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execution order" msgstr "Выканаць запыт з закладак" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy msgid "Group queries" msgstr "SQL-запыт" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy msgid "Ungroup queries" msgstr "SQL-запыт" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Паказаць колер" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Add new field" msgid "Hide trace" msgstr "Дадаць новае поле" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column names" msgid "Count:" msgstr "Назвы калёнак" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Абнавіць" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "І" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Delete relation" msgid "Add bookmark" msgstr "Выдаліць сувязь" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "Метка" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy msgid "Target database" msgstr "Пошук у базе дадзеных" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Delete relation" msgid "Share this bookmark" msgstr "Выдаліць сувязь" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy msgid "Set default" msgstr "Імпартаваць файлы" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "Flush query cache" msgid "Show query history at start" msgstr "Скінуць кэш запытаў" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Перайсьці да скапіяванай табліцы" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to set configured collation connection!" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3626,21 +3612,21 @@ msgid "" "configured)." msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сэрвэр не адказвае" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Падрабязьней…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Не атрымалася ўсталяваць злучэньне для controluser, вызначанае ў вашым " @@ -4020,7 +4006,7 @@ msgstr "Значэньне можа быць прыблізным. Гл. [doc@fa #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4158,7 +4144,7 @@ msgstr "Загрузка файла спыненая пашырэньнем." msgid "Unknown error in file upload." msgstr "Падчас загрузкі файла адбылася невядомая памылка." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -4166,11 +4152,11 @@ msgstr "" "Памылка перамяшчэньня загружанага файла. Глядзіце разьдзел [doc@faq1-11]1.11 " "у FAQ[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4238,8 +4224,8 @@ msgid "Keyname" msgstr "Імя ключа" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4289,13 +4275,13 @@ msgstr "Індэкс %s быў выдалены." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Выдаліць" @@ -4395,7 +4381,7 @@ msgstr "Прывілеі" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Апэрацыі" @@ -4410,7 +4396,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4826,11 +4812,11 @@ msgstr "Памылка стварэньня зьнешняга ключа на % msgid "No valid image path for theme %s found!" msgstr "Дапушчальны шлях да малюнкаў тэмы %s ня знойдзены!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Папярэдні прагляд недаступны." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "гэтая" @@ -5102,21 +5088,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Колькасьць файлаў логу" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Максымальны памер: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5127,38 +5113,38 @@ msgstr "" msgid "MySQL said: " msgstr "Адказ MySQL: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Тлумачыць SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Не тлумачыць SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Без PHP-коду" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Выканаць запыт" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Стварыць PHP-код" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5255,6 +5241,10 @@ msgstr "у гадзіну" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5375,47 +5365,47 @@ msgstr "Дадаць %s новыя палі" msgid "Attributes" msgstr "Атрыбуты" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file!" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Некарэктны індэкс сэрвэра: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Няправільнае імя хосту для сэрвэра %1$s. Калі ласка, праверце канфігурыцыю." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Сэрвэр" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "У канфігурацыі вызначаны некарэктны мэтад аўтэнтыфікацыі:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5423,24 +5413,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазьнейшай." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6153,7 +6143,7 @@ msgstr "Пазначыць назвы палёў у першым радку" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6161,7 +6151,7 @@ msgstr "Палі ўзятыя ў" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6183,14 +6173,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Радкі падзеленыя" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6823,7 +6813,7 @@ msgid "Column names in first row" msgstr "Пазначыць назвы палёў у першым радку" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -8346,7 +8336,7 @@ msgid "Table %s has been emptied." msgstr "Табліца %s была ачышчаная." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8488,8 +8478,8 @@ msgid "No data to display" msgstr "Базы дадзеных адсутнічаюць" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8539,57 +8529,57 @@ msgstr[2] "" msgid "No column selected." msgstr "Ніводны радок ня выбраны" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Тып запыту" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Зьмяніць" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Індэкс" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Поўнатэкстэкставае" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8601,7 +8591,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Няма зьменаў" @@ -9471,56 +9461,56 @@ msgstr "MySQL вярнула пусты вынік (то бок нуль рад msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Толькі структуру" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Тып экспарту" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9571,52 +9561,52 @@ msgstr "Або" msgid "web server upload directory:" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Уставіць" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Пачаць устаўку зноў з %s-га радку" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "і пасьля" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Уставіць як новы радок" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 #, fuzzy msgid "Show insert query" msgstr "У выглядзе SQL-запыту" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Перайсьці да папярэдняй старонкі" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Дадаць яшчэ адзін радок" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Вярнуцца да гэтай старонкі" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Рэдагаваць наступны радок" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9626,7 +9616,7 @@ msgstr "" "Выкарыстоўвайце клявішу TAB для перамяшчэньня ад значэньня да значэньня або " "CTRL+стрэлкі для перамяшчэньня ў любое іншае месца" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9638,11 +9628,11 @@ msgstr "" msgid "Value" msgstr "Значэньне" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "У выглядзе SQL-запыту" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "ID устаўленага радку: %1$d" @@ -10535,7 +10525,7 @@ msgstr "Рамантаваць табліцу" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10551,32 +10541,32 @@ msgid "Delete the table (DROP)" msgstr "Базы дадзеных адсутнічаюць" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Прааналізаваць" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Праверыць" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Аптымізаваць" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Перабудаваць" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Адрамантаваць" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10603,37 +10593,37 @@ msgstr "Скасаваць падзел на часткі" msgid "Check referential integrity:" msgstr "Праверыць цэласнасьць дадзеных:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Немагчыма перанесьці табліцу ў саму сябе!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Немагчыма скапіяваць табліцу ў саму сябе!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Табліца %s была перанесеная ў %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Табліца %s была скапіяваная ў %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Пустая назва табліцы!" @@ -10830,7 +10820,7 @@ msgstr "Налады экспарту базы дадзеных" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Дамп дадзеных табліцы" @@ -10856,21 +10846,21 @@ msgstr "Апісаньне" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Структура табліцы" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Структура для прагляду" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Замяняльная структура для прагляду" @@ -10988,7 +10978,7 @@ msgid "Database:" msgstr "База дадзеных" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11104,7 +11094,7 @@ msgid "Data creation options" msgstr "Опцыі пераўтварэньня" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11173,7 +11163,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11219,61 +11209,61 @@ msgstr "выкарыстоўваецца" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Абмежаваньні для экспартаваных табліц" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Абмежаваньні для табліцы" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Абмежаваньні для экспартаваных табліц" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "У табліцы(ах):" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME-тыпы табліцы" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "Сувязі ў табліцы" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Структура для прагляду" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11310,7 +11300,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11330,34 +11320,34 @@ msgstr "" msgid "Column names: " msgstr "Назвы калёнак" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Недапушчальны парэмэтар для імпарту дадзеных у CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Некарэктны фармат CSV-дадзеных у радку %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Няправільная колькасьць палёў у CSV-дадзеных у радку %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Гэты плагін не падтрымлівае сьціснутыя дадзеныя!" @@ -11365,29 +11355,29 @@ msgstr "Гэты плагін не падтрымлівае сьціснутыя msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." msgstr "Некарэктны фармат CSV-дадзеных у радку %d." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11397,23 +11387,23 @@ msgstr "Спэцыфікацыя Open Document" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -11429,7 +11419,7 @@ msgstr "Рэжым сумяшчальнасьці SQL" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14678,15 +14668,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14701,17 +14687,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14733,23 +14720,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Колькасьць адкрытых табліц." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Колькасьць адкрытых табліц." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14779,17 +14766,17 @@ msgstr "Табліца %1$s створаная." msgid "Variable name was expected." msgstr "Шаблён назвы файла" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "У пачатку табліцы" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14810,19 +14797,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Радок быў выдалены" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15539,7 +15526,7 @@ msgstr "Праглядзець дамп (схему) табліцы" msgid "Invalid table name" msgstr "Некарэктнае імя табліцы" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16679,7 +16666,7 @@ msgid "at beginning of table" msgstr "У пачатку табліцы" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16728,7 +16715,7 @@ msgstr "падзеленая на сэкцыі" msgid "Edit partitioning" msgstr "Скасаваць падзел на часткі" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16863,12 +16850,12 @@ msgstr "Назва прагляду" msgid "Column names" msgstr "Назвы калёнак" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Перайменаваць табліцу ў" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Базы дадзеных адсутнічаюць" @@ -18053,6 +18040,19 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "максымум адначасовых злучэньняў" +#, fuzzy +#~| msgid "Delete relation" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Выдаліць сувязь" +#~ msgstr[1] "Выдаліць сувязь" +#~ msgstr[2] "Выдаліць сувязь" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "Закладка была выдаленая." + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/be@latin.po b/po/be@latin.po index 2eebd57021..cd90a506ae 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Belarusian (latin) " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Zachavać jak fajł" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Skinuć" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Vybrać usio" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Nie zadadzienaje značeńnie ŭ formie!" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "prynamsi adno z słovaŭ" -#: js/messages.php:118 +#: js/messages.php:120 #, 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:119 +#: js/messages.php:121 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid length!" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Dadać novaje pole" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit next row" msgid "Edit index" msgstr "Redagavać nastupny radok" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" msgstr "Dadać %s novyja pali" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Stvaryć suviaź" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Stvaryć suviaź" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Pali ŭziatyja ŭ" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %s field(s)" msgid "Please select column(s) for the index." msgstr "Dadać %s novyja pali" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Treba dadać prynamsi adno pole." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "pa zapytu" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Latched pages" msgid "Matched rows:" msgstr "Fiksavanyja staronki" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL-zapyt" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Značeńnie" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Pustoje imia chostu!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Pustoje imia karystalnika!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Pusty parol!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Paroli nie supadajuć!" -#: js/messages.php:148 +#: js/messages.php:150 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Vydalić vybranych karystalnikaŭ" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Kolkaść stvoranych staronak." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profil byŭ adnoŭleny." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Radok byŭ vydaleny" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Padłučeńni" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Local monitor configuration incompatible!" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1276,182 +1281,182 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Keš zapytaŭ" -#: js/messages.php:177 +#: js/messages.php:179 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Keš zapytaŭ" -#: js/messages.php:178 +#: js/messages.php:180 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Keš zapytaŭ" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "Vykarystańnie" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "Kolkaść fajłaŭ łogu" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Puł buferu" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Ahułam" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Vykarystańnie prastory" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "Volnych staronak" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Atrymana" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Padłučeńni" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Pracesy" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s tablic(y)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 #, fuzzy #| msgid "Relations" msgid "Questions" msgstr "Suviazi" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:215 +#: js/messages.php:217 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Źviać ź sietkaj" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1463,47 +1468,47 @@ msgstr "" msgid "None" msgstr "Nijakaja" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1511,158 +1516,158 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Zachavać jak fajł" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Uklučana" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, fuzzy, php-format #| msgid "Disabled" msgid "Disable %s" msgstr "Adklučana" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "Zapyt vykonvaŭsia %01.4f sek" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:254 +#: js/messages.php:256 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Zahałovak spravazdačy" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 #, fuzzy #| msgid "Reload privileges" msgid "Analysing logs" msgstr "Pierazahruzić pryvilei" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Zapyty čytańnia" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 #, fuzzy #| msgid "No databases" msgid "Jump to Log table" msgstr "Bazy dadzienych adsutničajuć" -#: js/messages.php:285 +#: js/messages.php:287 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Bazy dadzienych adsutničajuć" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Praanalizavać" -#: js/messages.php:290 +#: js/messages.php:292 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Tłumačyć SQL" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1670,7 +1675,7 @@ msgstr "Tłumačyć SQL" msgid "Status" msgstr "Stan" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1680,100 +1685,100 @@ msgstr "Stan" msgid "Time" msgstr "Čas" -#: js/messages.php:293 +#: js/messages.php:295 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Ahułam" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Prafilavańnie" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tablica" -#: js/messages.php:296 +#: js/messages.php:298 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Kadyroŭka" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "Opcyi tablicy" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 #, fuzzy #| msgid "Number of fields" msgid "Sum of grouped rows:" msgstr "Kolkaść paloŭ" -#: js/messages.php:306 +#: js/messages.php:308 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Ahułam" -#: js/messages.php:308 +#: js/messages.php:310 #, fuzzy #| msgid "Reload privileges" msgid "Loading logs" msgstr "Pierazahruzić pryvilei" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Abnavić" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1782,77 +1787,77 @@ msgstr "" msgid "Import" msgstr "Imrart" -#: js/messages.php:326 +#: js/messages.php:328 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: js/messages.php:328 +#: js/messages.php:330 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import." msgstr "Kali łaska, vybierycie pieršasny (PRIMARY) albo ŭnikalny kluč (UNIQUE)" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Abnavić zapyt" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Dakumentacyja" -#: js/messages.php:339 +#: js/messages.php:341 #, fuzzy #| msgid "Details…" msgid "Rule details" msgstr "Padrabiaźniej…" -#: js/messages.php:340 +#: js/messages.php:342 #, fuzzy #| msgid "Authenticating…" msgid "Justification" msgstr "Aŭtentyfikacyja…" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Add new field" msgid "No parameters found!" msgstr "Dadać novaje pole" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1864,74 +1869,74 @@ msgstr "Dadać novaje pole" msgid "Cancel" msgstr "Skasavać" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy #| msgid "Reload privileges" msgid "Loading…" msgstr "Pierazahruzić pryvilei" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Pracesy" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Keš zapytaŭ" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Pracesy" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Nia vybranaja baza dadzienych." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Procedure" msgid "Dropping column" msgstr "Pracedury" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "Dadać %s novyja pali" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1941,74 +1946,74 @@ msgstr "Dadać %s novyja pali" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Pierajmienavać bazu dadzienych u" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Kapijavać bazu dadzienych u" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Kadyroŭka" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Adklučyć pravierku źniešnich klučoŭ" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy msgid "Failed to get real row count." msgstr "Pamyłka zapisu na dysk." -#: js/messages.php:383 +#: js/messages.php:385 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Pošuk" -#: js/messages.php:384 +#: js/messages.php:386 #, fuzzy #| msgid "in query" msgid "Hide search results" msgstr "pa zapytu" -#: js/messages.php:385 +#: js/messages.php:387 #, fuzzy #| msgid "Showing SQL query" msgid "Show search results" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:386 +#: js/messages.php:388 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Prahlad" -#: js/messages.php:387 +#: js/messages.php:389 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Vydaleńnie %s" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -2024,50 +2029,50 @@ msgstr "" msgid "Export" msgstr "Ekspart" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Kolkaść paloŭ" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, fuzzy, php-format #| msgid "Add a new User" msgid "Add %d value(s)" msgstr "Dadać novaha karystalnika" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 #, fuzzy #| msgid "in query" msgid "Hide query box" msgstr "pa zapytu" -#: js/messages.php:408 +#: js/messages.php:410 #, fuzzy #| msgid "Showing SQL query" msgid "Show query box" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -2077,7 +2082,7 @@ msgstr "U vyhladzie SQL-zapytu" msgid "Edit" msgstr "Redagavać" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -2088,94 +2093,94 @@ msgstr "Redagavać" msgid "Delete" msgstr "Vydalić" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 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:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Prahladzieć źniešnija značeńni" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Źmiennaja" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Nivodny radok nia vybrany" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Pošuk u bazie dadzienych" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atrybuty" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 #, 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:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Źmianić" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2183,90 +2188,90 @@ msgstr "" msgid "End of step" msgstr "U kancy tablicy" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 #, fuzzy #| msgid "None" msgid "Done" msgstr "Nijakaja" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Nia vybranaja baza dadzienych." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Dadać pryvilei na nastupnuju tablicu" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Nia vybranaja baza dadzienych." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2276,446 +2281,446 @@ msgstr "Nia vybranaja baza dadzienych." msgid "Save" msgstr "Zachavać" -#: js/messages.php:472 +#: js/messages.php:474 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "pa zapytu" -#: js/messages.php:473 +#: js/messages.php:475 #, fuzzy #| msgid "Showing SQL query" msgid "Show search criteria" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Pošuk" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Nazvy kalonak" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Nazvy kalonak" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy #| msgid "in query" msgid "Hide find and replace criteria" msgstr "pa zapytu" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy #| msgid "Showing SQL query" msgid "Show find and replace criteria" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Dadać/vydalić kalonku kryteru" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Pamier ukazalnika na dadzienyja" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignaravać" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Skapijavać" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Radki padzielenyja" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Lines terminated by" msgid "Inner ring" msgstr "Radki padzielenyja" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Radki padzielenyja" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Vybierycie spasyłkavy kluč" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Vybierycie źniešni kluč" -#: js/messages.php:533 +#: js/messages.php:535 #, 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Staronka:" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Vybrać usio" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 #, 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:546 +#: js/messages.php:548 #, 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:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Relacyjnaja schiema" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Madyfikacyi byli zachavanyja" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Number of fields" msgid "Add an option for column \"%s\"." msgstr "Kolkaść paloŭ" -#: js/messages.php:555 +#: js/messages.php:557 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%d object(s) created." msgstr "Źmieniena radkoŭ: %1$d." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Adpravić" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Nazvy kalonak" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Pakazać usie" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Pieršapačatkovaja pazycyja" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Skasavać" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Spyniena" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "Impartavać fajły" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Paroh fajła łogu" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Vybierycie tablicu(y)" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Druk" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy #| msgid "No tables" msgid "Go to link:" msgstr "Niama tablic" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Nazvy kalonak" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Zgieneravać parol" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Zgieneravać" -#: js/messages.php:628 +#: js/messages.php:630 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pan" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Pakazać usie" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Dadać novaje pole" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Pakazać sietku" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Use text field" msgid "Link with main panel" msgstr "Vykarystoŭvać tekstavaje pole" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Use text field" msgid "Unlink from main panel" msgstr "Vykarystoŭvać tekstavaje pole" -#: js/messages.php:639 +#: js/messages.php:641 #, 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2723,124 +2728,124 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "Bazy dadzienych adsutničajuć" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Stvaryć" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Pakazać adkrytyja tablicy" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignaravać" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Pakazać hety zapyt znoŭ" -#: js/messages.php:700 +#: js/messages.php:702 #, 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:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, 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:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Kamentar da tablicy" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "in query" msgid "Hide arguments" msgstr "pa zapytu" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2849,38 +2854,38 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kapijavać bazu dadzienych u" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Dadać novaje pole" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Papiaredniaja staronka" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2888,96 +2893,96 @@ msgid "Next" msgstr "Nastupnaja staronka" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ahułam" -#: js/messages.php:755 +#: js/messages.php:757 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Dvajkovy" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Sak" -#: js/messages.php:758 +#: js/messages.php:760 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Kra" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Tra" -#: js/messages.php:760 +#: js/messages.php:762 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Čer" -#: js/messages.php:761 +#: js/messages.php:763 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Lip" -#: js/messages.php:762 +#: js/messages.php:764 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Žni" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Kas" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Sak" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Kra" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2985,78 +2990,78 @@ msgid "May" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Čer" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Žni" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Vier" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Śn" -#: js/messages.php:801 +#: js/messages.php:803 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ndz" -#: js/messages.php:802 +#: js/messages.php:804 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pan" -#: js/messages.php:803 +#: js/messages.php:805 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Aŭt" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Piat" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3064,86 +3069,86 @@ msgid "Sun" msgstr "Ndz" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Pan" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Aŭt" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Sier" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Cač" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Piat" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ndz" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pan" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Aŭt" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sier" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Cač" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Piat" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3152,139 +3157,139 @@ msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Nijakaja" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "vykarystoŭvajecca" -#: js/messages.php:873 +#: js/messages.php:875 #, fuzzy #| msgid "per second" msgid "Second" msgstr "u sekundu" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Vykarystoŭvać tekstavaje pole" -#: js/messages.php:886 +#: js/messages.php:888 #, 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:889 #, 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:890 #, 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:891 +#: js/messages.php:893 #, 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:893 +#: js/messages.php:895 #, 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:896 +#: js/messages.php:898 #, 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:898 +#: js/messages.php:900 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, 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:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, 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:925 +#: js/messages.php:927 #, 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:930 +#: js/messages.php:932 #, 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:936 +#: js/messages.php:938 #, 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:941 +#: js/messages.php:943 #, 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:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Pamyłka" @@ -3335,34 +3340,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Pamier šryfta" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "in query" msgid "Requery" msgstr "pa zapytu" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3381,92 +3386,73 @@ msgid "Database" msgstr "Baza dadzienych" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Delete relation" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Vydalić suviaź" -msgstr[1] "Vydalić suviaź" -msgstr[2] "Vydalić suviaź" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "Zakładka była vydalenaja." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Vydalić suviaź" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "Tłumačyć SQL" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Prafilavańnie" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Delete relation" msgid "Bookmark" msgstr "Vydalić suviaź" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query cache" msgid "Query failed" msgstr "Keš zapytaŭ" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy #| msgid "SQL query" msgid "SQL Query Console" msgstr "SQL-zapyt" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "Historyja SQL" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3484,181 +3470,181 @@ msgstr "Historyja SQL" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Nałady" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Delete relation" msgid "Bookmarks" msgstr "Vydalić suviaź" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Ctrl+Enter to execute query" msgstr "Vykanać zapyt z zakładak" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Enter to execute query" msgstr "Vykanać zapyt z zakładak" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "pramy" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "advarotny" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column names" msgid "Count" msgstr "Nazvy kalonak" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execution order" msgstr "Vykanać zapyt z zakładak" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "Show Full Queries" msgid "Group queries" msgstr "Pakazać poŭnyja zapyty" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "in query" msgid "Ungroup queries" msgstr "pa zapytu" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Pakazać koler" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Add new field" msgid "Hide trace" msgstr "Dadać novaje pole" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column names" msgid "Count:" msgstr "Nazvy kalonak" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Abnavić" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "I" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Delete relation" msgid "Add bookmark" msgstr "Vydalić suviaź" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "Mietka" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy #| msgid "Create new database" msgid "Target database" msgstr "Stvaryć novuju bazu dadzienych" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Delete relation" msgid "Share this bookmark" msgstr "Vydalić suviaź" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Default" msgid "Set default" msgstr "Pa zmoŭčańni" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "Flush query cache" msgid "Show query history at start" msgstr "Skinuć keš zapytaŭ" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Pierajści da skapijavanaj tablicy" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to set configured collation connection!" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3666,21 +3652,21 @@ msgid "" "configured)." msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Server nie adkazvaje" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Padrabiaźniej…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 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 " @@ -4062,7 +4048,7 @@ msgstr "Značeńnie moža być prybliznym. Hł. [doc@faq3-11]FAQ 3.11[/doc]" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4200,7 +4186,7 @@ msgstr "Zahruzka fajła spynienaja pašyreńniem." msgid "Unknown error in file upload." msgstr "Padčas zahruzki fajła adbyłasia nieviadomaja pamyłka." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -4208,11 +4194,11 @@ msgstr "" "Pamyłka pieramiaščeńnia zahružanaha fajła. Hladzicie raździeł " "[doc@faq1-11]1.11 u FAQ[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4280,8 +4266,8 @@ msgid "Keyname" msgstr "Imia kluča" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4331,13 +4317,13 @@ msgstr "Indeks %s byŭ vydaleny." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Vydalić" @@ -4437,7 +4423,7 @@ msgstr "Pryvilei" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Aperacyi" @@ -4452,7 +4438,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4874,11 +4860,11 @@ msgstr "Pamyłka stvareńnia źniešniaha kluča na %1$s (praviercie typy kalona msgid "No valid image path for theme %s found!" msgstr "Dapuščalny šlach da malunkaŭ temy %s nia znojdzieny!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Papiaredni prahlad niedastupny." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "hetaja" @@ -5151,21 +5137,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Kolkaść fajłaŭ łogu" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Maksymalny pamier: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5176,38 +5162,38 @@ msgstr "" msgid "MySQL said: " msgstr "Adkaz MySQL: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Tłumačyć SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Nie tłumačyć SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Biez PHP-kodu" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Vykanać zapyt" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Stvaryć PHP-kod" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5304,6 +5290,10 @@ msgstr "u hadzinu" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5424,48 +5414,48 @@ msgstr "Dadać %s novyja pali" msgid "Attributes" msgstr "Atrybuty" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file!" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Niekarektny indeks servera: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Niapravilnaje imia chostu dla servera %1$s. Kali łaska, praviercie " "kanfihurycyju." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Server" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "U kanfihuracyi vyznačany niekarektny metad aŭtentyfikacyi:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5473,24 +5463,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format 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:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6202,7 +6192,7 @@ msgstr "Paznačyć nazvy paloŭ u pieršym radku" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6210,7 +6200,7 @@ msgstr "Pali ŭziatyja ŭ" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6232,14 +6222,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Radki padzielenyja" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6874,7 +6864,7 @@ msgid "Column names in first row" msgstr "Paznačyć nazvy paloŭ u pieršym radku" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -8390,7 +8380,7 @@ msgid "Table %s has been emptied." msgstr "Tablica %s była ačyščanaja." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8533,8 +8523,8 @@ msgid "No data to display" msgstr "Bazy dadzienych adsutničajuć" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8585,57 +8575,57 @@ msgstr[2] "" msgid "No column selected." msgstr "Nivodny radok nia vybrany" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Typ zapytu" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Źmianić" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Poŭnatekstekstavaje" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8647,7 +8637,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Niama źmienaŭ" @@ -9524,57 +9514,57 @@ msgstr "MySQL viarnuła pusty vynik (to bok nul radkoŭ)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "Bazy dadzienych adsutničajuć" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "No tables" msgid "Go to table: %s" msgstr "Niama tablic" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tolki strukturu" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9625,51 +9615,51 @@ msgstr "Abo" msgid "web server upload directory:" msgstr "tečka web-servera dla zahruzki fajłaŭ" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Ustavić" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, 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:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "i paśla" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Ustavić jak novy radok" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Pierajści da papiaredniaj staronki" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Dadać jašče adzin radok" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Viarnucca da hetaj staronki" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Redagavać nastupny radok" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9679,7 +9669,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9691,11 +9681,11 @@ msgstr "" msgid "Value" msgstr "Značeńnie" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "U vyhladzie SQL-zapytu" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "ID ustaŭlenaha radku: %1$d" @@ -10591,7 +10581,7 @@ msgstr "Ramantavać tablicu" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10608,32 +10598,32 @@ msgid "Delete the table (DROP)" msgstr "Kapijavać bazu dadzienych u" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Praanalizavać" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Pravieryć" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Aptymizavać" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Pierabudavać" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Adramantavać" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10659,37 +10649,37 @@ msgstr "Skasavać padzieł na častki" msgid "Check referential integrity:" msgstr "Pravieryć cełasnaść dadzienych:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Niemahčyma pieranieści tablicu ŭ samu siabie!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Niemahčyma skapijavać tablicu ŭ samu siabie!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tablica %s była pieraniesienaja ŭ %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tablica %s była skapijavanaja ŭ %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Pustaja nazva tablicy!" @@ -10888,7 +10878,7 @@ msgstr "Nałady ekspartu bazy dadzienych" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Damp dadzienych tablicy" @@ -10914,21 +10904,21 @@ msgstr "Apisańnie" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struktura tablicy" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktura dla prahladu" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Zamianialnaja struktura dla prahladu" @@ -11046,7 +11036,7 @@ msgid "Database:" msgstr "Baza dadzienych" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11164,7 +11154,7 @@ msgid "Data creation options" msgstr "Opcyi pieraŭtvareńnia" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11233,7 +11223,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11285,61 +11275,61 @@ msgstr "vykarystoŭvajecca" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Abmiežavańni dla ekspartavanych tablic" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Abmiežavańni dla tablicy" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Abmiežavańni dla ekspartavanych tablic" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "U tablicy(ach):" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Dadać značeńnie AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Dadać značeńnie AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME-typy tablicy" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "Suviazi ŭ tablicy" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11375,7 +11365,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11395,34 +11385,34 @@ msgstr "" msgid "Column names: " msgstr "Nazvy kalonak" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Niedapuščalny paremetar dla impartu dadzienych u CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Niekarektny farmat CSV-dadzienych u radku %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Niapravilnaja kolkaść paloŭ u CSV-dadzienych u radku %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Hety płahin nie padtrymlivaje ścisnutyja dadzienyja!" @@ -11430,29 +11420,29 @@ msgstr "Hety płahin nie padtrymlivaje ścisnutyja dadzienyja!" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." msgstr "Niekarektny farmat CSV-dadzienych u radku %d." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11462,23 +11452,23 @@ msgstr "Specyfikacyja Open Document" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -11494,7 +11484,7 @@ msgstr "Režym sumiaščalnaści SQL" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14755,15 +14745,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14778,17 +14764,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14810,23 +14797,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Kolkaść adkrytych tablic." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Kolkaść adkrytych tablic." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14855,17 +14842,17 @@ msgstr "Tablica %1$s stvoranaja." msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "U pačatku tablicy" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14886,19 +14873,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15602,7 +15589,7 @@ msgstr "Prahladzieć damp (schiemu) tablicy" msgid "Invalid table name" msgstr "Niekarektnaje imia tablicy" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16746,7 +16733,7 @@ msgid "at beginning of table" msgstr "U pačatku tablicy" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16795,7 +16782,7 @@ msgstr "padzielenaja na sekcyi" msgid "Edit partitioning" msgstr "Skasavać padzieł na častki" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16931,11 +16918,11 @@ msgstr "Nazva prahladu" msgid "Column names" msgstr "Nazvy kalonak" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Copy database to" msgid "Delete the view (DROP)" @@ -18137,6 +18124,19 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "maksymum adnačasovych złučeńniaŭ" +#, fuzzy +#~| msgid "Delete relation" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Vydalić suviaź" +#~ msgstr[1] "Vydalić suviaź" +#~ msgstr[2] "Vydalić suviaź" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "Zakładka była vydalenaja." + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/bg.po b/po/bg.po index 94090bf2d8..288e4d419b 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-06-28 13:36+0200\n" "Last-Translator: Valter Georgiev \n" "Language-Team: Bulgarian " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save & Close" msgid "Save & close" msgstr "Запис & затварянре" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Изчистване" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Reset All" msgid "Reset all" msgstr "Нулиране на всички" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Липсва стойност в поле от формуляра!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Изберете поне една от опциите!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Моля, въведете валиден номер на порт!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Моля, въведете валидна дължина!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Добавяне на индекс" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Редактиране индекс" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Добавяне на %s колона(и) към индекса" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Създаване на индекс на една колона" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Създаване на композитен индекс" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Комбинация от:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Моля, изберете колони за индекса." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Трябва да добавите поне една колона." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Преглед на SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Симулиране на заявка" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Съвпадащи редове:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL заявка:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Стойности на Y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Името на хоста е празно!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Потребителското име е празно!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Паролата е празна!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Паролата не е същата!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Изтриване на маркираните потребители" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Затваряне" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "Page has been created." msgid "Template was created." msgstr "Страница беше създадена." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Профилът беше обновен." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Редът беше изтрит" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Друго" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Връзки / Процеси" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Локалната настройка на наблюдателя е несъвместима!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1167,165 +1171,165 @@ msgstr "" "да не работят вече. Моля нулирайте настройките до тези по подразбиране в " "меню Настройки." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Ефикасност на буфера за заявки" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Използване на буфера за заявки" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Използвано от буфера за заявки" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Натоварване на процесора" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Системна памет" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Системен swap" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Средно натоварване" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Общо памет" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Памет в буфери" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Буферирана памет" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Свободна памет" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Използвана памет" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Всичкия swap" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Кеширан swap" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Използван swap" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Свободен swap" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Байта изпратени" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Байта получени" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Връзки" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Процеси" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "Б" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "КБ" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "ЕБ" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d таблица(и)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Запитвания" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Настройки" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Добавяне диаграма към мрежата" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Моля добавете поне една променлива към сериите!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1337,47 +1341,47 @@ msgstr "Моля добавете поне една променлива към msgid "None" msgstr "Няма" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Подновяване на наблюдателя" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Bременно спиране на наблюдателя" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Стартиране на самоопресняване" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Спиране на самоопресняване" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log и slow_query_log са разрешени." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log е разрешен." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log е разрешен." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log и general_log са забранени." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "на log_output не е зададено TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "на log_output е зададено TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1388,12 +1392,12 @@ msgstr "" "отнемащи повече от %d секунди. Препоръчително е да зададете на " "long_query_time 0-2 секунди, в зависимост от вашата система." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time е зададено на %d секунда(и)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1402,30 +1406,30 @@ msgstr "" "подразбиране след рестарт на сървъра:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Задаване на log_output на %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Включване %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Изключване %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Задаване на long_query_time на %d секунди." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1433,57 +1437,57 @@ msgstr "" "Не може да променяте тези променливи. Моля, влезте като root или се обърнете " "към администратор." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Промяна настройки" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Текущи настройки" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Заглавие на диаграмата" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Диференциални" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Разделени с %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Единица" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "От дневника за бавни заявки" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "От общия дневник" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "Базата данни е непозната за тази заявка в логовете на сървъра." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Зареждане дневници" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Анализиране и зареждане на дневници. Ще отнеме малко време." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Отмяна на заявката" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1493,7 +1497,7 @@ msgstr "" "SQL заявка е използвана като критерий за групиране и другите атрибути на " "заявката, като начало на изпълнението, може да са различни." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1502,32 +1506,32 @@ msgstr "" "Тъй като е избрано групиране на заявки за вмъкване, такива към същата " "таблица също ще са групирани заедно, без оглед на вмъкваните данни." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "Данните заредени. Заявки изпълнени в този времеви интервал:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Към таблицата-дневник" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Няма данни" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Дневникът е проверен, но няма заявки изпълнени в този времеви интервал." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Анализиране…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Обяснение на изхода" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1535,7 +1539,7 @@ msgstr "Обяснение на изхода" msgid "Status" msgstr "Състояние" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1545,60 +1549,60 @@ msgstr "Състояние" msgid "Time" msgstr "Време" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Общо време:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Резултат от профилиране" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Таблица" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Диаграма" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Опции за филтриране на таблица-дневник" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Филтър" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Филтриране заявки по дума/регулярен израз:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "Групиране на заявките и игнориране на променливата информация в WHERE " "клаузите" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Брой групирани редове:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Общо:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Зареждане на дневници" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Опресняването на монитора се провали" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1608,26 +1612,26 @@ msgstr "" "вероятно това се дължи на изтекла сесия. Презареждане страницата и ново " "удостоверяване трябва да помогне." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Презареждане страницата" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Засегнати редове:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "Грешка в конфигурационен файл. Изглежда не е валиден JSON код." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Създаването на силмолна таблица с въведеното кодиране се провали. " "Пренастройка към кодирането по подразбиране…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1636,67 +1640,67 @@ msgstr "" msgid "Import" msgstr "Импорт" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Импорт настройки за наблюдателя" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Изберете файла, който искате да импортирате." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "На сървъра няма налични файлове за импорт!" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "Анализиране заявка" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Съветническа програма" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Възможни проблеми с производителността" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Проблем" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Препоръка" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Детайли за правило" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Подравняване" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Използвана променлива / формула" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Тест" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Форматиране на SQL…" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Грешни параметри!" -#: js/messages.php:350 +#: js/messages.php:352 #: 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,72 +1712,72 @@ msgstr "Грешни параметри!" msgid "Cancel" msgstr "Отмяна" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Страница-свързани настройки" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Прилагане" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Зареждане…" -#: js/messages.php:358 +#: js/messages.php:360 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "Искането е отказано!" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Обработка на заявката" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Request Failed!!" msgid "Request failed!!" msgstr "Заявката се провали!" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Error in processing request" msgid "Error in processing request" msgstr "Грешка при обработка на заявката" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Код за грешка: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Текст на грешката: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Няма избрани БД." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Изтриване на колона" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Добавяне на първичен ключ" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1783,61 +1787,61 @@ msgstr "Добавяне на първичен ключ" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Щракнете, за да скриете това съобщение" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Преименуване БД" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Копиране БД" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Промяна знаков набор" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Включване на проверките за външен ключ" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Неточно преброяване на редовете." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Търсене" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Скриване резултати от търсенето" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Показване резултати от търсенето" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Прелистване" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Изтриване" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Дефиницията на съхранена процедура трябва да съдържа израз RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1853,44 +1857,44 @@ msgstr "Дефиницията на съхранена процедура тря msgid "Export" msgstr "Експорт" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET редактор" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Стойности за колоната %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Стойности за нова колона" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Въвеждайте всяка стойност в отделно поле." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Добавяне %d стойност(и)" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Заб.: Ако файлът съдържа няколко таблици, те ще бъдат обединени." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Скриване формата за заявки" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Показване формата за заявки" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1900,7 +1904,7 @@ msgstr "Показване формата за заявки" msgid "Edit" msgstr "Редакция" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1911,41 +1915,41 @@ msgstr "Редакция" msgid "Delete" msgstr "Изтриване" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d не е валиден номер на ред." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Разглеждане на външни стойности" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Без автоматично запазване на заявка" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Променлива %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Изберете" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Избор на колона" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Търсене в този списък" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1955,15 +1959,15 @@ msgstr "" "колони на базата данни %s има колони, които не присъстват в настоящата " "таблица." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Вижте повече" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Сигурни ли сте?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1971,51 +1975,51 @@ msgstr "" "Това действие може да промени дефиницията на накоя от колоните.
Сифурни " "ли сте, че искате да продължите?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Продължете" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Добавяне на първичен ключ" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Беше добавен главен ключ." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Към следващата стъпка…" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Първата стъпка от нормализирането е завършено за таблиза '%s'." -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Край на стъпката" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Втора стъпка на нормализация (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Готово" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Потвърждаване на частичната зависимост" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Избраните частични зависимостити са следните:" -#: js/messages.php:444 +#: js/messages.php:446 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2023,20 +2027,20 @@ msgstr "" "Забележка: а, б -> D, F предполага стойности на колони А и В се комбинират " "заедно могат да се определят стойностите на колона г и колона е." -#: js/messages.php:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Няма избрани частични зависимости!" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Покажи ми възможните частични зависимости, базирани на данните в таблицата" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Скриване на листа с частичните зависимости" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2044,41 +2048,41 @@ msgstr "" "Облегнете се! Може да отнеме няколко секунди, в зависимост от размера на " "данните и броя на колоните в таблицата." -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Стъпка" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Следните действия ще бъдат изпълнени:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "ИЗТРИВАНЕ на колона/и %s от таблицата %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Създаване на следната таблица" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Трета стъпка на нормализация (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Потвърждаване на преходните зависимости" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Избраните зависимости са следните:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Няма избрани зависимости!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2088,130 +2092,130 @@ msgstr "Няма избрани зависимости!" msgid "Save" msgstr "Запазване" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Скриване критерий за търсене" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Показване критерий за търсене" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Търсене в област" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Максимум колони:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Минимум колони:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Минимална стойност:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Максимална стойност:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Скриване параметрите за търсене и заместване" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Показване параметрите за търсене и заместване" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Всяка точка представлява ред." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Посочване на точка ще покаже етикета ѝ." -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "За да увеличите, изберете част от диаграмата с мишката." -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" "Щракнете върху връзката за възстановяване на мащабирането, за да се върнете " "в състоянието по подразбиране." -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Кликнете върху точката с данните, за да видите и евентуално промените реда." -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Плотът може да се преоразмерява, като го дръпнете за долния десен ъгъл." -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Изберете две колони" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Изберете две различни колони" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Съдържание на точката с данни" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Игнориране" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Копиране" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Точка" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Linestring" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Многоъгълник" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Геометрия" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Вътрешен пръстен" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Външен контур:" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Искате ли да копирате криптиращия ключ?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Криптиращ ключ" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2219,24 +2223,24 @@ msgstr "" "Изглежда сте направили промени на страницата; ще бъдете уведомени преди да " "изоставите промените" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Изберете посочвания ключ" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Избор външен ключ" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Моля изберете главен или уникален ключ!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Изберете колона за показване" -#: js/messages.php:536 +#: js/messages.php:538 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,76 +2248,76 @@ msgstr "" "Не сте записали промените в оформлението. Те ще бъдат загубени, ако не ги " "запазите. Искате ли да продължите?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Име на страница" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Записване на страница" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Записване на страница като" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Отвори страница" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Изтриване на страница" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Неозаглавено" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Моля изберете страница, за да продължите" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Моля, въведете валидно име на страница" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "Искате ли да запишете промените на текущата страница?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Изтриването на страницата е успешно" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Експорт на релационна схема" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Промените бяха запазени" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Добавяне на опция към колона \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d обект(а) бяха създадени." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Изпълнение" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Натиснете Esc за отмяна на редакцията." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2321,15 +2325,15 @@ msgstr "" "Редактирали сте данни и те не са запазени. Наистина ли искате да напуснете " "страницата преди запазването им?" -#: js/messages.php:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Завличане за промяна на подредбата." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Кликнете за сортиране на резултата по тази колона." -#: js/messages.php:567 +#: js/messages.php:569 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 " @@ -2339,26 +2343,26 @@ msgstr "" "ASC/DESC.
- Control+кликване за премахване на колоната от ORDER BY " "клаузата" -#: js/messages.php:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Щракване за маркиране/отмаркиране." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Щракнете двукратно за копиране името на колона." -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Щракнете стрелката,
за да изберете колони." -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Показване на всички" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2367,11 +2371,11 @@ msgstr "" "редакция, отметката, връзките редактиране, копиране и изтриване може да не " "работят след запазване." -#: js/messages.php:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "Моля въведете валиден шеснадесетичен низ. Валидни символи са 0-9, A-F." -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2379,111 +2383,111 @@ msgstr "" "Наистина ли искате да видите всички редове? За една голяма таблица, това " "може да блокира браузъра." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Първоначална дължина" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "Отмяна" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Прекъснати" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Успех" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Състояние на импорта" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Пуснете файловете тук" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Първо избетере база данни" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Печат" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Можете също да редактирате повече стойности
като щракнете два пъти " "директно върху тях." -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Можете също да редактирате повече стойности
като щракнете директно върху " "тях." -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Към връзка:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Копиране името на колоната." -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Кликване с десния бутон върху името на колоната, за да го копирате в " "системния буфер." -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Генериране на парола" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Генериране" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Още" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Показване на панела" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Скриване на панела" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Показване на скритото навигационно дърво." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Свързване с главния панел" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Премахване от главния панел" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Исканата страница не беше намерена в хронологията, може би е с изтекла " "валидност." -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2493,31 +2497,31 @@ msgstr "" "версия е %s, излязла на %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", последната стабилна версия:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "актуално" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Създаване на изглед" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Порт на сървъра" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "представи доклад за грешка" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2525,25 +2529,25 @@ msgstr "" "Възникнала е грешка фатална JavaScript. Бихте ли искали да изпратите доклад " "за грешка?" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Промяна на рапорт настройки" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Показване детайли за рапорта" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "Вашият износ е непълна, поради нисък изпълнение срок на ниво PHP!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2553,58 +2557,58 @@ msgstr "" "някои от полетата могат да бъдат пренебрегнати, поради max_input_vars " "конфигурацията на PHP." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Засечени са някой грешки на сървъра!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Моля погледнете в края на този прозорец." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Игнориране на всички" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Според настройките си, те се подава в момента, моля, бъдете търпеливи." -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Изпълняване на заявката отново?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Наистина ли искате да изтриете отметката: \"%s\"?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s изпълнени заявки %s пъти %s секунди." -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Покажи доводи" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Скриване доводи" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2613,355 +2617,355 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Копиране на БД в" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix" msgid "Add table prefix" msgstr "Добавяне на представка на таблица" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Замяна на представката на таблица" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Копиране на таблицата с представка" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Преден" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Следващ" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Днес" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "януари" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "февруари" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "март" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "април" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "май" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "юни" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "юли" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "август" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "септември" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "октомври" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "ноември" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "декември" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "яну" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "фев" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "март" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "май" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "юни" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "юли" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "септ" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "ное" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "дек" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "неделя" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "понеделник" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "вторник" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "сряда" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "четвъртък" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "петък" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "събота" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "нд" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "пн" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "вт" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "ср" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "чт" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "пт" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "сб" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "нд" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "пн" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "вт" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "ср" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "чт" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "пт" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "календар-месец-година" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "няма" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Час" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "минута" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "секунда" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Моля поправете тази област" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Моля въведете валиден емайл адрес" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Моля, въведете валиден URL" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Моля, въведете валидна дата" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Моля въведете валидна дата (ISO)" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Моля, въведете валиден номер" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Моля, въведете валиден номер на кредитна карта" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Моля, въведете само цифри" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Моля, въведете една и съща стойност отново" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Моля, въведете поне {0} букви" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Моля, въведете стойност между {0} и {1}" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "Моля въведете стойност по-малка или равна на {0}" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "Въведете стойност по-голяма от или равна на {0}" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Моля, въведете валиден дата или час" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Моля, въведете валиден HEX" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Грешка" @@ -3013,34 +3017,34 @@ msgstr "Неочаквани знаци на ред %s." msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "Неочакван знак на ред %1$s. Очакван табулатор, но намерен \"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Текущия файл с настройки (%s) е недостъпен." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Неподходящи права на файлът с настройки, в него не трябва да може да пише " "всеки!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Размер шрифт" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Колапс" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Разширяване" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Подзаявка" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3060,76 +3064,59 @@ msgstr "DB" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Изтриване на %d отметка" -msgstr[1] "Изтриване на %d отметки" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "частен" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "споделен" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s и %3$s бележките бяха включени" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Няма бележки" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "По време на текущата сесия" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Обяснение" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Профилиране" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Бележки" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Заявката е не успешна" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Време за изпълнение на заявката" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "SQL конзола" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Конзола" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Изчистване" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "SQL изтория" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3147,141 +3134,141 @@ msgstr "SQL изтория" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Настройки" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Бележки" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Трасиране SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Натисни Ctrl+Enter за изпълнение на заявката" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Натиснете Enter, за да изпълни заявката" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "възходящо" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "низходящо" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Поръчка:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Броене" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Изпълнение на поръчката" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Подредени по:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Група заявки" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Разгрупиране на заявки" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Покажи следа" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Скрий следа" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Бройка:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Опресняване" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Добави" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Добави бележка" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Етикет" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Целева БД" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Сподели тази бележка" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Сложи по подразбиране" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Винаги разширите заявки съобщения" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Покажи историята на заявката в началото" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Показване на текущата заявка браузване" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Превключи на тъмна палитра" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "Неуспешно прочитане на конфигурацията" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3289,19 +3276,19 @@ msgstr "" "Сървърът не отговаря (или местният сокет на сървъра не е конфигуриран " "правилно)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Сървърът не отговаря." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Проверете правата на папката, съдържаща БД." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Подробности…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3632,7 +3619,7 @@ msgstr "Може да има приблизителна стойност. Виж #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3763,18 +3750,18 @@ msgstr "Качването на файлът беше спряно от разш msgid "Unknown error in file upload." msgstr "Неизвестна грешка при качване." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Грешка при преместване на качения файл, виж [doc@faq1-11]ЧЗВ 1.11[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Грешка при преместване на качения файл." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -3844,8 +3831,8 @@ msgid "Keyname" msgstr "Име на ключ" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3895,13 +3882,13 @@ msgstr "Индекс %s беше изтрит." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Изтриване" @@ -4001,7 +3988,7 @@ msgstr "Права" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Операции" @@ -4016,7 +4003,7 @@ msgstr "Проследяване" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4423,11 +4410,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "Не открито изображение към тема %s!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Прегледът не е достъпен." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "тази ще е" @@ -4694,23 +4681,23 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Пространствен" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Максимум: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Статична информация" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4721,38 +4708,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL отговори: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Обяснение на SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Пропусни Explain SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Без PHP код" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Изпълни заявката" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Създаване на PHP код" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -4844,6 +4831,10 @@ msgstr "на час" msgid "per day" msgstr "на ден" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "споделен" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -4962,13 +4953,13 @@ msgstr "Добавяне колона" msgid "Attributes" msgstr "Атрибути" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to read configuration file!" msgstr "Неуспешно прочитане на конфигурацията" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4976,32 +4967,32 @@ msgstr "" "Това обикновено означава, че има синтактична грешка в него, моля, проверете " "всички грешки, показани по-долу." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Конфигурацията по подразбиране не може да бъде заредена от: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Невалиден индекс на сървър: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Невалиден хост за сървър %1$s. Прегледайте конфигурацията." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Сървър" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Невалиден метод за удостоверяване в конфогурацията:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5009,24 +5000,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Осъвременете до %s %s или по-нова." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "възможен пробив в сигурността" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "цифров ключ открит" @@ -5825,7 +5816,7 @@ msgstr "Поставяне имената на полетата в първи р #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Columns enclosed with:" msgid "Columns enclosed with" @@ -5833,7 +5824,7 @@ msgstr "Колоните са оградени от:" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Columns escaped with:" msgid "Columns escaped with" @@ -5855,14 +5846,14 @@ msgstr "Премахване CRLF знаци от колони" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "Колоните завършват с" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated with:" msgid "Lines terminated with" @@ -6517,7 +6508,7 @@ msgid "Column names in first row" msgstr "Имена на колони в първи ред" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Празните редове да не бъдат импортирани" @@ -8189,7 +8180,7 @@ msgid "Table %s has been emptied." msgstr "Таблицата %s беше изчистена." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8328,8 +8319,8 @@ msgid "No data to display" msgstr "Няма данни" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8377,53 +8368,53 @@ msgstr[1] "" msgid "No column selected." msgstr "Няма избрана колона." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Колоните бяха преместени упешно." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Грешка в заявката" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Промяна" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Индекс" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Пространствен" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Пълнотекстово" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Уникални стойности" @@ -8433,7 +8424,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Разширението %s липсва. Проверете конфигурацията на PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Няма промяна" @@ -9208,54 +9199,54 @@ msgstr "MySQL върна празен резултат (т.е. нула редо msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Към БД: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Редактиране настройките на %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Към таблица: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Структурата на %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9305,48 +9296,48 @@ msgstr "Или" msgid "web server upload directory:" msgstr "директорията за upload на web сървъра" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Редакция/Вмъкване" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "и след това" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Вмъкване като нов ред" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Показване заявка за вмъкване" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Обратно към предната страница" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Вмъкване нов ред" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Връщане към тази страница" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Редакция на следващия ред" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9356,7 +9347,7 @@ msgstr "" "Използвайте клавиша TAB, за да премествате крурсора от стойност на стойност " "или CTRL+стрелка, за да премествате курсора в съответната посока" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9368,11 +9359,11 @@ msgstr "" msgid "Value" msgstr "Стойност" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10270,7 +10261,7 @@ msgstr "Поправяне на таблицата" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -10283,32 +10274,32 @@ msgid "Delete the table (DROP)" msgstr "Изтриване на таблицата (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Анализиране" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Проверка" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Оптимизиране" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Поправяне" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10336,37 +10327,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Проверка на интегритета на връзките:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Не може да се премести таблицата към себе си!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Не може да се копира таблицата към себе си!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Таблицата %s беше преместена към %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Таблица %s беше копирана в %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Името на таблицата е празно!" @@ -10545,7 +10536,7 @@ msgstr "Опции при експортиране на данните" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Схема на данните от таблица" @@ -10569,21 +10560,21 @@ msgstr "Описание" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Структура на таблица" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10689,7 +10680,7 @@ msgid "Database:" msgstr "БД" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10796,7 +10787,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10885,7 +10876,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10931,60 +10922,60 @@ msgstr "ползва се в момента" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Ограничения за дъмпнати таблици" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Ограничения за таблица" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ограничения за дъмпнати таблици" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "В таблици:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Да не се използва AUTO_INCREMENT за нулеви стойности" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Добавяне AUTO_INCREMENT стойност" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВЕ ЗА ТАБЛИЦА" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИИ ЗА ТАБЛИЦА" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Грешка при четене на данни:" @@ -11018,7 +11009,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11036,33 +11027,33 @@ msgstr "" msgid "Column names: " msgstr "Имена на колони: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11070,28 +11061,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11101,23 +11092,23 @@ msgstr "Open Document Spreadsheet" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "The imported file does not contain any data" msgid "The imported file does not contain any data!" @@ -11131,7 +11122,7 @@ msgstr "Режим на съвместимост на SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Да не се използва AUTO_INCREMENT за нулеви стойности" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14153,15 +14144,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14176,17 +14163,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14208,23 +14196,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Броят отворени таблици." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Броят отворени таблици." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14257,17 +14245,17 @@ msgstr "Събитието %1$s беше създадено." msgid "Variable name was expected." msgstr "Шаблон за име на таблица" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "В началото на таблицата" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14290,19 +14278,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Редът беше изтрит" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15008,7 +14996,7 @@ msgstr "Схема (дъмп) на таблицата" msgid "Invalid table name" msgstr "Невалидно име на таблица" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16081,7 +16069,7 @@ msgid "at beginning of table" msgstr "В началото на таблицата" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16126,7 +16114,7 @@ msgstr "Положение" msgid "Edit partitioning" msgstr "Редактиране" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Изглед за редакция" @@ -16253,11 +16241,11 @@ msgstr "Име на ИЗГЛЕД" msgid "Column names" msgstr "Име на колона" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Преименуване на изгледа на" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Delete the table (DROP)" msgid "Delete the view (DROP)" @@ -17388,6 +17376,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert e 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Изтриване на %d отметка" +#~ msgstr[1] "Изтриване на %d отметки" + +#~ msgid "private" +#~ msgstr "частен" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s и %3$s бележките бяха включени" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/bn.po b/po/bn.po index 101ce07f83..c574ee1977 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:44+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bengali " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "ফাইল এর মত সংরক্ষন" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "পূর্বাবস্থায়" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "সবগুলো নির্বাচন" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "র্ফমে কোন তথ্য নাই!" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "অবশ্যই যে কোন একটি শব্দ" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "একটি কার্যকর দৈর্ঘ্য দিন!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "ইনডেক্স যোগ কর" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "ইনডেক্স সম্পাদনা" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "%s স্বম্ভ ইনডেক্সে যোগ কর" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Server version" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Server version" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Columns enclosed with:" msgid "Composite with:" msgstr "স্তম্ভ সীমিত করা হবে:" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %s column(s) to index" msgid "Please select column(s) for the index." msgstr "%s স্বম্ভ ইনডেক্সে যোগ কর" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "আপনাকে অন্তত একটি স্বম্ভ যোগ করতে হবে।" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "অনুসন্ধানের মধ্য" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "প্রভাবিত রোসমুহ:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL অনুসন্ধান:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y এর মানসমূহ" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "হোষ্ট নামটি শুন্য!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "ব্যাবহারকারী নামটি শুন্য!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "পাসওয়ার্ডটি শুন্য!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "পাসওর্য়াডগুলো এক নয়!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "নির্বাচিত ব্যবহারকারীদের মুছে ফেলা হচ্ছে" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "বন্ধ" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "প্রস্তুতকৃত পাতার সংখ্যা।" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "প্রোফাইল আপডেট করা হয়েছে।" -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "রো টি মুছা হয়েছে।" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "অন্যান্য" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "সংযোগসমূহ/প্রক্রিয়াসমূহ" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "স্থানীয় পর্যবেক্ষক কনফিগারেশন উপযুক্ত নয়" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1227,165 +1231,165 @@ msgstr "" "কনফিগারেশন কাজ করবে না মনে হয়। আপনার কনফিগরেশন Settings ম্যানু থেকে " "স্বাভাবিকে নির্ধারন করন।" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "অনুসন্ধান ক্যাশের দক্ষতা" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "অনুসন্ধান ক্যাশের ব্যবহার" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "ব্যাবহৃত অনুসন্ধান ক্যাশ" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "সিস্টেম সিপিইউর ব্যবহার" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "সিস্টেম মেমোরী" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "সিস্টেম সোআপ" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "গড় লোড" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "মোট মেমরী" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "ক্যাশড মেমোরী" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "বাফারড মেমোরী" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "উন্মুক্ত মেমোরী" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "ব্যবহৃত মেমোরী" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "মোট সোআপ" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "ক্যাশড সো্‌আপ" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "ব্যবহৃত সোআপ" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "মুক্ত সোআপ" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "প্রেরিত বাইট" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "গৃহীত বাইট" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "সংযোগসমূহ" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "প্রক্রিয়াসমূহ" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "বি" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "কিবা" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "মেবা" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "জিবি" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "টিবি" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "পিবি" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "ইবি" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d টেবিল" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "প্রশ্নসমূহ" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "গমনাগমন" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "সেটিংস" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "গ্রিডে চিত্র যোগকর" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "সিরিজে অন্তত একটি চলক যোগ করুন!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1397,47 +1401,47 @@ msgstr "সিরিজে অন্তত একটি চলক যোগ ক msgid "None" msgstr "কিছু না" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "র্পযবেক্ষন পুনরায় শুরু কর" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "পর্যবেক্ষন বিরতি" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log এবং slow_query_log কার্যকর করা হয়েছে।" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log কার্যকর করা হয়েছে।" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log কার্যকর করা হয়েছে।" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "general_log এবং slow_query_log অকার্যকর করা হয়েছে।" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output টেবলে নির্ধারন করা হয়নি।" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output টেবলে নির্ধারন করা হয়েছে।" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1448,12 +1452,12 @@ msgstr "" "সার্ভার শুধু এগুলোই লগ করছে। সিস্টেমের উপর নির্ভর করে long_query_time ০-২ সেকেন্ডে " "নির্ধারন করা ভাল।" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time %d সেকেন্ডে নির্ধারন করা হয়েছে।" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1462,30 +1466,30 @@ msgstr "" "করবে। আবার চালু করুন:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "log_output %s নির্ধারন কর" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "সক্রিয় %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "নিক্রিয় %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "long_query_time %d সেকেন্ড নির্ধারন কর।" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1493,57 +1497,57 @@ msgstr "" "আপনি এই চলকগুলো পরিবর্তন করতে পারবেন না। রুট হিসাবে লগইন করুন বা ডাটাবেইজ " "প্রশাসকের সংগে যোগাযোগ করুন।" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "সেটিংস পরিবর্তন" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "বর্তমান সেটিংস" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "চিত্রের নাম" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "পৃথকিকরণ" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "%s দ্বার ভাগ করা হয়েছে" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "একক" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "ধীর লগ থেকে" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "সাধারন লগ থেকে" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "এই অনুসন্ধানের ডাটাবেইজ নামটি সার্ভার লগে নাই।" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "লগ বিশ্লেষন করছি" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "লগসমূহ বিশ্লেষন এবং লোড করছি। কিছু সময লাগবে।" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "অনুরোধ বাতিল" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1553,7 +1557,7 @@ msgstr "" "SQL অনুসন্ধানটিই ব্যবহৃত হয়েছে। অনুসন্ধানগুলোর অন্যান্য বিষয়, যেমন আরম্ভের সময় ইত্যাদি " "পার্থক্য হতে পারে।" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1562,31 +1566,31 @@ msgstr "" "দলবদ্ধ করার জন্য INSERT অনুসন্ধান নির্বাচন করা হয়েছে,একই টেবলের INSERT " "অনুসন্ধানগুলোও insert করা তথ্যগুলো বাদে দলবদ্ধ করা হয়েছে।" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "লগের তথ্য লোড করা হয়েছে। এই সময়ের মধ্য সম্পাদনকৃত অনুসন্ধানসমূহ:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "লগ টেবিলে যাও" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "কোন তথ্য পাওয়া যায় নাই" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "লগ বিশ্লেষন করা হয়েছে, কিন্তু এই সময়ের মধ্যে কোন তথ্য পাওয়া যায়নি।" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "বিশ্লেষন করছি…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "আউটপুটের ব্যাখা" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1594,7 +1598,7 @@ msgstr "আউটপুটের ব্যাখা" msgid "Status" msgstr "অবস্থা" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1604,58 +1608,58 @@ msgstr "অবস্থা" msgid "Time" msgstr "সময়" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "মোট সময়:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "প্রোফাইলিং এর ফলাফল" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "টেবল" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "চিত্র" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "লগ টেবল ফিল্টার অপশন" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "ফিল্টার" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "অনুসন্ধান word/regexp দ্বারা ফিল্টার কর:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "WHERE এর তথ্য উপেক্ষা করে অনুসন্ধান দলবদ্ধ কর" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "দলবদ্ধকৃত রো'র সংখ্যা:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "মোট:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "লোডিং লগ" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "পযবেক্ষক রিফ্রশ ব্যার্থ" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1664,26 +1668,26 @@ msgstr "" "নতুন চিত্রের চেষ্টায় সার্ভার অকার্যকর সাড়া দিয়াছে। মনে হয় আপনার সেশন শেষ হয়ে " "গেছে। পাতাটি রিলোড এবং আবার লগইন হয়ত সাহায্য করবে।" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "পাতাটি রিলোড" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "প্রভাবিত রোসমুহ:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "কনফিগ ফাইলটি পড়তে ব্যর্থ। এটা মনে হয় কার্যকর JSON কোড নয়।" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "আমদানি করা কনফিগারেশন দিয়ে চিত্র তৈরী করতে ব্যর্থ হয়েছি। কনফিগারেশন স্বাভাবিক " "অবস্থায় সেট করা হচ্ছে…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1692,67 +1696,67 @@ msgstr "" msgid "Import" msgstr "আমদানি" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "পর্যবেক্ষকের কনফিগারেশন আমাদনি কর" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "আমদানি করার জন্য ফাইলটি নির্বাচন করুন।" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "অনুসন্ধান বিশ্লেষন" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "উপদেষ্টা ব্যবস্থা" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "সাম্ভাব্য কার্যকারিতার বিষয়" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "ইস্যু" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "সুপারিশ" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "বিশদ নিয়মাবলী" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "যৌক্তিকতা" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "ব্যবহৃত চলক / ফর্মূলা" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "টেষ্ট" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "প্যারামিটারগুলো খারপ!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1764,74 +1768,74 @@ msgstr "প্যারামিটারগুলো খারপ!" msgid "Cancel" msgstr "বাতিল" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "সেটিংস পরিবর্তন" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "প্রয়োগ" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "লোডিং…" -#: js/messages.php:358 +#: js/messages.php:360 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "অনুরোধ বাতিল করা হয়েছে!!" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "প্রক্রিয়াকরন চলছে" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Request Aborted!!" msgid "Request failed!!" msgstr "অনুরোধ বাতিল করা হয়েছে!!" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Error in processing request:" msgid "Error in processing request" msgstr "নির্দেশ প্রক্রিয়া করনে সমস্যা হয়েছে:" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "ভুল নং:%s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "ভুলটি : %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "ডাটাবেইজ নিবার্চন করা হয়নি।" -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "স্তম্ভ মুছছি" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "প্রাইমারি কী যোগ কর" -#: js/messages.php:367 +#: js/messages.php:369 #: 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,65 +1845,65 @@ msgstr "প্রাইমারি কী যোগ কর" msgid "OK" msgstr "ওকে" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "এই বার্তাটি বন্ধ করতে ক্লীক করুন" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "ডাটাবেইজসমূহের নাম পরিবর্তন করছি" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "ডাটাবেইজের প্রতিলিপি করছি" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "বর্ণ রাশি পরিবর্তন করছি" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "foreign key পরীক্ষা অকার্যকর কর" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "হেডার নিয়ে আসতে ব্যর্থ হয়েছে" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "খোজঁছি" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "খোজাঁর ফলাফল লুকাও" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "খোজাঁর ফলাফল দেখাও" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "দেখছি" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "মুছছি" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "সঞ্চিত ফাংশনে অবশ্যই একটি রির্টান থাকতে হবে!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1915,44 +1919,44 @@ msgstr "সঞ্চিত ফাংশনে অবশ্যই একটি msgid "Export" msgstr "রফতানী" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET সম্পাদক" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "%s স্তম্ভের জন্য তথ্য" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "নতুন স্তম্ভের জন্য তথ্য" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "আলাদা আলাদা ক্ষেত্রে তথ্য দিন।" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "%d মান যোগ কর" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "টিকা: যদি ফাইলটিতে একাধিক টেবিল থাকে, ওই গুলো একটিতে পরিনত হবে।" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "অনুসন্ধান বক্সটি লুকাও" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "অনুসন্ধান বক্সটি দেখাও" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1962,7 +1966,7 @@ msgstr "অনুসন্ধান বক্সটি দেখাও" msgid "Edit" msgstr "সম্পাদনা" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1973,96 +1977,96 @@ msgstr "সম্পাদনা" msgid "Delete" msgstr "মুছ" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d বৈধ রো নাম্বার নয়।" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "ফরেন মান দেখা" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "চলক" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No column selected." msgid "Column selector" msgstr "কোন স্তম্ভ নির্বাচন করা হয় নাই" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "ডাটাবেইজে খোঁজ" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "উন্মুক্ত মেমোরী" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "সহায়তা করুন" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "প্রাইমারি কী যোগ কর" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "%s একটি প্রাইমারি কী যোগ করা হয়েছে" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "ট্রেকিং প্রতিবেদন" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2070,88 +2074,88 @@ msgstr "" msgid "End of step" msgstr "লাইনের শেষ" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "সম্পন্ন" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "ডাটাবেইজ নিবার্চন করা হয়নি।" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table:" msgid "Create the following table" msgstr "নিচের টেবিল এ সুবিধাসমূহ যোগ কর:" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "ডাটাবেইজ নিবার্চন করা হয়নি।" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2161,162 +2165,162 @@ msgstr "ডাটাবেইজ নিবার্চন করা হয়নি msgid "Save" msgstr "সংরক্ষন" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "খোজাঁর শর্ত লুকাও" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "খোজাঁর শর্ত দেখাও" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "টেবিলে খোজাঁ" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "স্তম্ভের নাম: " -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "স্তম্ভের নাম: " -#: js/messages.php:477 +#: js/messages.php:479 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "টেবলের সর্বোচ্চ সংখ্যা" -#: js/messages.php:478 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "টেবলের সর্বোচ্চ সংখ্যা" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "পাওয়া এবং প্রতিস্থাপনের শর্ত লুকাও" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "পাওয়া এবং প্রতিস্থাপনের শর্ত দেখাও" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "প্রতিটি পয়েন্ট একটি তথ্য সারি।" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "একটি পয়েন্টের উপর মাউস আনলে তার লেবেল দেখাবে।" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "বড় করে দেখার জন্য, অংশটির একটি অংশ মাউজ দ্বারা নির্বাচন করন।" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "মুল অবস্থায় ফিরিয়ে নেওয়ার জন্য জুম রিসেট এ ক্লীক করুন।" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" "দেখার জন্য একটি তথ্য পয়েন্ট এ ক্লীক করুন এবং প্রয়োজনে তথ্য সারিটি সম্পাদনা করুন।" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "নীচের ডান কোণার দিকে টেনে এই অংশটির আকৃতি পরিবর্তন করা যাবে।" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "দুইটি স্তম্ভ নির্বাচন করুন" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "ভিন্ন ভিন্ন দুইটি স্তম্ভ নির্বাচন করুন" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "প্রতিটি পয়েন্টের বিষয়" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "উপেক্ষা" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "প্রতিলিপি" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "পয়েন্ট" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "লাইনস্ট্রিং" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "পলি্গন (বহুভুজ)" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "জ্যামিতি" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "ভিতরের গোলক" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "আউটার রিং" -#: js/messages.php:520 +#: js/messages.php:522 #, fuzzy #| msgid "Do you want to import remaining settings?" msgid "Do you want to copy encryption key?" msgstr "আপনি কি অন্যান্য সেটিংস আমদানি করতে চান?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "রেফারেন্সড কী নির্বাচন করুন" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "ফরেন কী নির্বাচন করুন" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "অনুগ্রহ করে প্রাথমিক কী বা একটি অনন্য কী নির্বাচন করুন!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "দেখানোর জন্য স্বম্ভ পছন্দ করেন" -#: js/messages.php:536 +#: js/messages.php:538 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,96 +2328,96 @@ msgstr "" "আপনি নকশার পরিবর্তন সংরক্ষন করেন নাই। সংরক্ষন না করলে ওগুলো নষ্ট হয়ে যাবে। আপনি " "কি এগুতে চান?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "পাতার নাম" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "পাতা নির্বাচন" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "একক" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "সম্পাদনার জন্য একটি পাতা পছন্দ করেন" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid page name" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "আন্তসম্পর্কীয় গঠনের আকৃতি সম্পাদনা বা রফতানী কর" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "পরিবর্তন সংরক্ষন করা হয়েছে" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "স্তম্ভের জন্য একটি অপশন যোগ কর " -#: js/messages.php:555 +#: js/messages.php:557 #, fuzzy, php-format #| msgid "%d object(s) created" msgid "%d object(s) created." msgstr "%d অবজেক্ট তৈরী করা হয়েছে" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "জমা" -#: js/messages.php:559 +#: js/messages.php:561 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "সম্পাদনা বাতিল করতে এস্কেপ কী চাপুন" -#: js/messages.php:561 +#: js/messages.php:563 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2421,49 +2425,49 @@ msgstr "" "আপনি কিছু তথ্য সম্পাদনা করেছেন এবং ওগুলো সংরক্ষিত নয়। আপিন কি নিশ্চন্ত যে সংরক্ষনের " "পূর্বে আপনি পাতাটি ত্যাগ করতে চান?" -#: js/messages.php:564 +#: js/messages.php:566 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "পুনবিন্যাসের জন্য টানুন" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "চিহ্নিত/অচিহ্নিত করার জন্য ক্লীক করুন" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "স্তম্ভের নাম প্রতিলিপ করার জন্য দুইবার ক্লীক করুন" -#: js/messages.php:574 +#: js/messages.php:576 #, 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "সব দেখাও" -#: js/messages.php:578 +#: js/messages.php:580 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2471,135 +2475,135 @@ msgstr "" "এই টেবিলে কোন অনন্য স্তম্ভ নাই। সংরক্ষনের পরে সম্পাদনা, চেকবক্স, প্রতিলিপি এবং মুছার " "জন্য সংযোগগুলো কাজ করবে না।" -#: js/messages.php:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "প্রকৃত লেখা" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "বাতিল" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "বাতিলকৃত" -#: js/messages.php:593 +#: js/messages.php:595 #, fuzzy #| msgid "Success." msgid "Success" msgstr "সফল।" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "আমদানি সর্ম্পকিত স্বাভাবিক" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "লগ ফাইলের স্থান" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "টেবল নির্বাচন" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "প্রিন্ট" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "আপনি প্রায় সমস্ত তথ্য দুই বার ক্লীক করে সরাসরি সম্পাদনা করতে পারবেন।" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "আপনি প্রায় তথ্য সরাসরি ক্লীক করে সম্পাদনা করতে পারবেন।" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "সংযোগে যাও" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "স্তম্ভের নাম প্রতিলিপি" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "স্তম্ভের নামটির উপর ডান ক্লীক করুন ওটা ক্লীপর্বোডে প্রতিলিপি করার জন্য।" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "পাসওর্য়াড উৎপাদন কর" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "উৎপাদন কর" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "অধিক" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "প্যানেল দেখাও" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "ইনডেক্স প্যানেল" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show logo in navigation panel" msgid "Show hidden navigation tree items." msgstr "চলাচল ফ্রেইমে লোগো দেখাও" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Customize main panel" msgid "Link with main panel" msgstr "প্রধান ফ্রেম পরিবর্তন" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main panel" msgid "Unlink from main panel" msgstr "প্রধান ফ্রেম পরিবর্তন" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "পাতাটি হিস্টোরীতে পাওয়া যায়নি, সম্ভবত নষ্ট হয়েগেছে।" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2609,123 +2613,123 @@ msgstr "" "%s, বেরিয়েছে %s।" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", সর্বশেষ সুস্থিত সংস্করন:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "তারিখ পর্যন্ত" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "ভিউ তৈরী" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "ভুল সর্ম্পকিত প্রতিবেদন দাখিল কর" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "ভুলের প্রতিবেদন দাখিল" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "একটি মারাত্মক জাভা স্ত্রিপট ভুল হয়েছে। আপনি কি এর প্রতিবেদন পাঠাতে চান?" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "প্রতিবেদন সেটিংস পরিবর্তন" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "প্রতিবেদনের বিশদ দেখাও" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "উপেক্ষা" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "এই অনুসন্ধানটি আবার দেখাও" -#: js/messages.php:700 +#: js/messages.php:702 #, 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:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL query" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "টেবলের মন্তব্য" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "খোজাঁর ফলাফল লুকাও" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2734,385 +2738,385 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "ডাটাবেজ কপি কর" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "টেবিলের পুর্বপদ দিন:" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "টেবল এর নামের পূর্বাংশ প্রতিস্থাপন করা" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "টেবল নামের পূর্বাংশসহ প্রতিলিপি কর" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "পূর্ববর্তী" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "পরবর্তী" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "আজ" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "জানুয়ারী" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "ফেব্রুয়ারী" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "মার্চ" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "এপ্রিল" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "মে" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "জুন" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "জুলাই" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "অগাষ্ট" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "সেপ্টেম্বর" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "অক্টোবর" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "নভেম্বর" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "ডিসেম্বর" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "জান" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "ফেব" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "মার" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "এপ্রি" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "মে" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "জুন" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "জুল" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "আগ" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "সেপ" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "অক্ট" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "নভে" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "ডিসে" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "রবিবার" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "সোমবার" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "মঙ্গলবার" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "বুধবার" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "বৃহস্পতিবার" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "শুক্রবার" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "শনিবার" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "রবি" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "সোম" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "মঙ্গল" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "বৃধ" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "বৃহস্পতি" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "শুক্র" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "শনি" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "রবি" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "সোম" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "মঙ্গ" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "বুধ" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "বৃহ" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "শুক্র" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "শনি" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "বর্ষপঞ্জি-মাস-বছর" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "- কিছু না -" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "ঘন্টা" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "মিনিট" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "সেকেন্ড" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "আক্ষরীক ক্ষেত্র ব্যবহার করুন" -#: js/messages.php:886 +#: js/messages.php:888 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid email address" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:887 +#: js/messages.php:889 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date ( ISO )" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "একটি কার্যকর দৈর্ঘ্য দিন!" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter the same value again" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter at least {0} characters" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value between {0} and {1}" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:925 +#: js/messages.php:927 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "একটি কার্যকর দৈর্ঘ্য দিন!" -#: js/messages.php:930 +#: js/messages.php:932 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value greater than or equal to {0}" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date or time" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "ভুল" @@ -3162,34 +3166,34 @@ msgstr "%s লাইনে অপ্রত্যাশিত চিহ্ন।" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "অপ্রত্যাশিত অক্ষর %1$s লাইনে। ট্যাব প্রত্যাশীত কিন্ত \"%2$s\" পাওয়া গেছে।" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "বর্তমান কনফিগারেশন ফাইল (%s) টি পড়া যাচ্ছে না।" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "কনফিগারেশন ফাইলে ভুল অনুমতি দেয়া, ওটা লেখার মত নয়" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "অক্ষরের আকার" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "subquery" msgid "Requery" msgstr "সহ-অনুসন্ধান" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3208,95 +3212,76 @@ msgid "Database" msgstr "ডাটাবেইজ" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Delete relation" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "সর্ম্পক মুছা" -msgstr[1] "সর্ম্পক মুছা" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "উন্মুক্ত" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "বুকর্মাকটি মুছা হয়েছে।" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "সর্ম্পক মুছা" -#: libraries/Console.php:186 +#: libraries/Console.php:168 #, fuzzy #| msgid "Skip current error" msgid "During current session" msgstr "বর্তমান ভুলটি এড়িয়ে যাও" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "SQL এর ব্যাখা" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "প্রোফাইলিং" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Bookmark table" msgid "Bookmark" msgstr "বুকর্মাক টেবল" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query cache" msgid "Query failed" msgstr "অনুসন্ধান ক্যাশ" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "Query execution time" msgid "Queried time" msgstr "অনুসন্ধানের সম্পাদনের সময়" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "SQL অনুসন্ধান বক্স" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "পরিস্কার" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "এসকিউএল ইতিহাস" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3314,203 +3299,203 @@ msgstr "এসকিউএল ইতিহাস" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "অপশনস" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Bookmark table" msgid "Bookmarks" msgstr "বুকর্মাক টেবল" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "SQL ত্রুটিমুক্ত করন" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute every" msgid "Press Ctrl+Enter to execute query" msgstr "সবগুলো নির্বাহ কর" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute every" msgid "Press Enter to execute query" msgstr "সবগুলো নির্বাহ কর" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "উর্ধ্ব মূখী" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "অধ মুখী" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Order" msgid "Order:" msgstr "বিন্যাস" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "অংক" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute every" msgid "Execution order" msgstr "সবগুলো নির্বাহ কর" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Order" msgid "Order by:" msgstr "বিন্যাস" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "SQL অনুসন্ধান" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "SQL অনুসন্ধান" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "রং দেখাও" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide Panel" msgid "Hide trace" msgstr "ইনডেক্স প্যানেল" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Count" msgid "Count:" msgstr "অংক" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "রিফ্রেশ" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "এবং" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Delete relation" msgid "Add bookmark" msgstr "সর্ম্পক মুছা" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label:" msgid "Label" msgstr "লেবেল:" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy msgid "Target database" msgstr "ডাটাবে এ খুজুঁনSearch in database" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Delete relation" msgid "Share this bookmark" msgstr "সর্ম্পক মুছা" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Reset to default" msgid "Set default" msgstr "স্বাভাবিকে রিসেট কর" -#: libraries/Console.php:381 +#: libraries/Console.php:363 #, fuzzy #| msgid "Always send error reports" msgid "Always expand query messages" msgstr "সবসময় ভুলের প্রতিবেদন পাঠাবে" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "SQL query history table" msgid "Show query history at start" msgstr "SQL অনুসন্ধানের হিস্টোরী টেবল" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "প্রতিলিপিকৃত টেবিলে যাও" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "কনফিগারেশন ফাইল পড়া যায়নি" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "সার্ভারটি সাড়া দিচ্ছে না। (বা স্থানীয় সার্ভারটির সকেট সঠিকভাবে কনফিগার করা হয়নি)।" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "সার্ভারটি সাড়া দিচ্ছে না।" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "ডাটাবেইজ ডিরেক্টরির অধিকারসমূহ পরীক্ষা করুন।" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "বিশদ…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "নিয়ন্ত্রক ব্যবহারকারীর জন্য নির্ধারিত কনফিগারেশন সংযোগে ব্যার্থ হয়েছে।" @@ -3841,7 +3826,7 @@ msgstr "সম্ভবত আনুমানিক। [doc@faq3-11]FAQ 3.11[/do #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "আপনার SQL অনুসন্ধানটি সফলভাবে কাজ করেছে." @@ -3963,15 +3948,15 @@ msgstr "ফাইল আপলোড সংযোজক দ্বারা ব msgid "Unknown error in file upload." msgstr "ফাইল আপলোডের সময় অজ্ঞাত ভুল।" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "আপলোডকৃত ফাইলটি সরাতে সমস্যা হয়েছে, [doc@faq1-11]FAQ 1.11[/doc] দেখুন।" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "আপলোডকৃত ফাইলটি সরানোর সময় সমস্যা হয়েছে।" -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -4037,8 +4022,8 @@ msgid "Keyname" msgstr "কী'র নাম" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4088,13 +4073,13 @@ msgstr "ইনডেক্স %s মুছা হয়েছে।" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "মুছ" @@ -4192,7 +4177,7 @@ msgstr "অধিকারসমূহ" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "কাজসমূহ" @@ -4207,7 +4192,7 @@ msgstr "ট্রেকিং" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4612,11 +4597,11 @@ msgstr "%1$s এ ফরেন কী তৈরী করতে সমস্য msgid "No valid image path for theme %s found!" msgstr "%s থীমের জন্য ছবির পথ পাওয়া যায়নি!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "পূর্বদর্শনের ব্যবস্থা নাই।" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "ইহা নাও" @@ -4918,23 +4903,23 @@ msgctxt "spatial types" msgid "Spatial" msgstr "স্পাটিয়াল" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "সবোর্চ্চ: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "স্থিত তথ্য" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4945,38 +4930,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL বলেছে: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL এর ব্যাখা" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "SQL এর ব্যাখা এড়িয়ে যাও" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "পিএইছপি কোড ছাড়া" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "অনুসন্ধান পেশ কর" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "পিএইছপি কোড তৈরী কর" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -5068,6 +5053,10 @@ msgstr "প্রতি ঘন্টায়" msgid "per day" msgstr "প্রতি দিন" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "উন্মুক্ত" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "খুঁজ:" @@ -5184,43 +5173,43 @@ msgstr "স্বম্ভ যোগ করা" msgid "Attributes" msgstr "গুনাবলী" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to read configuration file!" msgstr "কনফিগারেশন ফাইল পড়া যায়নি" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "ইহা সাধারনত বাক্যে ভুল বোঝায়, কোন ভুল আছে কিনা পরীক্ষা করুন।" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "স্বাভাবিক কনফিগারেশন লোড করা যাচ্ছে না:%1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "অকার্যকর সার্ভার ইনডেক্স:%s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "অকার্যকর হোষ্টের নাম %1$s। কনফিগারেশন আবার দেখুন।" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "সার্ভার %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "কনফিগারেশনে অকার্যকর প্রমাণীকরন পদ্ধতি:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5228,24 +5217,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "আপনি অবশ্যই %s %s বা পরের কোন সংস্করনে আপগ্রেড করবেন।" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "ভুল: টোকেন মিলে নাই" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS পুন লিখনের চেষ্টা" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "সাম্ভাব্য বিপদের সুযোগ" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "সংখ্যা কী সনাক্ত করা গেছে" @@ -6015,13 +6004,13 @@ msgstr "স্তম্ভের নাম প্রথম রোতে দা #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "স্তম্ভ ঘেরার জন্য" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "স্তম্ভ এস্কেপডের উপকরণ" @@ -6039,12 +6028,12 @@ msgstr "স্তম্ভের CRLF বর্ণ মুছ" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "স্তম্ভ শেষ হবে" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "লাইন শেষ হবে" @@ -6635,7 +6624,7 @@ msgid "Column names in first row" msgstr "প্রথম সারিতে স্তম্ভের নাম" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "খালি সারি আমদানি করো না" @@ -8230,7 +8219,7 @@ msgid "Table %s has been emptied." msgstr "টেবিল %s খালি করা হয়েছে।" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "ভিউ %s মুছা হয়েছে।" @@ -8365,8 +8354,8 @@ msgid "No data to display" msgstr "প্রর্দশনের কোন তথ্য নাই" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8415,53 +8404,53 @@ msgstr[1] "স্তম্ভের নাম '%s'টি MySQL'র সংরক msgid "No column selected." msgstr "কোন স্তম্ভ নির্বাচন করা হয় নাই।" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "স্তম্ভগুলো সফলভাবে সরানো হয়েছে।" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "অনুসন্ধানে ভুল" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "পরিবর্তন" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "ইনডেক্স" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "স্পাটিয়াল" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "ফুলটেক্সট" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "স্বতন্ত্র মানগুলো" @@ -8471,7 +8460,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s সংযোজনক পাওয়া যাচ্ছে না। পিএইছপি কনফিগারেশন দেখুন।" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "পরিবর্তন নয়" @@ -9286,18 +9275,18 @@ msgstr "মাইএসকিউএল কিছু পায়নি। (শু msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "এই আকৃতিটি তৈরী করা বা পরিবর্তন করা হয়েছে। এখানে আপনি:" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 #, 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:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9305,42 +9294,42 @@ msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "\"Options\" এ ক্লীক করে যে কোন সেটিংস পরিবর্তন করুন" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 #, fuzzy #| msgid "Edit structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "আকৃতি সম্পাদনা কর এই \"Structure\" সংযোগের দ্বারা" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "ডাটাবেইজ এ যাও: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "%s এর সেটিংস সম্পাদনা" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "টেবল এ যাও: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s এর আকৃতি" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "ভিউ এ যাও : %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9388,48 +9377,48 @@ msgstr "অথবা" msgid "web server upload directory:" msgstr "ওয়েব সার্ভারের আপলোড ডিরেক্টরি:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "সম্পাদন/নতুন" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "%s রোতে প্রবেশ করানো চলতে থাকবে" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "এবং তারপর" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "নতুন রো হিসাবে প্রবেশ করাও" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "নতুন রো হিসাবে প্রবেশ করাও এবং ভুলসমূহ উপেক্ষা কর" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "প্রবেশ করানোর অনুসন্ধান দেখাও" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "পূর্ববর্তী পাতায় যাও" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "অন্য আরেকটি নতুন রো প্রবেশ করাও" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "এই পাতাতেই ফিরে আস" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "পরবর্তী রো সম্পাদনা" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9439,7 +9428,7 @@ msgstr "" "ট্যাব কি দিয়ে মান থেকে মানে যাওয়া যাবে বা CTRL+arrows দিয়ে যে কোন জায়গায় " "যাওয়া যাবে।" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9451,11 +9440,11 @@ msgstr "" msgid "Value" msgstr "মান" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "এসকিউএল অনুসন্ধান দেখাচ্ছে" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "প্রবেশকৃত রো আইডি: %1$d" @@ -10318,7 +10307,7 @@ msgstr "টেবিল মেরামত" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "তথ্য বা টেবিল মুছ" @@ -10331,32 +10320,32 @@ msgid "Delete the table (DROP)" msgstr "টেবিলটি মুছ (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "নিরীক্ষা" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "পরীক্ষা" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "অপটিমাইজ" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "পুননির্মাণ" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "মেরামত" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10384,37 +10373,37 @@ msgstr "খন্ড মুছ" msgid "Check referential integrity:" msgstr "রেফারেনসিয়াল ইন্টিগ্রিটি পরীক্ষা কর:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "একই ক্ষেত্রে টেবলটি সরানো যাবে না!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "একই ক্ষেত্রে টেবলটির অনুলিপি করা যাবে না!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "%s টেবিলটি %s এ সরানো হয়েছে।" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "%s টেবিল টি %s এ প্রতিলিপি করা হয়েছে।" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "টেবিলের নামটি খালি!" @@ -10590,7 +10579,7 @@ msgstr "তথ্য স্তুপের অপশন" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "টেবলের জন্য তথ্য স্তুপ করছি" @@ -10614,21 +10603,21 @@ msgstr "সংজ্ঞা" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "টেবলের জন্য টেবলের গঠন" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "ভিউ এর গঠন" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "দর্শনের বর্তমান গঠন" @@ -10718,7 +10707,7 @@ msgid "Database:" msgstr "ডাটাবেইজ:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "ডাটা:" @@ -10822,7 +10811,7 @@ msgid "Data creation options" msgstr "তথ্য তৈরীর অপশন" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "ইনার্সটের পুর্বে টেবল খালি কর" @@ -10907,7 +10896,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10953,52 +10942,52 @@ msgstr "ব্যবহৃত" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "স্তুপকৃত টেবলের সীমবদ্ধতা" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "টেবলের সীমবদ্ধতা" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "স্তুপকৃত টেবলের ইনডেক্স" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "টেবিলের ইনডেক্সসমুহ" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "স্তুপকৃত টেবলের জন্য স্বয়ক্রীয় বর্দ্ধিত মান (AUTO_INCREMENT)" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "টেবলের জন্য স্বয়ক্রীয় বর্দ্ধিত মান (AUTO_INCREMENT)" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "টেবিলের মাইমের ধরন" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "টেবিলের সর্ম্পক" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "ভিউ এর গঠন %s টেবলে রফতানী করা হয়েছে" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "তথ্য পড়ার ভুল:" @@ -11030,7 +11019,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11052,15 +11041,15 @@ msgstr "" msgid "Column names: " msgstr "স্তম্ভের নাম: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV আমদানীর প্যারামিটার ঠিক নাই:%s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -11069,18 +11058,18 @@ msgstr "" "অযোগ্য স্তম্ভের নাম (%s) দেয়া হয়েছে! স্তম্ভের নামটি সঠিক ভাবে বানান করা হয়েছে " "কিনা, কমা দ্বারা আলাদ করা এবং কোঔট দ্বারা সীমিত নয় তা নিশ্চিন্ত করুন।" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "CSV ফাইলের গঠন অযোগ্য %d লাইনে।" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "অযোগ্য স্তম্ভ্ সংখ্যা CSV ফাইলের %d লাইনে।" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "এই সংযোজকটি সংকোচিত আমদানি সমর্থন করে না!" @@ -11088,22 +11077,22 @@ msgstr "এই সংযোজকটি সংকোচিত আমদানি msgid "MediaWiki Table" msgstr "MediaWiki টেবল" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "মিডিয়া উইকির গঠন ঠিক নাই, লাইন:
%s।" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "সঠিক দশমিকে শতকরা আমদানি (ex. ১২.০০% to .১২)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "মুদ্রা আমদানি কর (যেমন $5.00 to 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -11111,7 +11100,7 @@ msgstr "" "দেয়া XML ফাইলটি হয় গঠনগত সমস্যা আছে বা সম্পুর্ন নয়। সমস্যাটি ঠিক করে আবার চেষ্টা " "করুন।" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "ওপেন অফিসের স্প্রেডসীট পড়া যায় নি" @@ -11119,12 +11108,12 @@ msgstr "ওপেন অফিসের স্প্রেডসীট পড়া msgid "ESRI Shape File" msgstr "ESRI গঠন ফাইল" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "ESRI ফাইল আমদানিতে ভুল:\"%s\"।" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 #, fuzzy #| msgid "" #| "You tried to import an invalid file or the imported file contains invalid " @@ -11134,12 +11123,12 @@ msgid "" "data!" msgstr "আপনি একটি অযোগ্য ফাইল আমদানির চেষ্টা করছেন বা ফাইলটিতে অযোগ্য তথ্য আছে" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Spatial সংযোজক ESRI type \"%s\" সমর্থন করে না।" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "The imported file does not contain any data" msgid "The imported file does not contain any data!" @@ -11153,7 +11142,7 @@ msgstr "SQL উপযুক্ততার পদ্ধতি:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "শুন্য মানের জন্য AUTO_INCREMENT ব্যবহার করো না" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "এক্সএমএল" @@ -14200,15 +14189,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14223,17 +14208,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14255,23 +14241,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "খোলা টেবিলের সংখ্যা।" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "খোলা টেবিলের সংখ্যা।" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14304,17 +14290,17 @@ msgstr "ইভেন্ট %1$s তৈরী হয়েছে।" msgid "Variable name was expected." msgstr "টেবলের নামের নকশা" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "টেবিলের শুরুতে" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14337,19 +14323,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "রো টি মুছা হয়েছে।" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15054,7 +15040,7 @@ msgstr "টেবিলের স্তুপ (গঠন) দেখাও" msgid "Invalid table name" msgstr "টেবিলের নামটি অকার্যকর" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16095,7 +16081,7 @@ msgid "at beginning of table" msgstr "টেবিলের শুরুতে" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16144,7 +16130,7 @@ msgstr "খন্ড করা হয়েছে" msgid "Edit partitioning" msgstr "খন্ড মুছ" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "সম্পাদনা ভিউ" @@ -16271,11 +16257,11 @@ msgstr "ভিউ এর নাম" msgid "Column names" msgstr "স্তম্ভের নাম" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "ভিউ এর নাম পরিবর্তন কর" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "ভিউটি মুছ (DROP)" @@ -17498,6 +17484,18 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert এর জন্য ০ নির্ধারন করা হয়েছে" +#, fuzzy +#~| msgid "Delete relation" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "সর্ম্পক মুছা" +#~ msgstr[1] "সর্ম্পক মুছা" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "বুকর্মাকটি মুছা হয়েছে।" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/br.po b/po/br.po index 6651aca776..f8fa2800ac 100644 --- a/po/br.po +++ b/po/br.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2014-03-28 11:07+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Breton " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Enrollañ evel restr" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Adderaouekaat" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Diuzañ pep tra" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Furmskrid diglok !" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "unan eus ar gerioù da nebeutañ" -#: js/messages.php:118 +#: js/messages.php:120 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number!" msgstr "Niverenn borzh direizh" -#: js/messages.php:119 +#: js/messages.php:121 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid length!" msgstr "Niverenn borzh direizh" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Indexes" msgid "Add index" msgstr "Menegerioù" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "Mod aozañ" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format #| msgid "Add/Delete columns" msgid "Add %s column(s) to index" msgstr "Ouzhpennañ/Diverkañ bannoù" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Columns terminated by" msgid "Composite with:" msgstr "Bannoù a echu gant" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add/Delete columns" msgid "Please select column(s) for the index." msgstr "Ouzhpennañ/Diverkañ bannoù" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "Update Query" msgid "Simulate query" msgstr "Hizivaat ar reked" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "Linennoù a sell outo :" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "Reked SQL" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Use this value" msgid "Y values" msgstr "Ober gant an talvoud-mañ" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Goullo eo anv ar servijer !" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Goullo eo anv an implijer !" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Goullo eo ar ger-tremen !" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Ne glot ket ar gerioù-tremen !" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "O lemel kuit an implijerien diuzet" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Serriñ" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template was created." msgstr "%s daolenn" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The bookmark has been deleted." msgid "Template was deleted." msgstr "Diverket eo bet ar sined." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Udb all" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Kevreadennoù/Argerzhioù" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "N'eo ket kenglotus kefluniadur lec'hel an evezhiañ" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1239,136 +1243,136 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Efeduster ar grubuilh rekedoù" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Implij ar grubuilh rekedoù" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Krubuilh rekedoù implijet" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Implij CPU ar reizhiad" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Memor reizhiad" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Takad eskemm reizhiad (swap)" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Karg keitat" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Memor hollek" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Memor krubuilh" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Memor skurzer" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Memor vak" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Memor implijet" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Takad eskemm klok" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Takad eskemm krubuilhet" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Takad eskemm implijet" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Takad eskemm vak" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Oktedoù kaset" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Oktedoù resevet" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Kevreadennoù" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Argerzhioù" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "o" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "Kio" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "Mio" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "Gio" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "Tio" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "Pio" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "Eio" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1376,32 +1380,32 @@ msgid "%d table(s)" msgstr "%s daolenn" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Goulennoù" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Tremenerezh" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Arventennoù" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Ouzhpennañ ur grafik d'ar gael" -#: js/messages.php:218 +#: js/messages.php:220 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "Ouzhpennit da nebeutañ unan eus an argemennoù d'an heuliad" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1413,47 +1417,47 @@ msgstr "Ouzhpennit da nebeutañ unan eus an argemennoù d'an heuliad" msgid "None" msgstr "Hini" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Adkregiñ gant an evezhiañ" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Paouez gant an evezhiañ" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "Gweredekaet eo general_log ha slow_query_log." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "Gweredekaet eo general_log." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "Gweredekaet eo slow_query_log." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "Diweredekaet eo general_log ha slow_query_log." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "N'eo ket bet lakaet log_output da TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "Lakaet eo bet log_output da TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1464,12 +1468,12 @@ msgstr "" "bad pelloc'h eget %d eilenn. Erbedet eo reizhañ long_query_time war 0-2 " "eilenn, hervez ho reizhiad." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "Reizhet eo bet long_query_time da %d eilenn." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1478,31 +1482,31 @@ msgstr "" "d'an talvoud dre ziouer pa adloc'ho ar servijer :" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Reizhañ log_output da %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Gweredekaat %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Diweredekaat %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Set long_query_time to %ds" msgid "Set long_query_time to %d seconds." msgstr "Reizhañ long_query_time da %ds" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1510,106 +1514,106 @@ msgstr "" "N'hallit ket cheñch an arventennoù-mañ. Kevreit dindan root pe kit e " "darempred gant merour ar servijer." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Kemmañ an arventennoù" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Arventennoù zo bremañ" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Diforc'herezh" -#: js/messages.php:259 +#: js/messages.php:261 #, fuzzy, php-format #| msgid "Divided by %s:" msgid "Divided by %s" msgstr "Rannet dre %s:" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Diwar ar marilh rekedoù gorrek" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Diwar ar marilh hollek" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 #, fuzzy #| msgid "Loading logs" msgid "Analysing logs" msgstr "O kargañ ar marilhoù" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "O tielfennañ hag o kargañ marilhoù. Padout pellik a c'hall ober." -#: js/messages.php:270 +#: js/messages.php:272 #, fuzzy #| msgid "Cancel" msgid "Cancel request" msgstr "Nullañ" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "Restr varilh karget. Rekedoù kaset da benn en amzer-mañ :" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Mont da taolenn ar marilh" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Dielfennet eo bet ar marilh hep kavout roadenn ebet evit ar prantad amzer-" "mañ." -#: js/messages.php:289 +#: js/messages.php:291 #, fuzzy #| msgid "Authenticating…" msgid "Analyzing…" msgstr "O tilesa…" -#: js/messages.php:290 +#: js/messages.php:292 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Displegañ SQL" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1617,7 +1621,7 @@ msgstr "Displegañ SQL" msgid "Status" msgstr "Statud" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1627,91 +1631,91 @@ msgstr "Statud" msgid "Time" msgstr "" -#: js/messages.php:293 +#: js/messages.php:295 #, fuzzy #| msgid "Total:" msgid "Total time:" msgstr "Hollad :" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "O profilañ" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Taolenn" -#: js/messages.php:296 +#: js/messages.php:298 #, fuzzy #| msgid "Chart Title" msgid "Chart" msgstr "Titl ar grafik" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Dibarzhioù silañ taolenn ar marilhoù" # verb pe ak. ? #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Silañ" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Silañ ar rekedoù dre c'her pe lavarennoù reoliek :" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Sammad al linennoù bodet :" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Hollad :" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "O kargañ ar marilhoù" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Adkargañ ar bajenn" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Linennoù a sell outo :" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1720,75 +1724,75 @@ msgstr "" msgid "Import" msgstr "Enporzhiañ" -#: js/messages.php:326 +#: js/messages.php:328 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Import monitor configuration" msgstr "N'eo ket kenglotus kefluniadur lec'hel an evezhiañ" -#: js/messages.php:328 +#: js/messages.php:330 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import." msgstr "Diuzit an alc'hwez kentidik pe un alc'hwez nemetañ" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Hizivaat ar reked" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Teuliadur" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "" -#: js/messages.php:340 +#: js/messages.php:342 #, fuzzy #| msgid "Authentication" msgid "Justification" msgstr "Dilesadur" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Arventennoù fall !" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1800,72 +1804,72 @@ msgstr "Arventennoù fall !" msgid "Cancel" msgstr "Nullañ" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Kemmañ an arventennoù" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "O kargañ…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "O plediñ gant ar reked" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Query \"%s\" failed" msgid "Request failed!!" msgstr "C'hwitet eo bet ar reked \"%s\"" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Error in processing request" msgid "Error in processing request" msgstr "Fazi en ur seveniñ ar reked" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Diverkañ ar bann" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Adding Primary Key" msgid "Adding primary key" msgstr "Ouzhpennañ un alc'hwez kentidik" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1875,66 +1879,66 @@ msgstr "Ouzhpennañ un alc'hwez kentidik" msgid "OK" msgstr "Mat eo" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Oc'h adenvel an diaz roadennoù" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Oc'h eilañ an diaz roadennoù" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "O cheñch ar strobad arouezennoù" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Diweredekaat ar gwiriañ alc'hwezioù estren" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "Dibosupl tapout an talbennoù" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "O klask" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Kuzhat disoc'hoù an enklask" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Diskouez disoc'hoù an enklask" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "O furchal" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "O tiverkañ" -#: js/messages.php:391 +#: js/messages.php:393 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:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1950,49 +1954,49 @@ msgstr "" msgid "Export" msgstr "Ezporzhiañ" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, fuzzy, php-format #| msgid "Values for the column \"%s\"" msgid "Values for column %s" msgstr "Talvoudoù evit ar bann \"%s\"" -#: js/messages.php:397 +#: js/messages.php:399 #, fuzzy #| msgid "Values for the column \"%s\"" msgid "Values for a new column" msgstr "Talvoudoù evit ar bann \"%s\"" -#: js/messages.php:398 +#: js/messages.php:400 #, 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:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:403 +#: js/messages.php:405 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:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Kuzhat ar voest rekedoù SQL" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Diskouez ar voest rekedoù SQL" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -2002,7 +2006,7 @@ msgstr "Diskouez ar voest rekedoù SQL" msgid "Edit" msgstr "Kemmañ" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -2013,181 +2017,181 @@ msgstr "Kemmañ" msgid "Delete" msgstr "Diverkañ" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Disable %s" msgid "Variable %d:" msgstr "Diweredekaat %s" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "N'eus bet diuzet linenn ebet" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Klask en diaz roadennoù" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Memor vak" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Edit routine" msgid "Continue" msgstr "Kemmañ un argerzh" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "The primary key has been dropped." msgid "Primary key added." msgstr "Diverket eo bet an alc'hwez kentidik." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Danevell heuliañ" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Graet" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Check privileges for database \"%s\"." msgid "Create the following table" msgstr "Gwiriañ ar gwirioù evit an diaz roadennoù \"%s\"." -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No rows selected" msgid "No dependencies selected!" msgstr "N'eus bet diuzet linenn ebet" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2197,163 +2201,163 @@ msgstr "N'eus bet diuzet linenn ebet" msgid "Save" msgstr "Enrollañ" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Kuzhat an dezverkoù klask" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Diskouez an dezverkoù enklask" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Klask" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column" msgid "Column maximum:" msgstr "Bann" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column" msgid "Column minimum:" msgstr "Bann" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "Kuzhat an dezverkoù klask" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "Diskouez an dezverkoù enklask" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "Ouzhpennañ/Diverkañ bannoù" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Na ober van" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Poent" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Aradennad linennoù" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Lieskorneg" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Mentoniezh" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Kelc'h diabarzh" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer Ring:" msgid "Outer ring" msgstr "Kelc'h diavaez :" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Diuzit an alc'hwez daveet" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Diuzit an alc'hwez estren" -#: js/messages.php:533 +#: js/messages.php:535 #, 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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?" @@ -2361,261 +2365,261 @@ 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Delete" msgid "Delete page" msgstr "Diverkañ" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 #, 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:546 +#: js/messages.php:548 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Niverenn borzh direizh" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Embann pe ezporzhiañ ur chema kar" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:554 +#: js/messages.php:556 #, 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:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Diskouez pep tra" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "Aradennad linennoù" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Nullañ" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Talvoudoù enporzhiañ dre ziouer" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "Diuzañ pep tra" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Moullañ" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy #| msgid "Set value: %s" msgid "Go to link:" msgstr "Lakaat an talvoud da %s" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "No rows selected" msgid "Copy column name." msgstr "N'eus bet diuzet linenn ebet" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Genel ur ger-tremen" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Genel" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Muioc'h" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Diskouez pep tra" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "Kuzhat menegerioù" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Diskouez al logo er banell verdeiñ gleiz" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Personelaat ar framm pennañ" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Personelaat ar framm pennañ" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2625,119 +2629,119 @@ msgstr "" "hizivaat ho hini. Setu ar stumm nevesañ %s, embannet eo bet d'an %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", stumm stabil diwezhañ :" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "hizivaet" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Kemmañ an arventennoù" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "Diskouez pep tra" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Na ober van" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Issued queries" msgid "Execute this query again?" msgstr "Rekedoù resevet" -#: js/messages.php:700 +#: js/messages.php:702 #, 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:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Evezhiadennoù diwar-benn an daolenn" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Kuzhat disoc'hoù an enklask" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2746,36 +2750,36 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Eilañ an diaz roadennoù war" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "Erlec'hiañ rakger an daolenn" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Erlec'hiañ rakger an daolenn" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Eilañ an daolenn enni ur rakger" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Kent" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2783,149 +2787,149 @@ msgid "Next" msgstr "War-lerc'h" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Hiziv" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Genver" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "C'hwevrer" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Meurzh" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Ebrel" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Mae" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Mezheven" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Gouere" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Eost" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Gwengolo" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Here" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Du" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Kerzu" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "C'hwe" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Meu" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Mae" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Mezh" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Goue" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Eost" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Gwen" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Here" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Du" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Kzu" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Sul" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Lun" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Meurzh" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Merc'her" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Yaou" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Gwener" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Sadorn" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2933,207 +2937,207 @@ msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Meu" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Yaou" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sad" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "L" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Mz" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Mc" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Y" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "G" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Hini" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Eur" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Munut" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Eilenn" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Text fields" msgid "Please fix this field" msgstr "Maeziennoù testenn" -#: js/messages.php:886 +#: js/messages.php:888 #, 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:889 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Niverenn borzh direizh" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Niverenn borzh direizh" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Niverenn borzh direizh" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Niverenn borzh direizh" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Niverenn borzh direizh" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Niverenn borzh direizh" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Niverenn borzh direizh" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Niverenn borzh direizh" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Niverenn borzh direizh" -#: js/messages.php:925 +#: js/messages.php:927 #, 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:930 +#: js/messages.php:932 #, 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:936 +#: js/messages.php:938 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Niverenn borzh direizh" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Niverenn borzh direizh" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Fazi" @@ -3184,34 +3188,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Ment an destenn" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "SQL query" msgid "Requery" msgstr "Reked SQL" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3230,93 +3234,74 @@ msgid "Database" msgstr "Diaz roadennoù" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Search" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Klask" -msgstr[1] "Klask" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "kenrannet" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "Diverket eo bet ar sined." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "Klask" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "Displegañ SQL" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "O profilañ" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Search" msgid "Bookmark" msgstr "Klask" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query \"%s\" failed" msgid "Query failed" msgstr "C'hwitet eo bet ar reked \"%s\"" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "Maximum execution time" msgid "Queried time" msgstr "Pad seveniñ hirañ" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "Boest rekedoù SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL Validator" msgid "History" msgstr "Kadarnataer SQL" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3334,203 +3319,203 @@ msgstr "Kadarnataer SQL" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Search" msgid "Bookmarks" msgstr "Klask" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Dizreinañ SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute" msgid "Press Ctrl+Enter to execute query" msgstr "Seveniñ" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute" msgid "Press Enter to execute query" msgstr "Seveniñ" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "War gresk" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "War zigresk" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Other" msgid "Order:" msgstr "Udb all" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "Bann" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute" msgid "Execution order" msgstr "Seveniñ" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Other" msgid "Order by:" msgstr "Udb all" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "Rekedoù SQL" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "Rekedoù SQL" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show all" msgid "Show trace" msgstr "Diskouez pep tra" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide indexes" msgid "Hide trace" msgstr "Kuzhat menegerioù" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "Bann" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Freskaat" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "Ha" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Search" msgid "Add bookmark" msgstr "Klask" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label key" msgid "Label" msgstr "Alc'hwez an dikedenn" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy #| msgid "Create Table" msgid "Target database" msgstr "Krouiñ un daolenn" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Search" msgid "Share this bookmark" msgstr "Klask" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Restore default value" msgid "Set default" msgstr "Adlakaat an talvoud dre ziouer" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "Show query box" msgid "Show query history at start" msgstr "Diskouez ar voest rekedoù SQL" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied database" msgid "Switch to dark theme" msgstr "Mont d'an diaz roadennoù eilet" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "Dibosupl lenn ar restr keluniañ" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3889,7 +3874,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4022,18 +4007,18 @@ msgstr "Harzet eo bet ar pellgargañ gant an astenn." msgid "Unknown error in file upload." msgstr "Fazi dianav en ur bellgargañ ar restr." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Fazi en ur zilec'hiañ ar restr pellgarget; gwelet [doc@faq1-11]FAQ 1.11[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4099,8 +4084,8 @@ msgid "Keyname" msgstr "Anv ar meneger" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4150,13 +4135,13 @@ msgstr "Diverket eo bet ar meneger %s." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Dilezel" @@ -4256,7 +4241,7 @@ msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Oberiadennoù" @@ -4271,7 +4256,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4672,11 +4657,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "N'eus ket eus un hent reizh evit skeudennoù an tem %s !" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "N'haller ket rakwelet." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "tapit-eñ" @@ -4949,23 +4934,23 @@ msgctxt "spatial types" msgid "Spatial" msgstr "" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Ment vrasañ : %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Roadennoù stadegel" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4976,38 +4961,38 @@ msgstr "" msgid "MySQL said: " msgstr "respontet eo bet gant MySQL : " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Displegañ SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "N'eo ket dav displegañ SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Hep kod PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Kas ar reked" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Krouiñ kod PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5099,6 +5084,10 @@ msgstr "" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "kenrannet" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5215,13 +5204,13 @@ msgstr "Ouzhpennañ/Diverkañ bannoù" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to read configuration file!" msgstr "Dibosupl lenn ar restr keluniañ" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -5229,32 +5218,32 @@ msgstr "" "Peurliesañ e talvez ez eus ur fazi ereadurezh enni. Gwiriit ha n'eus ket ur " "fazi o tont war wel a-is." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "N'eus ket bet gallet kargañ ar c'hefluniadur dre ziouer adalek %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Meneger servijer faziek : %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Anv ostiz direizh evit ar servijer %1$s. Gwiriit ar c'hefluniadur." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Servijer" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Termenet ez eus bet c'hefluniadur un hentenn dilesa direizh :" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5262,24 +5251,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format 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:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6058,7 +6047,7 @@ msgstr "Diskouez anvioù ar bannoù diouzhtu el linenn gentañ" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Columns enclosed by" msgid "Columns enclosed with" @@ -6066,7 +6055,7 @@ msgstr "Bannoù gronnet gant" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Columns escaped by" msgid "Columns escaped with" @@ -6088,14 +6077,14 @@ msgstr "Tennañ an arouezennoù dibenn linenn e dibarzh ar bannoù" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "Bannoù a echu gant" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6786,7 +6775,7 @@ msgid "Column names in first row" msgstr "Anvioù bannoù el linenn gentañ" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Arabat enporzhiañ linennoù goullo" @@ -8274,7 +8263,7 @@ msgid "Table %s has been emptied." msgstr "Goullonderet eo bet an daolenn %s." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8411,8 +8400,8 @@ msgid "No data to display" msgstr "Dibab ar bann da ziskouez" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8460,55 +8449,55 @@ msgstr[1] "" msgid "No column selected." msgstr "N'eus bet diuzet linenn ebet" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Kemmañ" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -8520,7 +8509,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -9297,58 +9286,58 @@ msgstr "Distroet ez eus un disoc'h goullo gant MySQL (linenn ebet)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Jump to database" msgid "Go to database: %s" msgstr "Mont d'an diaz roadennoù" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Roadennoù a vank evit %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "Set value: %s" msgid "Go to table: %s" msgstr "Lakaat an talvoud da %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Ar framm hepken" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9396,55 +9385,55 @@ msgstr "Pe" msgid "web server upload directory:" msgstr "Diuzit e-mesk kavlec'h pellgargañ ar servijer web %s :" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Ensoc'hañ" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9456,11 +9445,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10331,7 +10320,7 @@ msgstr "Dresañ an daolenn" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -10344,32 +10333,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10397,37 +10386,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -10610,7 +10599,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10634,21 +10623,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10752,7 +10741,7 @@ msgid "Database:" msgstr "Diaz roadennoù" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10861,7 +10850,7 @@ msgid "Data creation options" msgstr "Dibarzhioù diskwel an diazoù roadennoù" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10930,7 +10919,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10976,60 +10965,60 @@ msgstr "en implij" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for dumped tables" msgstr "E diabarzh an taolennoù :" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "E diabarzh an taolennoù :" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Ouzhpennañ talvoud an AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -11063,7 +11052,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11081,33 +11070,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11115,28 +11104,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11146,23 +11135,23 @@ msgstr "Testenn Open Document" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -11176,7 +11165,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -14079,15 +14068,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No rows selected" @@ -14102,17 +14087,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No rows selected" msgid "An alias was expected." @@ -14134,19 +14120,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The bookmark has been deleted." msgid "A rename operation was expected." @@ -14177,17 +14163,17 @@ msgstr "Krouet eo bet an argerzh %1s." msgid "Variable name was expected." msgstr "Patrom anv taolenn" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "Number of inserted rows" msgid "Unexpected beginning of statement." msgstr "Niver a linennoù da ensoc'hañ" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14208,17 +14194,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14906,7 +14892,7 @@ msgstr "" msgid "Invalid table name" msgstr "Anv taolenn direizh" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15964,7 +15950,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:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -16009,7 +15995,7 @@ msgstr "Darempredoù" msgid "Edit partitioning" msgstr "Mod aozañ" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16140,11 +16126,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Drop the database (DROP)" msgid "Delete the view (DROP)" @@ -17301,6 +17287,18 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Search" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Klask" +#~ msgstr[1] "Klask" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "Diverket eo bet ar sined." + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/brx.po b/po/brx.po index 6c91690c38..cd02032655 100644 --- a/po/brx.po +++ b/po/brx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-09-04 09:33+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bodo " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "" -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1089,155 +1092,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1249,47 +1252,47 @@ msgstr "" msgid "None" msgstr "" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1297,136 +1300,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1434,7 +1437,7 @@ msgstr "" msgid "Status" msgstr "" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1444,82 +1447,82 @@ msgstr "" msgid "Time" msgstr "" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1528,63 +1531,63 @@ msgstr "" msgid "Import" msgstr "" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "" -#: js/messages.php:350 +#: js/messages.php:352 #: 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,60 +1599,60 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1659,55 +1662,55 @@ msgstr "" msgid "OK" msgstr "" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1723,44 +1726,44 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1770,7 +1773,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1781,164 +1784,164 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -1948,368 +1951,368 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2317,105 +2320,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2424,349 +2427,349 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 msgid "Copy tables to" msgstr "" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "" @@ -2816,32 +2819,32 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2861,76 +2864,59 @@ msgstr "" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -2948,157 +2934,157 @@ msgstr "" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3409,7 +3395,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3526,15 +3512,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3598,8 +3584,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3649,13 +3635,13 @@ msgstr "" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -3753,7 +3739,7 @@ msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "" @@ -3768,7 +3754,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4139,11 +4125,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -4406,21 +4392,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4431,32 +4417,32 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" @@ -4544,6 +4530,10 @@ msgstr "" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "" @@ -4648,41 +4638,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4690,24 +4680,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5364,13 +5354,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5388,12 +5378,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -5950,7 +5940,7 @@ msgid "Column names in first row" msgstr "" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -7332,7 +7322,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "" @@ -7462,8 +7452,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7501,52 +7491,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7556,7 +7546,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8275,54 +8265,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8368,53 +8358,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8426,11 +8416,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9250,7 +9240,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9263,32 +9253,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9314,35 +9304,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9511,7 +9501,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9535,21 +9525,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9639,7 +9629,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9731,7 +9721,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9800,7 +9790,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9842,52 +9832,52 @@ msgstr "" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -9917,7 +9907,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -9935,33 +9925,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -9969,28 +9959,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -9998,23 +9988,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10026,7 +10016,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -12727,15 +12717,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "" @@ -12748,17 +12734,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "" @@ -12776,19 +12763,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "" @@ -12814,15 +12801,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12843,15 +12830,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13509,7 +13496,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14405,7 +14392,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14438,7 +14425,7 @@ msgstr "" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14553,11 +14540,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/bs.po b/po/bs.po index 79e19def1e..9797712496 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:31+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bosnian " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Sačuvaj kao datoteku" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Resetuj" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Izaberi sve" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Nedostaje vrijednost u obrascu!" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "bar jednu od riječi" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Dodaj novo polje" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Index" msgid "Edit index" msgstr "Ključ" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format msgid "Add %s column(s) to index" msgstr "Dodaj novo polje" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Verzija servera" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Verzija servera" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Polja ograničena sa" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy msgid "Please select column(s) for the index." msgstr "Dodaj novo polje" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Morate izabrati bar jednu kolonu za prikaz" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "u upitu" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Start" msgid "Matched rows:" msgstr "Sub" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL upit" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Vrijednost" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Ime hosta je prazno!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Ime korisnika nije unijeto!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" -#: js/messages.php:148 +#: js/messages.php:150 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Ukloni izabrane korisnike" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy msgid "Template was created." msgstr "Tabela %s je odbačena" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profil je promjenjen." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Red je obrisan" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Konekcije" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1219,172 +1223,172 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 #, fuzzy msgid "Query cache efficiency" msgstr "Vrsta upita" -#: js/messages.php:177 +#: js/messages.php:179 #, fuzzy msgid "Query cache usage" msgstr "Vrsta upita" -#: js/messages.php:178 +#: js/messages.php:180 #, fuzzy msgid "Query cache used" msgstr "Vrsta upita" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "Zauzeće" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "Ukupno" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Ukupno" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Zauzeće" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Primljeno" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Konekcije" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Procesi" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "bajta" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s tabela" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 #, fuzzy msgid "Questions" msgstr "Operacije" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Saobraćaj" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Opšte osobine relacija" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1396,47 +1400,47 @@ msgstr "" msgid "None" msgstr "nema" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1444,152 +1448,152 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Sačuvaj kao datoteku" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Omogućeno" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Onemogućeno" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "Upit je trajao %01.4f sekundi" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Opšte osobine relacija" -#: js/messages.php:254 +#: js/messages.php:256 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Opšte osobine relacija" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "Uvoz fajlova" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 #, fuzzy msgid "Analysing logs" msgstr "Lokalni" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 #, fuzzy msgid "Jump to Log table" msgstr "Baza ne postoji" -#: js/messages.php:285 +#: js/messages.php:287 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Baza ne postoji" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Objasni SQL" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1597,7 +1601,7 @@ msgstr "Objasni SQL" msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1607,98 +1611,98 @@ msgstr "Status" msgid "Time" msgstr "Vrijeme" -#: js/messages.php:293 +#: js/messages.php:295 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Ukupno" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "SQL rezultat" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tabela" -#: js/messages.php:296 +#: js/messages.php:298 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Karakter set" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "Opcije tabele" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 #, fuzzy #| msgid "Number of rows per page" msgid "Sum of grouped rows:" msgstr "Broj redova po strani" -#: js/messages.php:306 +#: js/messages.php:308 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Ukupno" -#: js/messages.php:308 +#: js/messages.php:310 #, fuzzy msgid "Loading logs" msgstr "Lokalni" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 #, fuzzy msgid "Reload page" msgstr "Promjeni ime tabele u " -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1708,71 +1712,71 @@ msgstr "" msgid "Import" msgstr "Izvoz" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Ažuriraj upit" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 -msgid "Issue" -msgstr "" - -#: js/messages.php:338 -#, fuzzy -#| msgid "Documentation" -msgid "Recommendation" -msgstr "Dokumentacija" - #: js/messages.php:339 -msgid "Rule details" +msgid "Issue" msgstr "" #: js/messages.php:340 #, fuzzy #| msgid "Documentation" -msgid "Justification" +msgid "Recommendation" msgstr "Dokumentacija" #: js/messages.php:341 -msgid "Used variable / formula" +msgid "Rule details" msgstr "" #: js/messages.php:342 +#, fuzzy +#| msgid "Documentation" +msgid "Justification" +msgstr "Dokumentacija" + +#: js/messages.php:343 +msgid "Used variable / formula" +msgstr "" + +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Add new field" msgid "No parameters found!" msgstr "Dodaj novo polje" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1784,71 +1788,71 @@ msgstr "Dodaj novo polje" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Opšte osobine relacija" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy msgid "Loading…" msgstr "Lokalni" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Procesi" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy msgid "Request failed!!" msgstr "Vrsta upita" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Inside table(s):" msgid "Dropping column" msgstr "Unutar tabela:" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy msgid "Adding primary key" msgstr "Dodaj novo polje" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1858,67 +1862,67 @@ msgstr "Dodaj novo polje" msgid "OK" msgstr "U redu" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy msgid "Renaming databases" msgstr "Promjeni ime tabele u " -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy msgid "Copying database" msgstr "Baza ne postoji" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Karakter set" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Pretraživanje" -#: js/messages.php:384 +#: js/messages.php:386 #, fuzzy msgid "Hide search results" msgstr "SQL upit" -#: js/messages.php:385 +#: js/messages.php:387 #, fuzzy msgid "Show search results" msgstr "SQL upit" -#: js/messages.php:386 +#: js/messages.php:388 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Pregled" -#: js/messages.php:387 +#: js/messages.php:389 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Brišem %s" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1934,47 +1938,47 @@ msgstr "" msgid "Export" msgstr "Izvoz" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Values for column %s" msgstr "Broj redova po strani" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Dodaj novog korisnika" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 #, fuzzy msgid "Hide query box" msgstr "SQL upit" -#: js/messages.php:408 +#: js/messages.php:410 #, fuzzy msgid "Show query box" msgstr "SQL upit" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1984,7 +1988,7 @@ msgstr "SQL upit" msgid "Edit" msgstr "Promeni" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1995,94 +1999,94 @@ msgstr "Promeni" msgid "Delete" msgstr "Obriši" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Pregledaj strane vrijednosti" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Promjenljiva" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No databases selected." msgid "Column selector" msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Pretraživanje baze" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atributi" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Osnovni ključ je upravo dodan %s." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Promijeni" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2090,90 +2094,90 @@ msgstr "" msgid "End of step" msgstr "Na kraju tabele" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 #, fuzzy #| msgid "None" msgid "Done" msgstr "nema" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Dodaj privilegije na slijedećoj tabeli" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2183,193 +2187,193 @@ msgstr "Nije izabrana ni jedna baza." msgid "Save" msgstr "Sačuvaj" -#: js/messages.php:472 +#: js/messages.php:474 #, fuzzy msgid "Hide search criteria" msgstr "SQL upit" -#: js/messages.php:473 +#: js/messages.php:475 #, fuzzy msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Pretraživanje" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Imena kolona" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Imena kolona" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL upit" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL upit" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Dodaj/obriši kolonu" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Sadržaj" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Linije se završavaju sa" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Dodaj novog korisnika" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Linije se završavaju sa" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Broj strane:" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2377,237 +2381,237 @@ msgstr "Izaberi sve" msgid "Open page" msgstr "Zauzeće" -#: js/messages.php:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Izaberi sve" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Izaberite stranu koju menjate" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Relaciona shema" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Izmjene su sačuvane" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Add an option for column \"%s\"." msgstr "Broj redova po strani" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Pošalji" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Imena kolona" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Prikaži sve" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Lines terminated by" msgid "Original length" msgstr "Linije se završavaju sa" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Prekinuto" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy msgid "Import status" msgstr "Uvoz fajlova" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Izaberi tabele" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Štampaj" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy msgid "Go to link:" msgstr "Baza ne postoji" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Imena kolona" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Promeni lozinku" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 #, fuzzy msgid "Generate" msgstr "Generirao" -#: js/messages.php:628 +#: js/messages.php:630 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Prikaži sve" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Dodaj novo polje" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Prikaži mrežu" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy msgid "Link with main panel" msgstr "Opcije za izvoz baze" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy msgid "Unlink from main panel" msgstr "Opcije za izvoz baze" -#: js/messages.php:639 +#: js/messages.php:641 #, 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2615,121 +2619,121 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 #, fuzzy msgid "up to date" msgstr "Baza ne postoji" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy msgid "Create view" msgstr "Verzija servera" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy msgid "Send error report" msgstr "Izbor servera" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy msgid "Submit error report" msgstr "Izbor servera" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Opšte osobine relacija" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy msgid "Show report details" msgstr "Prikaži tabele" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoriši" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Prikaži ponovo ovaj upit" -#: js/messages.php:700 +#: js/messages.php:702 #, 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:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL upit" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentari tabele" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy msgid "Hide arguments" msgstr "SQL upit" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2738,37 +2742,37 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy msgid "Copy tables to" msgstr "Baza ne postoji" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Dodaj novo polje" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Prethodna" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2776,96 +2780,96 @@ msgid "Next" msgstr "Slijedeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:755 +#: js/messages.php:757 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarni" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mar" -#: js/messages.php:758 +#: js/messages.php:760 #, fuzzy #| msgid "Apr" msgid "April" msgstr "apr" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "maj" -#: js/messages.php:760 +#: js/messages.php:762 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jun" -#: js/messages.php:761 +#: js/messages.php:763 #, fuzzy #| msgid "Jul" msgid "July" msgstr "jul" -#: js/messages.php:762 +#: js/messages.php:764 #, fuzzy #| msgid "Aug" msgid "August" msgstr "aug" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2873,78 +2877,78 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "dec" -#: js/messages.php:801 +#: js/messages.php:803 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:802 +#: js/messages.php:804 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:803 +#: js/messages.php:805 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2952,201 +2956,201 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "nema" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "se koristi" -#: js/messages.php:873 +#: js/messages.php:875 #, fuzzy #| msgid "per second" msgid "Second" msgstr "u sekundi" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Koristi tekst polje" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Izaberite bazu" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please enter a valid date or time" msgstr "Izaberite stranu koju menjate" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Greška" @@ -3196,34 +3200,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "in query" msgid "Requery" msgstr "u upitu" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3242,90 +3246,71 @@ msgid "Database" msgstr "Baza podataka" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Search" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Pretraživanje" -msgstr[1] "Pretraživanje" -msgstr[2] "Pretraživanje" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "Obilježivač je upravo obrisan." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "Pretraživanje" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "Objasni SQL" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Search" msgid "Bookmark" msgstr "Pretraživanje" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy msgid "Query failed" msgstr "Vrsta upita" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy msgid "SQL Query Console" msgstr "SQL upit" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "SQL istorijat" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3343,10 +3328,10 @@ msgstr "SQL istorijat" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 @@ -3354,182 +3339,182 @@ msgstr "SQL istorijat" msgid "Options" msgstr "Operacije" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Search" msgid "Bookmarks" msgstr "Pretraživanje" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Ctrl+Enter to execute query" msgstr "Izvrši upamćen upit" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Enter to execute query" msgstr "Izvrši upamćen upit" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Rastući" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Opadajući" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "Kolona" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execution order" msgstr "Izvrši upamćen upit" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy msgid "Group queries" msgstr "SQL upit" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy msgid "Ungroup queries" msgstr "SQL upit" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Prikaži boju" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Add new field" msgid "Hide trace" msgstr "Dodaj novo polje" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "Kolona" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "i" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Search" msgid "Add bookmark" msgstr "Pretraživanje" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "Naziv" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy msgid "Target database" msgstr "Pretraživanje baze" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Search" msgid "Share this bookmark" msgstr "Pretraživanje" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy msgid "Set default" msgstr "Uvoz fajlova" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy msgid "Show query history at start" msgstr "SQL upit" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Pređi na kopiranu tabelu" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3905,7 +3890,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4035,15 +4020,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4110,8 +4095,8 @@ msgid "Keyname" msgstr "Ime ključa" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4162,13 +4147,13 @@ msgstr "Ključ %s je obrisan." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Odbaci" @@ -4266,7 +4251,7 @@ msgstr "Privilegije" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operacije" @@ -4281,7 +4266,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4691,11 +4676,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -4965,21 +4950,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Ukupno" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4990,38 +4975,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL kaže: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Preskoči objašnjavanje SQL-a" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "bez PHP koda" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Izvrši SQL upit" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Napravi PHP kod" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5116,6 +5101,10 @@ msgstr "na sat" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5233,42 +5222,42 @@ msgstr "Dodaj novo polje" msgid "Attributes" msgstr "Atributi" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Server" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5276,24 +5265,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5997,7 +5986,7 @@ msgstr "Stavi imena polja u prvi red" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6005,7 +5994,7 @@ msgstr "Polja ograničena sa" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6027,14 +6016,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Linije se završavaju sa" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6655,7 +6644,7 @@ msgid "Column names in first row" msgstr "Stavi imena polja u prvi red" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -8138,7 +8127,7 @@ msgid "Table %s has been emptied." msgstr "Tabela %s je ispražnjena." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format msgid "View %s has been dropped." msgstr "Polje %s je obrisano" @@ -8281,8 +8270,8 @@ msgid "No data to display" msgstr "Baza ne postoji" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." @@ -8331,56 +8320,56 @@ msgstr[2] "" msgid "No column selected." msgstr "Nije izabrana ni jedna baza." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Vrsta upita" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Promijeni" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Ključ" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Tekst ključ" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy msgid "Distinct values" msgstr "Pregledaj strane vrijednosti" @@ -8391,7 +8380,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nema izmjena" @@ -9187,55 +9176,55 @@ msgstr "MySQL je vratio prazan rezultat (nula redova)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Samo struktura" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9286,56 +9275,56 @@ msgstr "ili" msgid "web server upload directory:" msgstr "direkcija za slanje web servera" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Novi zapis" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 #, fuzzy msgid "Go back to this page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9347,11 +9336,11 @@ msgstr "" msgid "Value" msgstr "Vrijednost" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10235,7 +10224,7 @@ msgstr "Popravi tabelu" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10251,34 +10240,34 @@ msgid "Delete the table (DROP)" msgstr "Baza ne postoji" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 #, fuzzy msgid "Check" msgstr "Češki" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 #, fuzzy msgid "Repair" msgstr "Popravi tabelu" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10306,37 +10295,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Proveri referencijalni integritet:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Ne mogu da premjestim tabelu u samu sebe!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Ne mogu da kopiram tabelu u samu sebe!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s je pomjerena u %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s je kopirana u %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Ima tabele je prazno!" @@ -10526,7 +10515,7 @@ msgstr "Opcije za izvoz baze" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Prikaz podataka tabele" @@ -10553,14 +10542,14 @@ msgstr "Opis" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struktura tabele" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10568,7 +10557,7 @@ msgstr "Samo struktura" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10680,7 +10669,7 @@ msgid "Database:" msgstr "Baza podataka" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10793,7 +10782,7 @@ msgid "Data creation options" msgstr "Opcije transformacije" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10862,7 +10851,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10914,60 +10903,60 @@ msgstr "se koristi" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "Unutar tabela:" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Unutar tabela:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Dodaj AUTO_INCREMENT vrijednost" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Dodaj AUTO_INCREMENT vrijednost" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Samo struktura" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11003,7 +10992,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11023,33 +11012,33 @@ msgstr "" msgid "Column names: " msgstr "Imena kolona" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11057,28 +11046,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11088,23 +11077,23 @@ msgstr "Dokumentacija" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -11116,7 +11105,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14137,15 +14126,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14160,17 +14145,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14192,19 +14178,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14233,17 +14219,17 @@ msgstr "Tabela %s je odbačena" msgid "Variable name was expected." msgstr "Šablon imena datoteke" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Na početku tabele" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14264,17 +14250,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14977,7 +14963,7 @@ msgstr "Prikaži sadržaj (shemu) tabele" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16085,7 +16071,7 @@ msgid "at beginning of table" msgstr "Na početku tabele" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -16130,7 +16116,7 @@ msgstr "Relacije" msgid "Edit partitioning" msgstr "Dodaj novo polje" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16264,12 +16250,12 @@ msgstr "" msgid "Column names" msgstr "Imena kolona" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Promjeni ime tabele u " -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Baza ne postoji" @@ -17380,6 +17366,19 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Search" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Pretraživanje" +#~ msgstr[1] "Pretraživanje" +#~ msgstr[2] "Pretraživanje" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "Obilježivač je upravo obrisan." + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/ca.po b/po/ca.po index c03d8defe5..ae1a8cf5ff 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-02-11 23:11+0000\n" "Last-Translator: Xavier Navarro \n" -"Language-Team: Catalan " -"\n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,7 +47,7 @@ msgid "Table comments:" msgstr "Comentaris de la taula:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -101,7 +101,7 @@ msgstr "Tipus" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -163,16 +163,16 @@ msgid "Comments" msgstr "Comentaris" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Principal" -#: db_datadict.php:165 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:376 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:141 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:446 @@ -196,17 +196,17 @@ msgstr "Principal" msgid "No" msgstr "No" -#: db_datadict.php:165 js/messages.php:519 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:521 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:143 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -260,7 +260,7 @@ msgstr "Taules" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -411,23 +411,23 @@ msgid "Point:" msgstr "Punt:" #: gis_data_editor.php:216 gis_data_editor.php:243 gis_data_editor.php:299 -#: gis_data_editor.php:372 js/messages.php:508 +#: gis_data_editor.php:372 js/messages.php:510 msgid "X" msgstr "X" #: gis_data_editor.php:219 gis_data_editor.php:247 gis_data_editor.php:303 -#: gis_data_editor.php:378 js/messages.php:509 +#: gis_data_editor.php:378 js/messages.php:511 msgid "Y" msgstr "Y" #: gis_data_editor.php:241 gis_data_editor.php:297 gis_data_editor.php:370 -#: js/messages.php:511 +#: js/messages.php:513 #, php-format msgid "Point %d" msgstr "Punt %d" #: gis_data_editor.php:254 gis_data_editor.php:310 gis_data_editor.php:388 -#: js/messages.php:517 +#: js/messages.php:519 msgid "Add a point" msgstr "Afegir un punt" @@ -449,7 +449,7 @@ msgstr "Cercle interior %d:" msgid "Add a linestring" msgstr "Afegeix una cadena de línies" -#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:518 +#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:520 msgid "Add an inner ring" msgstr "Afegeix un cercle interior" @@ -466,12 +466,12 @@ msgstr "Afegeix un polígon" msgid "Add geometry" msgstr "Afegir geometria" -#: gis_data_editor.php:411 js/messages.php:349 libraries/DbSearch.php:463 +#: gis_data_editor.php:411 js/messages.php:351 libraries/DbSearch.php:463 #: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:139 #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -501,7 +501,7 @@ msgstr "Afegir geometria" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Executa" @@ -521,7 +521,7 @@ msgstr "" msgid "Succeeded" msgstr "Amb èxit" -#: import.php:58 js/messages.php:592 +#: import.php:58 js/messages.php:594 msgid "Failed" msgstr "Fallit" @@ -529,7 +529,7 @@ msgstr "Fallit" msgid "Incomplete params" msgstr "Paràmetres incomplets" -#: import.php:184 +#: import.php:185 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -538,15 +538,15 @@ msgstr "" "Probablement has triat d'enviar un arxiu que és massa gran. Consulta la " "%sdocumentació%s per trobar formes de modificar aquest límit." -#: import.php:360 import.php:665 +#: import.php:361 import.php:666 msgid "Showing bookmark" msgstr "Mostrant consultes desades" -#: import.php:376 import.php:661 +#: import.php:377 import.php:662 msgid "The bookmark has been deleted." msgstr "S'ha esborrat la consulta desada." -#: import.php:474 +#: import.php:475 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -555,12 +555,12 @@ msgstr "" "L'arxiu carregat no es pot moure,donat que el servidor ha activat " "«open_basedir» treient l'accés al directori %s (pels arxius temporals)." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:491 import.php:568 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "No es pot llegir l'arxiu!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:502 import.php:517 import.php:542 import.php:557 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -569,7 +569,7 @@ msgstr "" "S'intenta carregar un arxiu amb una compresió no suportada (%s). O bé aquest " "suport no s'ha implementat encara o bé el teniu desactivat a la configuració." -#: import.php:574 +#: import.php:575 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -579,22 +579,25 @@ msgstr "" "o el tamany de l'arxiu es més gran que el permès per la configuració del " "vostre PHP. Veieu [doc@faq1-16]PFC(FAQ) 1.16[/doc]." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:627 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "" "No es poden carregar les extensions d'importació, comprova l'instal.lació!" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:669 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "%s creat com a Consulta desada." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "Importació finalitzada correctament, %d consultes executades." +#: import.php:679 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "Importació finalitzada correctament, %d consultes executades." +msgstr[1] "Importació finalitzada correctament, %d consultes executades." -#: import.php:705 +#: import.php:710 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -604,7 +607,7 @@ msgstr "" "l'importació %storneu a enviar el mateix arxiu%s a importar i el procés " "continuarà." -#: import.php:715 +#: import.php:720 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -617,8 +620,8 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "No es pot carregar la progressió en la importació." -#: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: import_status.php:116 js/messages.php:450 js/messages.php:602 +#: libraries/Util.php:795 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Enrere" @@ -642,7 +645,7 @@ msgstr "" msgid "General settings" msgstr "Paràmetres generals" -#: index.php:191 js/messages.php:625 +#: index.php:191 js/messages.php:627 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:287 msgid "Change password" @@ -714,10 +717,11 @@ msgstr "Mostra informació de PHP" msgid "Version information:" msgstr "Informació de la versió:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:442 libraries/Util.php:509 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Documentació" @@ -850,94 +854,94 @@ msgstr "" "Servidor executant-se amb Suhosin. Si us plau, consulta %sdocumentation%s " "per a possibles assumptes." -#: js/messages.php:39 libraries/import.lib.php:207 sql.php:161 +#: js/messages.php:41 libraries/import.lib.php:207 sql.php:161 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Instrucció \"DROP DATABASE\" desactivada." -#: js/messages.php:45 +#: js/messages.php:47 msgid "Confirm" msgstr "Confirmar" -#: js/messages.php:46 +#: js/messages.php:48 #, php-format msgid "Do you really want to execute \"%s\"?" msgstr "Realment vols fer \"%s\"?" -#: js/messages.php:48 libraries/mult_submits.lib.php:440 +#: js/messages.php:50 libraries/mult_submits.lib.php:440 msgid "You are about to DESTROY a complete database!" msgstr "Ets a punt de DESTRUIR completament una base de dades!" -#: js/messages.php:50 +#: js/messages.php:52 msgid "You are about to DESTROY a complete table!" msgstr "Ets a punt de DESTRUIR completament una taula sencera!" -#: js/messages.php:52 +#: js/messages.php:54 msgid "You are about to TRUNCATE a complete table!" msgstr "Ets a punt de TRUNCAR completament una taula sencera!" -#: js/messages.php:53 +#: js/messages.php:55 msgid "Delete tracking data for this table?" msgstr "Voleu esborrar les dades de seguiment per aquesta taula?" -#: js/messages.php:55 +#: js/messages.php:57 msgid "Delete tracking data for these tables?" msgstr "Voleu esborrar les dades de seguiment per aquestes taules?" -#: js/messages.php:57 +#: js/messages.php:59 msgid "Delete tracking data for this version?" msgstr "Voleu esborrar les dades de seguiment per aquesta versió?" -#: js/messages.php:59 +#: js/messages.php:61 msgid "Delete tracking data for these versions?" msgstr "Voleu esborrar les dades de seguiment per aquestes versions?" -#: js/messages.php:60 +#: js/messages.php:62 msgid "Delete entry from tracking report?" msgstr "Esborrar l'entrada de l'informe de seguiment?" -#: js/messages.php:61 +#: js/messages.php:63 msgid "Deleting tracking data" msgstr "Esborra les dades de seguiment" -#: js/messages.php:62 +#: js/messages.php:64 msgid "Dropping Primary Key/Index" msgstr "Elimina la clau principal o l'index" -#: js/messages.php:63 +#: js/messages.php:65 msgid "Dropping Foreign key." msgstr "Retirant clau externa." -#: js/messages.php:65 +#: js/messages.php:67 msgid "This operation could take a long time. Proceed anyway?" msgstr "Aquesta operació pot ser bastant llarga. Procedim igualment?" -#: js/messages.php:67 +#: js/messages.php:69 #, php-format msgid "Do you really want to delete user group \"%s\"?" msgstr "Realment vols esborrar el grup d'usuaris \"%s\"?" -#: js/messages.php:69 +#: js/messages.php:71 #, php-format msgid "Do you really want to delete the search \"%s\"?" msgstr "Realment vols esborrar la cerca \"%s\"?" -#: js/messages.php:71 +#: js/messages.php:73 msgid "You have unsaved changes; are you sure you want to leave this page?" msgstr "Tens canvis no desats; estàs segur de sortir d'aquesta pàgina?" -#: js/messages.php:73 +#: js/messages.php:75 msgid "Do you really want to revoke the selected user(s) ?" msgstr "Realment vols revocar el(s) usuari(s) seleccionat(s)?" -#: js/messages.php:75 +#: js/messages.php:77 msgid "Do you really want to delete this central column?" msgstr "Realment vols esborrar aquesta columna central?" -#: js/messages.php:77 +#: js/messages.php:79 msgid "Do you really want to delete the selected items?" msgstr "Realment voleu suprimir els elements seleccionats?" -#: js/messages.php:79 +#: js/messages.php:81 msgid "" "Do you really want to DROP the selected partition(s)? This will also DELETE " "the data related to the selected partition(s)!" @@ -945,19 +949,19 @@ msgstr "" "Realment voleu esborrar la (es) partició (ons) seleccionada (es). Això " "també esborrarà les dades de la (es) partició (ons) seleccionada (es)!" -#: js/messages.php:83 +#: js/messages.php:85 msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "Realment voleu TRUNCAR les particions seleccionades?" -#: js/messages.php:85 +#: js/messages.php:87 msgid "Do you really want to remove partitioning?" msgstr "Realment vols eliminar el particionat?" -#: js/messages.php:86 +#: js/messages.php:88 msgid "Do you really want to RESET SLAVE?" msgstr "Realment vols reiniciar l'esclau (SLAVE)?" -#: js/messages.php:88 +#: js/messages.php:90 msgid "" "This operation will attempt to convert your data to the new collation. In " "rare cases, especially where a character doesn't exist in the new collation, " @@ -971,16 +975,16 @@ msgstr "" "en aquest cas us suggerim tornar al joc de caràcters original i indicar un " "consell " -#: js/messages.php:94 +#: js/messages.php:96 msgid "Garbled Data" msgstr "Dades confuses" -#: js/messages.php:96 +#: js/messages.php:98 msgid "Are you sure you wish to change the collation and convert the data?" msgstr "" "Estàs segur de voler canviar el joc de caràcters i convertir les dades?" -#: js/messages.php:98 +#: js/messages.php:100 msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -997,7 +1001,7 @@ msgstr "" "característica d'edició de columnes (l'enllaç de \"Canvi\") a la pàgina de " "l'estructura de taula." -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1005,160 +1009,160 @@ msgstr "" "Estàs segur de voler canviar tots els jocs de caràcters de columna i " "convertir les dades?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Desa i tanca" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Reinicia" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Reinicia tot" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Falta un valor al formulari!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Tria al menys una d'aquestes opcions!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Entra un numero vàlid!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Entra una longitud vàlida!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Afegir índex" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Editar índex" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Afegeix %s columna(es) a l'index" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Crea un índex d'una sola columna" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Crea una índex compost" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Composa amb:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Tria columna(es) per a l'índex." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Has d'afegir al menys una columna." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Vista prèvia de l'SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Simulació de consulta" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Files coincidents:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "Consulta SQL:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Valors Y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "El nom del servidor és buit!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "El nom d'usuari és buit!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "La contrasenya és buida!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Les contrasenyes no coincideixen!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Treu els usuaris triats" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Tanca" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "S'ha creat la plantilla." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Plantilla carregada." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "S'ha actualitzat la plantilla." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "S'ha esborrat la plantilla." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Altre" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Connexions / Processos" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Configuració local de la monitorització incompatible!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1171,155 +1175,155 @@ msgstr "" "més. Si us plau, restableixi la configuració per defecte al menú " "Configuració." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Eficiència del cau de consultes" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Ús de la memòria cau de consultes" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Memòria cau de consultes utilitzada" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Ús de la CPU del sistema" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Memòria del sistema" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Intercanvi del sistema" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Mitjana de càrrega" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Memòria total" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Memòria al cau" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Memòries intermitges" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Memòria lliure" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Memòria utilitzada" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Intercanvi total" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Intercanvi en cau" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Intercanvi utilitzat" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Intercanvi lliure" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Bytes enviats" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Bytes rebuts" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Connexions" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Processos" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d taula(es)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Consultes" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Tràfic" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Configuració" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Afegeix gràfic a a la graella" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Afegeix al menys una variable a les series!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1331,47 +1335,47 @@ msgstr "Afegeix al menys una variable a les series!" msgid "None" msgstr "Res" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Reempren la monitorització" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Pausa la monitorització" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Començar auto recarregar" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Aturar auto recarregar" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "«general_log» i «slow_query_log» estàn actius." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "«general_log» està actiu." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "«slow_query_log» està actiu." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "«slow_query_log» i «general_log» estàn desactivats." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "«log_output» no està definit com a TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "«log_output» està definit com a TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1382,12 +1386,12 @@ msgstr "" "més de %d segons. És recomenable configurar «long_query_time» entre 0 i 2 " "segons depenent del sistema." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "«long_query_time» està configurat a %d segon(s)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1396,30 +1400,30 @@ msgstr "" "valors predeterminats en reiniciar el servidor:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Configurar «log_output» a %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Activar %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Desactivar %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Definir «long_query_time» a %d segons." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1427,59 +1431,59 @@ msgstr "" "No pots canviar aquestes variables. Inicia la sessió com a root o contacta " "amb el teu administrador de bases de dades." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Canviar configuracions" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Configuracions actuals" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Títol del gràfic" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Diferencial" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Dividit per %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Unitat" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Del registre de consultes lentes" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Del registre general" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" "No es coneix el nom de la base de dades per aquesta consulta als registres " "del servidor." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "analitzant registres" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Analitzant i carregant registres. Pot tardar." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Cancel.lar petició" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1490,7 +1494,7 @@ msgstr "" "d'agrupació, donat que la resta d'atributos de les consultes pot diferir, " "com el temps d'inici.." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1499,34 +1503,34 @@ msgstr "" "Donat que s'ha triat agrupar consultes INSERT, les consultes INSERT a la " "mateixa taula també s'han agrupat, sense importar les dades afegides." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "S'han carregat les dades del registre. Consultes executades en aquest " "període de temps:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Saltar a la taula del registre" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "No s'han trobat dades" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Registre analitzat, però no s'han trobat dades en aquest periode de temps." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analitzant…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Explicar sortida" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1534,7 +1538,7 @@ msgstr "Explicar sortida" msgid "Status" msgstr "Estat" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1544,58 +1548,58 @@ msgstr "Estat" msgid "Time" msgstr "Temps" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Temps total:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Perfilant resultats" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Taula" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Gràfic" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Opcions de filtres per a la taula del registre" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filtrar" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filtrar consultes per paraula/expresió regular:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Agrupar consultes, ignorant dades variables en clàusules WHERE" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Suma de files agrupades:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Total:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Carregant els registres" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Ha fallat l'actualització de la monitorització" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1605,28 +1609,28 @@ msgstr "" "vàlida. La causa més probable d'aixó és que la sessió ha finalitzat. Pot ser " "d'ajuda recarregar la pàgina i tornar a entrar les dades de connexió." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Recarregar pàgina" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Files afectades:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Ha fallat la interpretació de l'arxiu de configuració. No sembla que sigui " "codi JSON vàlid." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Ha fallat la creació de la graella del gràfic amb la configuració importada. " "Restablint la configuració per defecte…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1635,63 +1639,63 @@ msgstr "" msgid "Import" msgstr "Importa" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Importar configuració del monitor" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Tria l'arxiu a importar." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "No hi ha arxius disponibles al servidor per importar!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Analitzar consulta" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Sistema d'assessorament" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Possibles problemes de rendiment" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Problema" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Recomanacions" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Detalls de la regla" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Justificació" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Variable usada / formula" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Prova" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Donant format a l'SQL…" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "No s'han trobat paràmetres!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1703,60 +1707,60 @@ msgstr "No s'han trobat paràmetres!" msgid "Cancel" msgstr "Cancel.lar" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Configuració de la pàgina relacionada" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Aplicar" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Carregar…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Petició avortada!!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "Processant petició" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "Petició fallida!!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Error processant a la petició" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Codi d'error: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Text de l'error: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "No s'han triat bases de dades." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Eliminant columna" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Afegint clau principal" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1766,56 +1770,56 @@ msgstr "Afegint clau principal" msgid "OK" msgstr "Correcte" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Prem per rebutjar aquest avís" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Reanomenant bases de dades" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Copiant base de dades" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Canviant de joc de caràcters" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Activa les comprovacions de claus externes" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Error en obtenir la quantitat real de files." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Cercar" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Amaga els resultats de cerca" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Mostrar resultats de cerca" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Navegant" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Esborrant" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "La definició d'una funció enmagatzemada ha d'incloure una instrucció RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1831,44 +1835,44 @@ msgstr "" msgid "Export" msgstr "Exporta" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "editor de ENUM/SET" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Valors per la columna %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Valors per la nova columna" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Entra cada valor en un camp separat." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Afegir %d valors" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Nota: Si l'arxiu conté múltiples taules, es combinaran en una." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Amagar quadre de consultes" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Mostrar quadre de consultes" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1878,7 +1882,7 @@ msgstr "Mostrar quadre de consultes" msgid "Edit" msgstr "Edita" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1889,41 +1893,41 @@ msgstr "Edita" msgid "Delete" msgstr "Esborra" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d no és un num. vàlid de fila." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Navega valors externs" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Cap consulta desada automàticament" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Variable %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Triar" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Selector de columnes" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Cerca a aquesta llista" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1933,15 +1937,15 @@ msgstr "" "columnes per a la base de dades %s tingui columnes que no estiguin a la " "taula actual." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Veure més" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Estàs segur?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1949,51 +1953,51 @@ msgstr "" "Aquesta acció pot canviar la definició d'algunes columnes.
Estàs segur " "de voler continuar?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Continua" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Afegir clau principal" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "S'ha afegit una clau principal." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Portant-te al següent pas…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Fi de pas" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Segon pas de normalització (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Fet" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Confirmar dependències parcials" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Les dependències parcials seleccionades són:" -#: js/messages.php:444 +#: js/messages.php:446 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2001,20 +2005,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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "No s'han triat dependències parcials!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Amaga la llista de dependències parcials" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2022,41 +2026,41 @@ 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:456 +#: js/messages.php:458 msgid "Step" msgstr "Pas" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Les següents accions es faràn:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "Eliminar columnes %s de la taula %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Crea la següent taula" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Tercer pas de la normalització (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Confirmar dependències transitives" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Les dependències seleccionades són:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "No s'han triat dependències!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2066,124 +2070,124 @@ msgstr "No s'han triat dependències!" msgid "Save" msgstr "Desa" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Amaga el criteri de cerca" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Mostrar criteri de cerca" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Interval de cerca" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Màxim de columna:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Mínim de columna:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Valor mínim:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Valor màxim:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Amaga el criteri de cerca i reemplaça" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Mostrar el criteri de cerca i reemplaça" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Cada punt representa una fila de dades." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Situant el cursor sobre un punt es mostrarà la seva etiqueta." -#: js/messages.php:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "selecciona dues columnes" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Selecciona dues columnes diferents" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Contingut del punter de dades" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Còpia" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Punt" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Cadena de línies" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Polígon" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "Cercle interior" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Cercle exterior" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Vols copiar la clau de xifratge?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Clau d'encriptació" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2191,24 +2195,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:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Tria la clau referenciada" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Tria una clau externa" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Tria la clau principal o una clau única!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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?" @@ -2216,76 +2220,76 @@ msgstr "" "No has desat els canvis en el disseny. Es perdran si no els deses. Vols " "continuar?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Nom de pàgina" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 msgid "Delete page" msgstr "esborra la pàgina" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sense títol" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Tria una pàgina per continuar" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Entra un nom de pàgina vàlid" -#: js/messages.php:548 +#: js/messages.php:550 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:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Pàgina esborrada correctament" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Exporta l'esquema relacional" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Les modificacions han estat desades" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Afegeix una opció per a la columna \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d objecte(s) creat(s)." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Envia" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Prem la tecla escape per cancel·lar la edició." -#: js/messages.php:561 +#: js/messages.php:563 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,15 +2297,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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Arrossega per reordenar." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Cliqueu per ordenar els resultats segons aquest columna." -#: js/messages.php:567 +#: js/messages.php:569 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 " @@ -2312,28 +2316,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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Prem per marcar/desmarcar." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Feu doble clic per copiar el nom de columna." -#: js/messages.php:574 +#: js/messages.php:576 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Mostra tot" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2342,13 +2346,13 @@ msgstr "" "l'edició de quadrícula, checkbox, Editar, Copiar i Esborrar enllaços poden " "no funcionar després de desar." -#: js/messages.php:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2356,102 +2360,102 @@ msgstr "" "De veritat vols veure totes les files? Una taula gran pot fer fallar el " "navegador." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Longitud inicial" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "Cancel.lar" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Avortat" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Correcte" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Importar l'estat" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Deixa anar els arxius aquí" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Tria primer la base de dades" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Imprimeix" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Vés a l'enllaç:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Copia el nom de la columna." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Genera una contrasenya" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Genera" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Més" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Mostra el panell" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Amagar el panell" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Mostra l'arbre d'ítems amagat." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Enllaç amb el panell principal" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Desenllaça amb el panell principal" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2461,42 +2465,42 @@ msgstr "" "actualitzar-la. La nova versió és la %s, alliberada el %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", darrera versió estable:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "actualitzat" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Crea una vista" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Enviar informe d'error" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Presentar informe d'error" -#: js/messages.php:656 +#: js/messages.php:658 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:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Canviar les configuracions de l'informe" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Mostra el detall de l'informe" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2504,7 +2508,7 @@ msgstr "" "La vostra exportació és incomplerta degut al límit de temps d'execució massa " "baix a nivell de PHP!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2513,59 +2517,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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Detectats alguns errors al servidor!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Mira al peu d'aquesta finestra." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Ignora tot" -#: js/messages.php:688 +#: js/messages.php:690 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:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Executar aquesta consulta de nou?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Realment vols esborrar aquesta marca?" -#: js/messages.php:702 +#: js/messages.php:704 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:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s consultes executades %s vegades en %s segons." -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "%s argument(s) correctes" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Mostra els arguments" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Amaga els arguments" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Temps dedicat:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2581,351 +2585,349 @@ msgstr "" "connexió\" podria ajudar. En Safari, tal problema és generalment causat pel " "\"Mode Privat de Navegació\"." -#: js/messages.php:711 +#: js/messages.php:713 msgid "Copy tables to" msgstr "Còpia taules a" -#: js/messages.php:712 -#| msgid "Add table prefix:" +#: js/messages.php:714 msgid "Add table prefix" msgstr "Afegir prefix de taula" -#: js/messages.php:713 -#| msgid "Replace table prefix" +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "Reemplaçar taula amb prefix" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copia la taula amb prefix" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Mes anterior" -#: js/messages.php:748 +#: js/messages.php:750 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:753 msgid "Today" msgstr "Avui" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Gener" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Febrer" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Març" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Abril" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Maig" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Juny" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Juliol" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Agost" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Setembre" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Octubre" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Novembre" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Desembre" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Des" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Diumenge" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Dilluns" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Dimarts" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Dimecres" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Dijous" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Divendres" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Dissabte" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Diu" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Dll" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Dma" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Dcr" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Dij" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Div" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Dis" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Dg" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Dl" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Dm" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Dc" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Dj" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Dv" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Ds" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendari-mes-any" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "Sufix de l'any" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Hora" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minut" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Segon" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Aquest camp és obligatori" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Corregeix aquest camp" -#: js/messages.php:886 +#: js/messages.php:888 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:889 msgid "Please enter a valid URL" msgstr "Entra una URL vàlida" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Entra una data vàlida" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Entra una data vàlida (ISO)" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Entra un numero vàlid" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Entra un numero vàlid de targeta de crèdit" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Entra només digits" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Entra el mateix valor un altre cop" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Entra no més de {0} caracters" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Entra al menys {0} caracters" -#: js/messages.php:915 +#: js/messages.php:917 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:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Entra un valor entre {0} i {1}" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "Entra un valor menor o igual a {0}" -#: js/messages.php:930 +#: js/messages.php:932 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:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Entra una hora o data vàlida" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Entra valor HEX correcte" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Error" @@ -2979,34 +2981,34 @@ msgstr "" "Caràcter inesperat en la línia %1$s. S'esperava una tabulació, però s'ha " "trobat \"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "No es pot llegir l'arxiu de configuració existent (%s)." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permisos incorrectes a l'arxiu de configuració, no pot ser modificable per " "tothom!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Tamany de lletra" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Col·lapsar" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Expandir" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Re-consulta" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3026,76 +3028,59 @@ msgstr "Base de dades" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Total %d desat" -msgstr[1] "Total %d desats" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "privat" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "compartit" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s i %3$s desats inclosos" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Sense relacions desades" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Durant la sessió actual" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Explica" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Perfils" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Consultes desades" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "La consulta ha fallat" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Temps consultat" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "Consola de consultes SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Consola" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Neteja" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Historial" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3113,125 +3098,125 @@ msgstr "Historial" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Opcions" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Consultes desades" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Depuració SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Prem Ctrl+Enter per executar la consulta" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Prem Enter per executar la consulta" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "ascendent" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "descendent" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Ordre:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Nombre" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Ordre d'execució" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Temps dedicat" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Ordena per:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Agrupa consultes" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Desagrupa consultes" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Mostra la traça" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Amaga la traça" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Recompte:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Refresca" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Afegir" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Afegir consulta desada" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Etiqueta" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Base de dades destinació" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Comparteix aquesta consulta desada" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Establir el valor per defecte" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Sempre expandir missatges de consultes" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Mostrar l'historial de consultes a l'inici" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Mostrar la consulta actual" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3239,16 +3224,15 @@ msgstr "" "Executa consultes amb Enter i afegeix nova línia amb Majuscules + Enter. Per " "fer aixó permanent, mira a les preferències." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Canvia al tema <>" -#: libraries/DatabaseInterface.php:1528 -#| msgid "Failed to read configuration file!" +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "No es pot establir el joc de caracters de connexió configurat!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3256,19 +3240,19 @@ msgstr "" "El servidor no està responent (o el sòcol del servidor local MySQL no està " "configurat correctament)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "El servidor no respon." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Comprova els permisos del directori que conté la base de dades." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Detalls…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 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 " @@ -3581,7 +3565,7 @@ msgstr "Pot ser aproximat. Veieu [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "La vostra comanda SQL ha estat executada amb èxit." @@ -3702,15 +3686,15 @@ msgstr "Pujada de l'arxiu aturada per l'extensió." msgid "Unknown error in file upload." msgstr "Error desconegut al pujar l'arxiu." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Error movent l'arxiu pujat, consulta la [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Error moven l'arxiu pujat." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "No es pot llegir l'arxiu pujat." @@ -3774,8 +3758,8 @@ msgid "Keyname" msgstr "Nom de clau" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3825,13 +3809,13 @@ msgstr "S'ha esborrat l'índex %s." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Elimina" @@ -3933,7 +3917,7 @@ msgstr "Permisos" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operacions" @@ -3948,7 +3932,7 @@ msgstr "Seguiment" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4327,11 +4311,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "El camí de les imatges del tema %s és incorrecte!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "No hi ha vista prèvia disponible." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "agafa" @@ -4656,21 +4640,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Espacial" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Màx: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Anàlisi estàtica:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "s'han trobat %d errors durant l'anàlisi." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4681,32 +4665,32 @@ msgstr "s'han trobat %d errors durant l'anàlisi." msgid "MySQL said: " msgstr "MySQL diu: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Explica SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Salta l'explicació de l'SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "Analitzar Explain a %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "Sense codi PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "Executa consulta" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Crea codi PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Editar línia" @@ -4795,6 +4779,10 @@ msgstr "per hora" msgid "per day" msgstr "per dia" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "compartit" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Cerca:" @@ -4903,11 +4891,11 @@ msgstr "Afegir una nova columna" msgid "Attributes" msgstr "Atributs" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "No es pot llegir l'arxiu de configuració!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4915,32 +4903,32 @@ msgstr "" "Això generalment significa que té un error de sintaxi, revisa els errors que " "es mostren a continuació." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "No es pot carregar la configuració per defecte des de: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Index de servidor invàlid: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nom de host invàlid pel servidor %1$s. Si us plau, reviseu la configuració." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Servidor %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Mètode d'identificació incorrecte establert a la configuració:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4952,24 +4940,24 @@ msgstr "" "phpMyAdmin fa servir actualment el fus horari per defecte del servidor de " "base de dades." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Es necessari actualitzar a %s %s o posterior." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Error: No coincideix un «token»" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "intent de sobreescriure la variable GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "possible aprofitament" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "detectat teclat numéric" @@ -5706,13 +5694,13 @@ msgstr "Posa els noms de columnes a la primera fila" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Columnes delimitades amb" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Fi de columna amb" @@ -5730,12 +5718,12 @@ msgstr "Treu caràcters CRLF de dins les columnes" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Columnes acabades amb" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Línies acabades amb" @@ -6328,7 +6316,7 @@ msgid "Column names in first row" msgstr "Noms de columnes a la primera fila" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "No importis files buides" @@ -7895,7 +7883,7 @@ msgid "Table %s has been emptied." msgstr "S'ha buidat la taula %s." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Vista %s esborrada." @@ -8028,8 +8016,8 @@ msgid "No data to display" msgstr "No hi ha dades per mostrar" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8067,52 +8055,52 @@ msgstr[1] "Els noms '%s' són paraules clau reservades de MySQL." msgid "No column selected." msgstr "No s'han triat columnes." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Les columnes s'han mogut correctament." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Error de consulta" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Canvi" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Índex" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Espacial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Text sencer" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Valors diferents" @@ -8122,7 +8110,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "No es troba l'extensió %s. Comprova la configuració de PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Sense canvis" @@ -8920,56 +8908,56 @@ msgstr "MySQL ha retornat un conjunt buit (p.e. cap fila)." msgid "[ROLLBACK occurred.]" msgstr "[S'ha produït un ROLLBACK.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Editar estructura seguint l'enllaç \"Estructura\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Anar a la base de dades %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Editar configuració de %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Anar a la taula: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Estructura de %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Anar a la vista: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9018,55 +9006,55 @@ msgstr "O" msgid "web server upload directory:" msgstr "directori de pujada d'arxius del servidor web:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Edita/Insereix" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Continua l'inserció amb %s files" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "i llavors" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Insereix com a nova fila" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Insereix com a nova fila i ignora els errors" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Mostra la consulta d'inserció" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Torna" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Insereix un nou registre" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Torna a aquesta pàgina" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Edita el següent registre" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." 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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9078,11 +9066,11 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Mostrant consulta SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Id de la fila inserida: %1$d" @@ -9118,7 +9106,6 @@ msgid "Data only" msgstr "Només dades" #: libraries/mult_submits.lib.php:349 -#| msgid "Add AUTO_INCREMENT value" msgid "Add AUTO INCREMENT value" msgstr "Afegeix valor AUTO INCREMENT" @@ -9956,7 +9943,7 @@ msgstr "Repara la taula" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Esborra les dades o la taula" @@ -9969,32 +9956,32 @@ msgid "Delete the table (DROP)" msgstr "Esborra la taula (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analitza" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Comprova" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimitza" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Reconstrueix" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Repara" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Truncar" @@ -10020,35 +10007,35 @@ msgstr "Elimina particionament" msgid "Check referential integrity:" msgstr "Comprova la integritat referencial:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "No es pot moure la taula sobre ella mateixa!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "No es pot copiar la taula sobre ella mateixa!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Taula %s moguda a %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "La taula %s s'ha copiat a %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "El nom de la taula és buit!" @@ -10225,7 +10212,7 @@ msgstr "Opcions de bolcat de dades" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Bolcant dades de la taula" @@ -10249,21 +10236,21 @@ msgstr "Definició" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Estructura de la taula" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Estructura per a vista" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Estructura de suport per a vistes" @@ -10354,7 +10341,7 @@ msgid "Database:" msgstr "Base de dades:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Dades:" @@ -10455,7 +10442,7 @@ msgid "Data creation options" msgstr "Opcions de creació de dades" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Truncar taula abans d'inserir" @@ -10533,13 +10520,12 @@ msgstr "" "bolquin i recarreguin entre servidors de diferents zones horàries)
" #: libraries/plugins/export/ExportSql.php:508 -#| msgid "It appears your database uses functions;" msgid "It appears your database uses routines;" msgstr "Sembla que la teva base de dades fa servir rutines;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "exportar els àlies podria no funcionar correctament en tots els casos." @@ -10581,52 +10567,52 @@ msgstr "en ús" msgid "It appears your database uses views;" msgstr "Sembla que la teva base de dades fa servir vistes;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Restriccions per taules bolcades" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Restriccions per la taula" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indexos per taules bolcades" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Index de la taula" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT per les taules bolcades" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT per la taula" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "TIPUS MIME PER LA TAULA" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELACIONS DE LA TAULA" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Sembla que la teva base de dades fa servir disparadors (-triggers-);" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "(Veure a sota per a la visualització actual)" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Error llegint dades:" @@ -10658,7 +10644,7 @@ msgstr "" "importació (afegeix ON DUPLICATE KEY UPDATE)" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10681,15 +10667,15 @@ msgstr "" msgid "Column names: " msgstr "Nom de les columnes: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Paràmetre incorrecte per importació CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10699,18 +10685,18 @@ msgstr "" "s'han escrit correctament, separats per comes i sense incloure'ls entre " "cometes." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Format incorrecte a l'entrada CSV a la línia %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Comptador de columnes incorrecte en l'entrada CSV a la línia %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Aquesta extensió no suporta importacions comprimides!" @@ -10718,23 +10704,23 @@ msgstr "Aquesta extensió no suporta importacions comprimides!" msgid "MediaWiki Table" msgstr "Taula MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Format incorrecte d'entrada mediawiki a la línia:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" "Importar percentatges amb els decimals adients (ex. 12.00% a .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importar moneda (ex. $5.00 a 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10742,7 +10728,7 @@ msgstr "" "El fitxer XML especificat era incorrecte o incomplet. Si us plau, arreglar-" "lo i torna a intentar-ho." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "No es pot interpretar el full de càlcul OpenDocument!" @@ -10750,23 +10736,23 @@ msgstr "No es pot interpretar el full de càlcul OpenDocument!" msgid "ESRI Shape File" msgstr "Arxiu de tipus ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Hi va haver un error en importar el fitxer de tipus ESRI: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "Has intentat importar un arxiu no vàlid o conté dades no vàlides!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "La extensió espacial MySQL no és compatible amb el tipus ESRI \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "L'arxiu importat no té dades!" @@ -10778,7 +10764,7 @@ msgstr "Modus de compatibilitat SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "No feu servir AUTO_INCREMENT per a valors zero" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13792,15 +13778,11 @@ msgstr "S'esperaven %1$d valors, però s'han trobat %2$d." msgid "An opening bracket followed by a set of values was expected." msgstr "S'esperava un claudàtor d'obertura seguit per un conjunt de valors." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "S'esperava un claudàtor d'obertura." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "S'esperava una coma o un claudàtor de tancament" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "S'esperava una coma o un claudàtor de tancament." @@ -13813,17 +13795,18 @@ msgstr "S'esperava un claudàtor de tancament." msgid "Unrecognized data type." msgstr "Tipus de dades desconegut." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "S'ha trobat un àlies anteriorment." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Punt inesperat." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "S'esperava un àlies." @@ -13841,19 +13824,19 @@ msgstr "S'esperava un desplaçament." msgid "This option conflicts with \"%1$s\"." msgstr "Aquesta opció està en conflicte amb \"%1$s\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "S'esperava el nom antic de la taula." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "S'esperava la paraula clau \"TO\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "S'esperava el nou nom de la taula." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "S'esperava una operació de canvi de nom." @@ -13879,15 +13862,15 @@ 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:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Inici no esperat de declaració." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Tipus de declaració no reconegut." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "No s'ha iniciat cap transacció anteriorment." @@ -13910,15 +13893,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Paraula clau no reconeguda." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "S'esperava el nom de l'entitat." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "S'esperava una paraula clau \"RETURNS\"." @@ -14610,7 +14593,7 @@ msgstr "Veure un bolcat (esquema) de la taula" msgid "Invalid table name" msgstr "Nom de taula incorrecte" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Fila: %1$s, Columna: %2$s, Error: %3$s" @@ -15530,7 +15513,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:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Particions" @@ -15563,7 +15546,7 @@ msgstr "Taula de partició" msgid "Edit partitioning" msgstr "Edita particionament" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Editar vista" @@ -15678,11 +15661,11 @@ msgstr "Nom de VISTA" msgid "Column names" msgstr "Nom de les columnes" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Reanomena la vista a" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Esborrar la vista (DROP)" @@ -16983,6 +16966,20 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "{concurrent_insert} està establert a 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Total %d desat" +#~ msgstr[1] "Total %d desats" + +#~ msgid "private" +#~ msgstr "privat" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s i %3$s desats inclosos" + +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "S'esperava una coma o un claudàtor de tancament" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/ckb.po b/po/ckb.po index c79575e05c..de5097a0d6 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-11-20 15:47+0000\n" "Last-Translator: Dana Akram \n" "Language-Team: Kurdish Sorani " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save & Close" msgid "Save & close" msgstr "پاشەکەوتکردن و داخستن" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "سەرلەنوێ" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Reset All" msgid "Reset all" msgstr "پەشیمانبوونەوە لە هەموو" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "بیرچوونی نرخێک لە فۆڕمەکە!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "لانیکەم یەک هەڵبژاردە هەڵبژێرە!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "تکایە ژمارەیەکی درووست بنووسە!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "تکایە درێژییەکی درووست بنووسە!" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add Index" msgid "Add index" msgstr "زیادکردنی نیشاندەر" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "چاکردنی نیشاندەر" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "خانەکانی %s زۆر بکە بۆ پێڕست" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "درووستکردنی پێڕستی یەک خانەیی" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "خانە هەڵبژێرە بۆ پێڕست." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "پێویستە بە لانی کەم یەک خانە درووست بکەیت." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "پێشاندانی SQL" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "لە داواکاری" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "ریزە هاوتاکان:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "داواکاری سیكوێڵ" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "نرخەکانی Y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "ناوی خانەخوێ بەتاڵە!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "ناوی بەکارهێنانی خانەخوێ بەتاڵە!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "وشەی نهێنی بەتاڵە!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "تێپەڕە وشەکان وەک یەک نین!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "سڕینەوەی بەکارهێنەرە دەست نیشانکراوەکان" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "داخستن" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "ڕیزەکە سڕایەوە" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "هیتر" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "بەستنەکان / پڕۆسەکان" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "چاودێری شێوه‌پێدانی ناوخۆیی نەگونجاوە" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1166,167 +1172,167 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "لێهاتوویی بیرگەی داواکاری" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "بەکارهێنانی بیرگەی داواکاری" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "بیرگەی داواکاری بەکارهاتوو" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "بەکارهێنانی سی‌ پی‌ یوو‌ی سیستەم" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "یادی سیستەم" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "ئاڵوگۆڕی سیستەم" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "ڕێژەی بار" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "سەرجەمی یاد" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "یادی بارکراو" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "یادی هەڵگیراو" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "یادی بەتاڵ" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "یادی بەکارهاتوو" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "سەرجەمی ئاڵوگۆڕ" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "ئاڵوگۆڕی بارکراو" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "ئاڵوگۆڕی بەکارهاتوو" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "ئاڵوگۆڕی بەتاڵ" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "بایت نێردرا" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "بایت وەرگیرا" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "بەستنەکان" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "پڕۆسەکان" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "بایت" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "کیلۆبایت" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "مێگابایت" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "گێگابایت" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "تێرابایت" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "پێتابایت" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "ئێکسابایت" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d خشتە(کان)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "پرسیارەکان" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "هاتووچوو" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "ڕێکخستنەکان" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "زیادکردنی هێلکاری بۆ تۆڕ" -#: js/messages.php:218 +#: js/messages.php:220 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "تکایە لانی کەم یەک گۆڕاو بۆ زنجیرەکە زیاد بکە" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1338,47 +1344,47 @@ msgstr "تکایە لانی کەم یەک گۆڕاو بۆ زنجیرەکە زی msgid "None" msgstr "هیچ" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "خستنەوەکاری چاودێری" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "ڕاگرتنی چاودێری" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "دەستپێکردنی نوێکردنەوەی خۆکارانە" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "ڕاگرتنی نوێکردنەوەی خۆکارانە" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log و slow_query_log چالاککراون." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log چالاککراوە." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log چالاککراوە." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log و general_log ناچالاککراون." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output دانەنراوە بۆ خشتە." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output دانراوە بۆ خشتە." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1389,42 +1395,42 @@ msgstr "" "%d چرکە بخایەنن. باشترە کە کاتیی long_query_time کەم بکرێتەوە بۆ 0 تا 2 " "چرکە، بەپێی تواناکانی ڕاژەکار." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time ڕێکخراوە بۆ to %d چرکە." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "log_output دانێ بۆ %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "چالاککردن %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "ناچالاککردن %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "long_query_time ڕێکبخە بۆ %d." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1432,95 +1438,95 @@ msgstr "" "تۆ ناتوانیت ئەم گۆڕاوانە بگۆڕیت. تکایە وەک root بڕۆ ژوورەوە یان پەیوەندی بە " "بەڕێوبەری بنکە دراوەکەت بکە." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "گۆڕینی ڕێکخستنەکان" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "ڕێکخستنەکانی هەنووکە" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "جیاكاری" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "دابەشکراوە لەلایەن %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "یەکە" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "لە تۆماری خاوەوە" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "لە تۆماری گشتیەوە" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "شیکردنەوەی تۆمارەکان" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "شیکردنەوە & کردنەوەی تۆمارەکان. لەوانەیە کاتێکی کەمی پێ بچێت." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "لابردنی داواکاری" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "داتا تۆمارکراوەکان کرانەوە،داواکاریەکان جێبەجێ ئەکرێن لەم کاتەدا:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "بڕۆ بۆ تۆماری خشتە" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "هیچ زانیاریەک نەدۆزراوە" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "تۆمارەکە لێکدراوە، بەڵام هیچ زانیاریەک نەدۆزرایەوە لەو ماوەیە." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "لێکدانەوە…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "ڕوونکردنەوەی دەرەنجام" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1528,7 +1534,7 @@ msgstr "ڕوونکردنەوەی دەرەنجام" msgid "Status" msgstr "ڕەوش" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1538,84 +1544,84 @@ msgstr "ڕەوش" msgid "Time" msgstr "کات" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "هەموو کاتەکان:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "ئەنجامەکانی پڕۆفایل" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "خشتە" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "هێلکاری" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "هەڵبژاردنەکانی پاڵێوی تۆماری خشتە" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "پاڵێو" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "پاڵاوتنی داواکاریەکان بە word/regexp:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "کۆی گشتیی ڕیزە گرووپ کراوەکان:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "سەرجەم:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "بارکردنی تۆمارەکان" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "چاودێریکردنی تازەکردنەوەی سەرنەکەوتوو" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "بارکردنەوەى پەڕە" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "ڕیزە کارتێکراوەکان:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "نەتوانرا پەڕگەی ڕێکخستنەکان بخوێنرێتەوە، وادیارە کۆدەکانی JSON بە درووستی " "نەنووسراون." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1624,67 +1630,67 @@ msgstr "" msgid "Import" msgstr "هێنان" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "تکایە ئەو پەڕگەیە دەستنیشان بکە کە ئەتەوێت بکرێتەوە." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "هیچ پەڕگەیەک بوونی نییە لەسەر ڕاژەکار بۆ هێنان!" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "لێکدانەوەی داواکاری" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "سیستەمی ئاگادارکەر" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "ئەنجامە جێبەجێکراوە شیاوەکان" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "ئەنجام" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "ڕاسپاردە" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "وردەکاریەکانی یاسا" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "گونجاندن" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "گۆڕاو / دەستەواژەی بەکارهاتوو" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "تاقیکرنەوە" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "ڕادە هەڵەکان!" -#: js/messages.php:350 +#: js/messages.php:352 #: 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,74 +1702,74 @@ msgstr "ڕادە هەڵەکان!" msgid "Cancel" msgstr "لابردن" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "گۆڕینی ڕێکخستنەکان" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "ئامادەکردن…" -#: js/messages.php:358 +#: js/messages.php:360 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "داواکاریی پوچەڵ کرایەوە!!" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "کردنەوەی داواکاری" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Request Failed!!" msgid "Request failed!!" msgstr "داواکاریی سەرکەوتوو نەبوو!!" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "هەڵە لە کردنەوەی داواکاری" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "هەڵەی کۆد: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "هەڵەی نوسین: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "هیچ بنکەیەکی زانیاری هەڵنەبژێراوە." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "ستونە سڕێنراوەکان" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "زۆرکردنی نرخی سەرەکیی" -#: js/messages.php:367 +#: js/messages.php:369 #: 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,61 +1779,61 @@ msgstr "زۆرکردنی نرخی سەرەکیی" msgid "OK" msgstr "باشە" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "کرتە بکە بۆ لابردنی ئەم ئاگادارکردنەوە" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "ناونانەوەی بنکەی زانیاریەکان" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "لەبەرگرتنەوەی بنکەی دراو" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "گۆڕینی گورزەپیت" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "نەتوانرا ژمارەی ڕیزەکان بە درووستی بهێنرێت." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "گەڕان" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "شاردنەوەی ئەنجامەکانی گەڕان" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "پێشاندانی ئەنجامەکانی گەڕان" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "هێنان" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "سڕینەوە" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "پێناسەی فرمانی پاشەکەوتکراو پێویستە دەستەواژەی RETURN ی تێدابێت!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1843,46 +1849,46 @@ msgstr "پێناسەی فرمانی پاشەکەوتکراو پێویستە دە msgid "Export" msgstr "هەناردن" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "گۆڕەری ENUM/SET" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "نرخەکانی ستونی %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "نرخ بۆ ستونی نوێ" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "هەر نرخێک لە خانەی جیا بنووسە." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "نرخ(کان)ی %d زیادبکە" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "تێبینی: ئەگەر فایلەکە چەند خشتەیەکی تێدابێت، ئەوا تێکەڵی یەک دەکرێن بۆ یەک " "دانە." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "شاردنەوەی سندوقی داواکاری" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "پێشاندانی سندوقی داواکاری" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1892,7 +1898,7 @@ msgstr "پێشاندانی سندوقی داواکاری" msgid "Edit" msgstr "چاکردن" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1903,169 +1909,169 @@ msgstr "چاکردن" msgid "Delete" msgstr "سڕینەوە" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variables" msgid "Variable %d:" msgstr "گۆڕاوەکان" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "هەڵبژێرە" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "خانە دەستنیشانکەر" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "گەڕان لە ئەم لیستە" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "بینینی زۆرتر" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "ئایا دڵنیایت؟" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "بەردەوامبوون" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "زۆرکردنی نرخی سەرەکیی" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "نرخی سەرەکیی زۆر کرا." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "هەنگاوی داهاتووت…" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "کۆتایی هەنگاو" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "تەواو" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "هیچ بنکەیەکی زانیاری هەڵنەبژێراوە." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "هەنگاو" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "سڕینەوەی خانەکانی %s لە خشتەی %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "خشتەکانی خوارەوە درووست بکە" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "هیچ بنکەیەکی زانیاری هەڵنەبژێراوە." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2075,238 +2081,238 @@ msgstr "هیچ بنکەیەکی زانیاری هەڵنەبژێراوە." msgid "Save" msgstr "پاشەکەوتکردن" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "شاردنەوەی پێوانەکانی گەڕان" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "پێشاندانی پێوانەکانی گەڕان" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "گەڕانی خشتە" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column" msgid "Column maximum:" msgstr "ستون" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column" msgid "Column minimum:" msgstr "ستون" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "شاردنەوەی پێوانەکانی گەڕان" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "پێشاندانی پێوانەکانی گەڕان" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "هەر خاڵێک ڕیزە زانیاریەک دەنوێنێ." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "خستنەسەری سەر خاڵێک پێناسەکەی پێشان دەدات." -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "دوو ستون هەڵبژێرە" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "دوو ستونی جیا هەڵبژێرە" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "ناوەڕۆکی زانیاری خاڵ" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "فەرامۆشکردن" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "لەبەرگرتنەوە" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "خاڵ" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "ڕیزبه‌ندی هێڵی" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "فرە گۆشە" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "ئەندازەزانی" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "ئەڵقەی ناوەکی" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "ئەڵقەی دەرەکی:" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "پاشەکەوتکردنی پەڕە" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "کردنەوەی پەڕە" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "سڕینەوەی پەڕە" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "بێناو" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "تکایە پەڕەیەک هەڵبژێرە بۆ بەردەوامبوون" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "تکایە ناوێکی درووست بۆ پەڕە بنووسە" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "ئایا دەتەوێت گۆڕانکارییەکان پاشەکەوت بکەیت بۆ پەڕەی ئێستا؟" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "پەڕە بە سەرکەوتوویی سڕایەوە" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "دەستکاری کردن یان هەناردنی پەیوەندی نەخشە" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "گۆڕانکارییەکان پاشەکەوت کران" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "هەڵبژاردەیەک زۆر بکە بۆ خانەی \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d یەکە درووست کران." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "escape داگرە بۆ پاشگەزبوونەوە لە گۆڕین." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2314,161 +2320,161 @@ msgstr "" "تۆ چەند زانیاریەکت دەستکاری کردووە و پاشەکەوت نەکراون. تۆ دڵنیای لە دەرچوونت " "لەم پەڕە پێش پاشەکەوتکردنی زانیاریەکان؟" -#: js/messages.php:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "ڕایکێشە بۆ ڕیزکردنەوە." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "کرتە بکە بۆ ڕیزکردنی ئەنجام لەسەر بنەمای ئەم خانە." -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "کرتە بکە بۆ نیشانکردن / لابردنی نیشانکردن." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "دوو کرتە بکە بۆ ڕوونووسکردنی ناوی ستون." -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "هه‌مووی ببینه‌" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "ڕیزبه‌ندی هێڵی" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "واژلێهێنان" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "پووچەڵ کرایەوە" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "سەرکەوتووبوو" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "ئاستی هێنان" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "پەڕگەکانت لە ئێرە دابنێ" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "بنکەیەکی دراوە هەڵبژێرە لە پێشدا" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "بڕۆ بۆ بەستەر:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "ڕوونووسکردنی ناوی بەستەر." -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "کرتەی ڕاست لەسەر ناوی ستون بکە بۆ لەبەرگرتنەوەی بۆ ناو کلیپ بۆرد." -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "دروستکردنی تێپەڕە وشە" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "دروستکردن" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "زیاتر" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "هەمووی پێشاندە" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "شاردنەوەی نیشاندەرەکان" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show indexes" msgid "Show hidden navigation tree items." msgstr "پێشاندانی نیشاندەرەکان" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Hide indexes" msgid "Link with main panel" msgstr "شاردنەوەی نیشاندەرەکان" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Hide indexes" msgid "Unlink from main panel" msgstr "شاردنەوەی نیشاندەرەکان" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2476,31 +2482,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "، دوایین وەشانی جێگیر:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "نوێترینە" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Send Error Report" msgid "Send error report" msgstr "ناردنی ڕاپۆرتی هەڵە" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "ناردنی ڕاپۆرتی هەڵە" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2508,87 +2514,87 @@ msgstr "" "هەڵەیەکی گەورەی JavaScript هاتە پێش، دەتەوێت لە ڕوودانی ئەو هەڵەیە " "ئاگادارمان بکەیتەوە؟" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "گۆڕینی ڕێکخستنەکانی ڕاپۆرت" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "وردە زانیارییەکانی ڕاپۆرت" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "تکایە چاو لە بەشی خوارەوەی ئەم پەنجەرە بکە." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "لە بیرکردنی هەموو" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "ئایا دڵنیایت کە دەتەوێت ئەو Bookmark‌ ـە بسڕیتەوە؟" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "تێبینیەکانی خشتە" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "شاردنەوەی ئەنجامەکانی گەڕان" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2597,383 +2603,383 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "لە ڕوونووسینەوەی بنکەی دراوە بۆ" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "گۆڕینی پێشگری خشتە" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "گۆڕینی پێشگری خشتە" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "لەبەرگرتنەوەی خشتە لەگەڵ پێشگر" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "پێشتر" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "دواتر" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "ئەمڕۆ" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "کانونی دووەم" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "شوبات" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "مارت" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "نیسان" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "مایس" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "حوزەیران" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "تەموز" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "ئاب" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "ئەیلول" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "تشرینی یەکەم" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "تشرینی دووەم" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "کانونی یەکەم" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "کانوونی دووەم" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "شوبات" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "مارت" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "نیسان" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "مایس" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "حوزیران" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "تەموز" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "ئاب" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "ئەیلول" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "تشرینی یەکەم" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "تشرینی دووەم" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "کانوونی یەکەم" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "یەک شەم" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "دوو شەم" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "سێ شەم" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "چوار شەم" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "پێنج شەم" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "هەینی" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "شەممە" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "یەک شەم" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "دوو شەم" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "سێ شەم" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "چوار شەم" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "پێنج شەم" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "هەینی" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "شەممە" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "یەک شەم" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "دوو شەم" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "سێ شەم" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "چوار شەم" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "پێنج شەم" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "هەینی" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "شەممە" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "ڕۆژژمێر-مانگ-ساڵ" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "هیچ" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "كاتژمێر" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "خولەک" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "چرکە" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:888 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:887 +#: js/messages.php:889 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:925 +#: js/messages.php:927 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:930 +#: js/messages.php:932 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "هەڵە" @@ -3023,34 +3029,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "قەبارەی فۆنت" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "Query" msgid "Requery" msgstr "داواکاری" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3069,91 +3075,72 @@ msgid "Database" msgstr "بنکەی دراو" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Table Search" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "گەڕانی خشتە" -msgstr[1] "گەڕانی خشتە" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "شوێندۆز سڕایەوە." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Table Search" msgid "No bookmarks" msgstr "گەڕانی خشتە" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "ڕوونکردنەوەی سیكوێڵ" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Table Search" msgid "Bookmark" msgstr "گەڕانی خشتە" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query cache used" msgid "Query failed" msgstr "بیرگەی داواکاری بەکارهاتوو" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "Query execution time" msgid "Queried time" msgstr "ماوەی جێبەجێکردنی داواکاری" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy #| msgid "SQL query" msgid "SQL Query Console" msgstr "داواکاری سیكوێڵ" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3171,194 +3158,194 @@ msgstr "" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "هەڵبژاردنەکان" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Table Search" msgid "Bookmarks" msgstr "گەڕانی خشتە" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "in query" msgid "Press Ctrl+Enter to execute query" msgstr "لە داواکاری" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "in query" msgid "Press Enter to execute query" msgstr "لە داواکاری" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "لە سەرەتاوە بۆ کۆتایی" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "لە کۆتایی بۆ سەرەتا" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Other" msgid "Order:" msgstr "هیتر" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "ستون" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Other" msgid "Order by:" msgstr "هیتر" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy msgid "Group queries" msgstr "نیشاندانی پرسگەی SQL" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show all" msgid "Show trace" msgstr "هەمووی پێشاندە" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide indexes" msgid "Hide trace" msgstr "شاردنەوەی نیشاندەرەکان" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "ستون" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "تازەکردنەوە" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "و" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Table Search" msgid "Add bookmark" msgstr "گەڕانی خشتە" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy #| msgid "Remove database" msgid "Target database" msgstr "سڕینەوەی بنکەی دراوە" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Table Search" msgid "Share this bookmark" msgstr "گەڕانی خشتە" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Default" msgid "Set default" msgstr "بنەڕەت" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied database" msgid "Switch to dark theme" msgstr "بڕۆ بۆ بنکەی دراوەی ڕوونووس کراو" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Failed to set configured collation connection!" msgstr "چاودێری شێوه‌پێدانی ناوخۆیی نەگونجاوە" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3704,7 +3691,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3834,15 +3821,15 @@ msgstr "بارکردنی فایل ڕاگیرا بەهۆی پاشگرەوە." msgid "Unknown error in file upload." msgstr "هەڵەیەکی نەزانراو لە بارکردنی فایل." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "هەڵەیەک لەکاتی گواستنەوەی فایلی بارکراو." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "File was not an uploaded file." msgid "Cannot read uploaded file." @@ -3910,8 +3897,8 @@ msgid "Keyname" msgstr "کلیلەناو" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3961,13 +3948,13 @@ msgstr "" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "فڕیدان" @@ -4065,7 +4052,7 @@ msgstr "تایبەتمەندێتیەکان" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "کارەکان" @@ -4080,7 +4067,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4482,11 +4469,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "هیچ پێشبینینێک ئامادە نیە." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "وەریگرە" @@ -4749,21 +4736,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4774,38 +4761,38 @@ msgstr "" msgid "MySQL said: " msgstr "مای‌ئێس‌كیو‌ئێڵ دەڵێت: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "ڕوونکردنەوەی سیكوێڵ" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "پشتگوێخستنی ڕوونکردنەوەی سیكوێڵ" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "بەبێ پی ئێچ پی کۆد" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "ناردنی داواکاری" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "پی ئێچ پی کۆد دروست بکە" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit Index" msgctxt "Inline edit query" @@ -4897,6 +4884,10 @@ msgstr "لە کاتژمێرێکدا" msgid "per day" msgstr "لە ڕؤژێکدا" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "گەڕان:" @@ -5013,44 +5004,44 @@ msgstr "زیادکردن/سڕینەوەی ستونەکان" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Failed to read configuration file!" msgstr "چاودێری شێوه‌پێدانی ناوخۆیی نەگونجاوە" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "سێرڤەر" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5058,24 +5049,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5754,13 +5745,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5778,12 +5769,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -6362,7 +6353,7 @@ msgid "Column names in first row" msgstr "" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -7797,7 +7788,7 @@ msgid "Table %s has been emptied." msgstr "خشتەی %s خاڵی کرا." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -7933,8 +7924,8 @@ msgid "No data to display" msgstr "هیچ زانیاریەک نەدۆزراوە" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7982,52 +7973,52 @@ msgstr[1] "" msgid "No column selected." msgstr "هیچ ڕیزێک هەڵنەبژێراوە" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "گۆڕین" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -8037,7 +8028,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8796,54 +8787,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8889,53 +8880,53 @@ msgstr "یان" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "گۆڕین/تێخستن" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8947,11 +8938,11 @@ msgstr "" msgid "Value" msgstr "نرخ" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9816,7 +9807,7 @@ msgstr "چاکردنی خشتە" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9829,32 +9820,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9882,35 +9873,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -10083,7 +10074,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10107,21 +10098,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10219,7 +10210,7 @@ msgid "Database:" msgstr "بنکەی دراو" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Database" msgid "Data:" @@ -10320,7 +10311,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10389,7 +10380,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10435,58 +10426,58 @@ msgstr "بەکار دەبرێت" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy msgid "Indexes for dumped tables" msgstr "لەناو خشتە:\n" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy msgid "Indexes for table" msgstr "لەناو خشتە:\n" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "زۆرکردنی نرخی زۆربوونی خۆکارانە" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "زۆرکردنی نرخی زۆربوونی خۆکارانە" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10518,7 +10509,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10536,33 +10527,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10570,28 +10561,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Could not save recent table" msgid "Could not parse OpenDocument Spreadsheet!" @@ -10601,23 +10592,23 @@ msgstr "نەتوانرا خشتە تازەکە پاشەکەوت بکرێت" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10629,7 +10620,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -13435,15 +13426,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -13458,17 +13445,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -13490,19 +13478,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -13530,17 +13518,17 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "Number of rows" msgid "Unexpected beginning of statement." msgstr "ژمارەی ڕیزەکان" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13561,17 +13549,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "ڕیزەکە سڕایەوە" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14249,7 +14237,7 @@ msgstr "" msgid "Invalid table name" msgstr "ناوی خشتەی نادروست" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15269,7 +15257,7 @@ msgid "at beginning of table" msgstr "ژمارەی ڕیزەکان" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partial texts" msgid "Partitions" @@ -15314,7 +15302,7 @@ msgstr "تێکستە لاوەکیەکان" msgid "Edit partitioning" msgstr "چاکردنی نیشاندەر" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -15439,11 +15427,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Drop the database (DROP)" msgid "Delete the view (DROP)" @@ -16504,6 +16492,18 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "نرخی concurrent_insert ڕێکخراوە بۆ 0" +#, fuzzy +#~| msgid "Table Search" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "گەڕانی خشتە" +#~ msgstr[1] "گەڕانی خشتە" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "شوێندۆز سڕایەوە." + #, fuzzy #~| msgid "Replace table prefix" #~ msgid "Replace table prefix:" diff --git a/po/cs.po b/po/cs.po index 5d88479ec0..107768f5a8 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-17 11:39+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-02-16 10:08+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" @@ -49,7 +49,7 @@ msgid "Table comments:" msgstr "Komentář k tabulce:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -103,7 +103,7 @@ msgstr "Typ" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -165,16 +165,16 @@ msgid "Comments" msgstr "Komentáře" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Primární" -#: db_datadict.php:165 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:376 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:141 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:446 @@ -198,17 +198,17 @@ msgstr "Primární" msgid "No" msgstr "Ne" -#: db_datadict.php:165 js/messages.php:519 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:521 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:143 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -262,7 +262,7 @@ msgstr "Tabulky" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -408,23 +408,23 @@ msgid "Point:" msgstr "Bod:" #: gis_data_editor.php:216 gis_data_editor.php:243 gis_data_editor.php:299 -#: gis_data_editor.php:372 js/messages.php:508 +#: gis_data_editor.php:372 js/messages.php:510 msgid "X" msgstr "X" #: gis_data_editor.php:219 gis_data_editor.php:247 gis_data_editor.php:303 -#: gis_data_editor.php:378 js/messages.php:509 +#: gis_data_editor.php:378 js/messages.php:511 msgid "Y" msgstr "Y" #: gis_data_editor.php:241 gis_data_editor.php:297 gis_data_editor.php:370 -#: js/messages.php:511 +#: js/messages.php:513 #, php-format msgid "Point %d" msgstr "Bod %d" #: gis_data_editor.php:254 gis_data_editor.php:310 gis_data_editor.php:388 -#: js/messages.php:517 +#: js/messages.php:519 msgid "Add a point" msgstr "Přidat bod" @@ -446,7 +446,7 @@ msgstr "Vnitřní obrys %d:" msgid "Add a linestring" msgstr "Přidat linku" -#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:518 +#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:520 msgid "Add an inner ring" msgstr "Přidat vnitřní obrys" @@ -463,12 +463,12 @@ msgstr "Přidat mnohoúhelník" msgid "Add geometry" msgstr "Přidat geometrii" -#: gis_data_editor.php:411 js/messages.php:349 libraries/DbSearch.php:463 +#: gis_data_editor.php:411 js/messages.php:351 libraries/DbSearch.php:463 #: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:139 #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -498,7 +498,7 @@ msgstr "Přidat geometrii" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Proveď" @@ -517,7 +517,7 @@ msgstr "" msgid "Succeeded" msgstr "Úspěch" -#: import.php:58 js/messages.php:592 +#: import.php:58 js/messages.php:594 msgid "Failed" msgstr "Chyba" @@ -525,7 +525,7 @@ msgstr "Chyba" msgid "Incomplete params" msgstr "Chybí parametry" -#: import.php:184 +#: import.php:185 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -534,15 +534,15 @@ msgstr "" "Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si " "prosím %sdokumentaci%s, jak toto omezení obejít." -#: import.php:360 import.php:665 +#: import.php:361 import.php:666 msgid "Showing bookmark" msgstr "Zobrazuji oblíbený dotaz" -#: import.php:376 import.php:661 +#: import.php:377 import.php:662 msgid "The bookmark has been deleted." msgstr "Položka byla smazána z oblíbených." -#: import.php:474 +#: import.php:475 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -551,12 +551,12 @@ msgstr "" "Nahraný soubor nemohl být přesunut, protože na serveru je nastaveno " "open_basedir bez přístupu k adresáři %s (nutné pro dočasné soubory)." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:491 import.php:568 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "Soubor nelze přečíst!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:502 import.php:517 import.php:542 import.php:557 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -565,7 +565,7 @@ msgstr "" "Pokusili jste se importovat soubor s nepodporovanou kompresí (%s). Buďto " "podpora není implementována nebo je vypnuta ve vašem nastavení." -#: import.php:574 +#: import.php:575 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -575,22 +575,26 @@ msgstr "" "nebo jeho velikost překročila velikost povolenou v nastavení PHP. Viz " "[doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:627 libraries/display_import.lib.php:662 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:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:669 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "Byl vytvořen oblíbený dotaz %s." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "Import byl úspěšně dokončen, bylo provedeno %d dotazů." +#: import.php:679 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "Import byl úspěšně dokončen, bylo provedeno %d dotazů." +msgstr[1] "Import byl úspěšně dokončen, bylo provedeno %d dotazů." +msgstr[2] "Import byl úspěšně dokončen, bylo provedeno %d dotazů." -#: import.php:705 +#: import.php:710 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -599,7 +603,7 @@ msgstr "" "Limit pro běh importu vypršel, prosím %sodešlete formulář%s znovu se stejným " "souborem a import bude pokračovat." -#: import.php:715 +#: import.php:720 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -612,8 +616,8 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Nelze zjistit průběh importu." -#: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: import_status.php:116 js/messages.php:450 js/messages.php:602 +#: libraries/Util.php:795 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Zpět" @@ -636,7 +640,7 @@ msgstr "" msgid "General settings" msgstr "Obecná nastavení" -#: index.php:191 js/messages.php:625 +#: index.php:191 js/messages.php:627 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:287 msgid "Change password" @@ -708,10 +712,11 @@ msgstr "Zobrazit informace o PHP" msgid "Version information:" msgstr "Informace o verzi:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:442 libraries/Util.php:509 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentace" @@ -838,95 +843,95 @@ msgstr "" "Server používá Suhosin. Prosím podívejte se do %sdokumentace%s pro popis " "problémů, které tím mohou být způsobeny." -#: js/messages.php:39 libraries/import.lib.php:207 sql.php:161 +#: js/messages.php:41 libraries/import.lib.php:207 sql.php:161 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Příkaz „DROP DATABASE“ je vypnutý." -#: js/messages.php:45 +#: js/messages.php:47 msgid "Confirm" msgstr "Potvrzení" -#: js/messages.php:46 +#: js/messages.php:48 #, php-format msgid "Do you really want to execute \"%s\"?" msgstr "Opravdu si přejete provést „%s“?" -#: js/messages.php:48 libraries/mult_submits.lib.php:440 +#: js/messages.php:50 libraries/mult_submits.lib.php:440 msgid "You are about to DESTROY a complete database!" msgstr "Chystáte se ZRUŠIT celou databázi!" -#: js/messages.php:50 +#: js/messages.php:52 msgid "You are about to DESTROY a complete table!" msgstr "Chystáte se ZRUŠIT celou tabulku!" -#: js/messages.php:52 +#: js/messages.php:54 msgid "You are about to TRUNCATE a complete table!" msgstr "Chystáte se VYPRÁZDNIT celou tabulku!" -#: js/messages.php:53 +#: js/messages.php:55 msgid "Delete tracking data for this table?" msgstr "Odstranit všechny informace o sledování této tabulky?" -#: js/messages.php:55 +#: js/messages.php:57 msgid "Delete tracking data for these tables?" msgstr "Odstranit všechny informace o sledování těchto tabulek?" -#: js/messages.php:57 +#: js/messages.php:59 msgid "Delete tracking data for this version?" msgstr "Odstranit údaje o sledování pro tuto verzi ?" -#: js/messages.php:59 +#: js/messages.php:61 msgid "Delete tracking data for these versions?" msgstr "Odstranit údaje o sledování pro tyto verze?" -#: js/messages.php:60 +#: js/messages.php:62 msgid "Delete entry from tracking report?" msgstr "Odstranit záznamy o sledování ze záznamu?" -#: js/messages.php:61 +#: js/messages.php:63 msgid "Deleting tracking data" msgstr "Odstraňuji sledovací data" -#: js/messages.php:62 +#: js/messages.php:64 msgid "Dropping Primary Key/Index" msgstr "Odstraňuji (primární) klíč" -#: js/messages.php:63 +#: js/messages.php:65 msgid "Dropping Foreign key." msgstr "Odstraňuji cizí klíč." -#: js/messages.php:65 +#: js/messages.php:67 msgid "This operation could take a long time. Proceed anyway?" msgstr "Tato operace může trvat velmi dlouho. Přejete si ji přesto provést?" -#: js/messages.php:67 +#: js/messages.php:69 #, php-format msgid "Do you really want to delete user group \"%s\"?" msgstr "Opravdu si přejete odstranit skupinu „%s“?" -#: js/messages.php:69 +#: js/messages.php:71 #, php-format msgid "Do you really want to delete the search \"%s\"?" msgstr "Opravdu si přejete odstranit vyhledávání „%s“?" -#: js/messages.php:71 +#: js/messages.php:73 msgid "You have unsaved changes; are you sure you want to leave this page?" msgstr "Na stránce jsou neuložené změny. Opravdu si ji přejete opustit?" -#: js/messages.php:73 +#: js/messages.php:75 msgid "Do you really want to revoke the selected user(s) ?" msgstr "" "Opravdu si přejete odstranit přístupová práva vybraného(ných) uživatele(lů) ?" -#: js/messages.php:75 +#: js/messages.php:77 msgid "Do you really want to delete this central column?" msgstr "Opravdu chcete odstranit tento centrální sloupec?" -#: js/messages.php:77 +#: js/messages.php:79 msgid "Do you really want to delete the selected items?" msgstr "Opravdu si přejete odstranit vybranné položky?" -#: js/messages.php:79 +#: js/messages.php:81 msgid "" "Do you really want to DROP the selected partition(s)? This will also DELETE " "the data related to the selected partition(s)!" @@ -934,19 +939,19 @@ msgstr "" "Opravdu chcete ODSTRANIT vybrané oddíly? Veškerá data na oddílech budou " "smazána!" -#: js/messages.php:83 +#: js/messages.php:85 msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "Opravdu si přejete ZKRÁTIT vybrané oddíly?" -#: js/messages.php:85 +#: js/messages.php:87 msgid "Do you really want to remove partitioning?" msgstr "Opravdu si přejete odstranit vybrané oddíly?" -#: js/messages.php:86 +#: js/messages.php:88 msgid "Do you really want to RESET SLAVE?" msgstr "Opravdu si přejete obnovit podřízený server (RESET SLAVE)?" -#: js/messages.php:88 +#: js/messages.php:90 msgid "" "This operation will attempt to convert your data to the new collation. In " "rare cases, especially where a character doesn't exist in the new collation, " @@ -959,15 +964,15 @@ msgstr "" "neexistuje v novém řazení; v tomto případě doporučujeme návrat k původnímu " "řazení a použít návody na " -#: js/messages.php:94 +#: js/messages.php:96 msgid "Garbled Data" msgstr "Poškozená data" -#: js/messages.php:96 +#: js/messages.php:98 msgid "Are you sure you wish to change the collation and convert the data?" msgstr "Opravdu chcete změnit řazení a zkonvertovat data?" -#: js/messages.php:98 +#: js/messages.php:100 msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -977,166 +982,166 @@ msgid "" "" msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "Opravdu chcete změnit řazení ve všech sloupcích a převést data?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Uložit a zavřít" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Původní" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Obnovit vše" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Chybějící hodnota ve formuláři!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Vyberte alespoň jednu z možností!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Prosím zadejte platné číslo!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Prosím zadejte platnou délku!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Přidat klíč" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Upravit klíč" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Přidat %s polí do klíče" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Vytvořit klíč na jednom sloupci" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Vytvořit složený klíč" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Složit s:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Prosím zvolte které pole chcete přidat do klíče." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Musíte přidat alespoň jedno pole." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Náhled SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Simulovat dotaz" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Odpovídající záznamy:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL dotaz:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Hodnoty Y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Jméno počítače je prázdné!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Jméno uživatele je prázdné!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Heslo je prázdné!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Hesla nejsou stejná!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Odstraňuji vybrané uživatele" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Ukončit" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Šablona byla vytvořena." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Šablona načtena." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Šablona byla změněna." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Šablona byla smazána." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Ostatní" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "," -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Připojení / Procesů" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Vaše nastavení monitoru není kompatibilní!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1147,155 +1152,155 @@ msgstr "" "monitoru a pravděpodobně tedy nebude fungovat správně. Prosím obnovte " "výchozí nastavení v nabídce Nastavení." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Úspěšnost mezipaměti dotazů" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Využití mezipaměti dotazů" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Využito mezipaměti dotazů" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Využití CPU" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Operační paměť" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Odkládací oblast" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Průměrné zatížení" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Celková paměť" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Mezipaměť" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Vyrovnávací paměť" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Volná paměť" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Využitá paměť" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Swap celkem" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Cachovaný swap" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Využitý swap" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Volný swap" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Odesláno bajtů" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Přijato bajtů" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Připojení" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Procesy" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabulek" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Dotazy" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Provoz" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Nastavení" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Přidat graf do mřížky" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Prosím přidejte do série alespoň jednu hodnotu!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1307,47 +1312,47 @@ msgstr "Prosím přidejte do série alespoň jednu hodnotu!" msgid "None" msgstr "Žádná" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Obnovit monitor" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Přerušit monitor" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Zapnout automatické obnovování" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Vypnout automatické obnovování" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log a slow_query_log jsou povoleny." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log je povolen." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log je povolen." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log a general_log jsou zakázány." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output není nastaven na tabulku." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output je nastaven na tabulku." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1358,12 +1363,12 @@ msgstr "" "sekund. Doporučujeme nastavit proměnnou long_query_time na 0-2 sekund, v " "závislosti na zatížení vašeho systému." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time je nastaven na %d sekund." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1371,30 +1376,30 @@ msgstr "" "Budou provedeny následující změny, které budou platné do restartu serveru:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Nastavit log_output na %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Zapnout %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Vypnout %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Nastavit long_query_time na %d sekund." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1402,57 +1407,57 @@ msgstr "" "Nemůžete změnit uvedené proměnné. Prosím přihlaste se jako root nebo " "kontaktujte vašeho správce databáze." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Změnit nastavení" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Aktuální nastavení" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Název grafu" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Rozdíly" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Vyděleno %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Jednotka" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Ze záznamu pomalých dotazů" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Z obecného záznamu dotazů" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "V záznamu server není pro tento dotaz známo jméno databáze." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Zkoumám záznamy" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Načítám a analyzuji záznamy. To může chvíli trvat." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Zrušit požadavek" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1462,7 +1467,7 @@ msgstr "" "dohromady. K seskupení byl však použit jen SQL dotaz, takže další vlastnosti " "dotazů, jako například čas jeho spuštění, se mohou lišit." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1471,35 +1476,35 @@ msgstr "" "Vzhledem k tomu, že bylo zvoleno seskupení dotazů INSERT, jsou tyto dotazy " "pro jednu tabulku sloučeny dohromady, bez ohledu na skutečně vkládaná data." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Záznamy byly načteny. V tomto časovém rozmezí byly spuštěny následující " "dotazy:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Přejít na tabulku se záznamem" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Nebyla nalezena žádná data" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Záznamy byly načteny, ale v tomto časovém rozmezí nebyly nalezeny žádné " "dotazy." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analyzuji…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Vysvětlení dotazu" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1507,7 +1512,7 @@ msgstr "Vysvětlení dotazu" msgid "Status" msgstr "Stav" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1517,58 +1522,58 @@ msgstr "Stav" msgid "Time" msgstr "Čas" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Celkový čas:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Výsledky profilování" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabulka" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Graf" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Nastavení filtrování záznamových tabulek" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filtr" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filtrovat dotazy podle slova nebo regulárního výrazu:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Sloučit dotazy ignorováním dat ve WHERE" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Součet sloučených řádků:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Celkem:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Nahrávám záznamy" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Obnovení monitoru selhalo" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1578,27 +1583,27 @@ msgstr "" "způsobeno vypršeným sezením. Problém můžete vyřešit novým načtením stránky a " "přihlášením." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Znovu načíst stránku" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Ovlivněné záznamy:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Selhalo načtení konfiguračního souboru. Pravděpodobně se nejedná o JSON." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Selhalo vytvoření grafu z importovaného nastavení. Používám výchozí " "nastavení…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1607,63 +1612,63 @@ msgstr "" msgid "Import" msgstr "Import" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Nahrát nastavení monitoru" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Prosím zvolte soubor, který chcete nahrát." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Na serveru nejsou žádné soubory!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Analyzovat dotaz" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Poradce" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Možné výkonostní problémy" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Problém" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Doporučení" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Podrobnosti o pravidle" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Zdůvodnění" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Použitá proměnná / vzorec" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Kontrola" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Formátuji SQL…" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "Nebyly nalezeny parametry!" -#: js/messages.php:350 +#: js/messages.php:352 #: 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,60 +1680,60 @@ msgstr "Nebyly nalezeny parametry!" msgid "Cancel" msgstr "Zrušit" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Nastavení stránky" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Použít" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Nahrávám…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Požadavek byl přerušen!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "Probíhá zpracování požadavku" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "Požadavek se nezdařil!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Chyba při zpracování požadavku" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Číslo chyby: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Popis chyby: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Nebyla vybrána žádná databáze." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Odstraňuji sloupec" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Přidávám primární klíč" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1738,55 +1743,55 @@ msgstr "Přidávám primární klíč" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Klikněte pro schování této zprávy" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Přejmenovávám databáze" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Kopíruji databázi" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Měním znakovou sadu" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Zapnout kontrolu cizích klíčů" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Chyba při čtení skutečného počtu řádek." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Vyhledávám" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Skrýt výsledky vyhledávání" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Zobrazit výsledky vyhledávání" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Procházím" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Odstraňuji" -#: js/messages.php:391 +#: js/messages.php:393 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:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1802,44 +1807,44 @@ msgstr "Definice uložené funkce musí obsahovat příkaz RETURN!" msgid "Export" msgstr "Export" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "Upravit ENUM/SET" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Hodnoty pro sloupec %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Hodnoty pro nový sloupec" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Zadejte každou hodnotu do samostatného pole." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Přidat %d hodnot" -#: js/messages.php:403 +#: js/messages.php:405 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:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Skrýt pole pro dotaz" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Zobrazit pole pro dotaz" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1849,7 +1854,7 @@ msgstr "Zobrazit pole pro dotaz" msgid "Edit" msgstr "Upravit" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1860,41 +1865,41 @@ msgstr "Upravit" msgid "Delete" msgstr "Odstranit" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 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:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Projít hodnoty cizích klíčů" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Není automaticky ukládaný dotaz" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Proměnná %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Zvolit" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Vybrat sloupec" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Vyhledávání v tomto seznamu" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1903,15 +1908,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:424 +#: js/messages.php:426 msgid "See more" msgstr "Zobrazit více" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Jste si jistý?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1919,51 +1924,51 @@ msgstr "" "Tato akce může změnit některé definice sloupců.
Jste si jisti, že chcete " "pokračovat?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Pokračovat" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Přidat primární klíč" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Byl přidán primární klíč." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Přesměrovávám na další krok…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Konec kroku" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Druhý krok normalizace (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Hotovo" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Potvrzení částečných závislostí" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Byly zvoleny následující částečné závislosti:" -#: js/messages.php:444 +#: js/messages.php:446 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 +1976,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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Nebyly vybrány žádné částečné závislosti!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Skrýt seznam částečných závislostí" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1991,41 +1996,41 @@ 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:456 +#: js/messages.php:458 msgid "Step" msgstr "Krok" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Budou provedeny následující úpravy:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "ODSTRANIT sloupce %s z tabulky %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Vytvořit následující tabulku" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Třetí krok normalizace (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Potvrzení tranzitivních závislostí" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Byly zvoleny následující závislosti:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Nebyly vybrány žádné závislosti!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2035,122 +2040,122 @@ msgstr "Nebyly vybrány žádné závislosti!" msgid "Save" msgstr "Uložit" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Skrýt parametry vyhledávání" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Zobrazit parametry vyhledávání" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Vyhledávání rozsahu" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Největší hodnota sloupce:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Nejmenší hodnota sloupce:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Nejmenší hodnota:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Největší hodnota:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Skrýt parametry vyhledávání a nahrazování" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Zobrazit parametry vyhledávání a nahrazování" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Každý bod reprezentuje řádek dat." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Najetí myší nad bod ukáže jeho název." -#: js/messages.php:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Zvolte dva sloupce" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Zvolte dva odlišné sloupce" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Obsah datového bodu" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignorovat" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Kopírovat" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Bod" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Linka" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Mnohoúhelník" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometrie" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "Vnitřní obrys" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Vnější obrys" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Přejete si zkopírovat šifrovací klíč?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Šifrovací klíč" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2158,24 +2163,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:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Zvolte odkazovaný klíč" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Zvolte cizí klíč" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Prosím zvolte primární nebo unikátní klíč!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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?" @@ -2183,90 +2188,90 @@ msgstr "" "Neuložili jste změny ve schématu. Pokud je neuložíte, budou ztraceny. " "Přejete si pokračovat?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Jméno stránky" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Odstranit stránku" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Beze jména" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Prosím vyberte stránku pro pokračování" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Prosím zadejte platný název stránky" -#: js/messages.php:548 +#: js/messages.php:550 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:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Stránka byla odstraněna" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Exportovat relační schéma" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Změny byly uloženy" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Přidat paramer pro sloupec „%s“." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "Bylo vytvořeno %d objektů." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Provést" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Klávesou Esc ukončíte editaci." -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Uspořádejte přetažením." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Klikněte pro seřazení výsledků podle tohoto sloupce." -#: js/messages.php:567 +#: js/messages.php:569 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 +2281,26 @@ msgstr "" "
- Control+Kliknutí nebo Alt+Kliknutí(MAC: Shift+Option+Kliknutí) " "sloupec odstraní z ORDER BY podmínky" -#: js/messages.php:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Klikněte pro označení." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Poklepejte pro zkopírování jména pole." -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Klikněte na šipku
pro vybrání sloupců." -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Zobrazit vše" -#: js/messages.php:578 +#: js/messages.php:580 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 +2309,12 @@ msgstr "" "editování v mřížce, zaškrtávací políčka nebo odkazy na editaci a mazání " "fungovat." -#: js/messages.php:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2317,101 +2322,101 @@ msgstr "" "Opravdu si přejete zobrazit všechny řádky? U velké tabulky by mohlo dojít ke " "spadnutí prohlížeče." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Původní délka" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "zrušit" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Přerušené" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Úspěch" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Stav importu" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Přetáhněte sem soubory" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Nejdříve zvolte databázi" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Vytisknout" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Přejít na odkaz:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Zkopírovat název pole." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Vytvořit heslo" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Vytvořit" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Více" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Zobrazit panel" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Skrýt panel" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Zobrazit skryté položky navigačního panelu." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Spojit s hlavním panelem" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Odpojit od hlavního panelu" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2421,48 +2426,48 @@ msgstr "" "je %s a byla vydána %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", poslední stabilní verze:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "aktuální" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Vytvořit pohled" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Odeslat chybové hlášení" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Odeslat chybové hlášení" -#: js/messages.php:656 +#: js/messages.php:658 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:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Změnit nastavení hlášení" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Zobrazit podrobnosti hlášení" -#: js/messages.php:662 +#: js/messages.php:664 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:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2471,58 +2476,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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Na serveru došlo byly zjištěny chyby!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Prosím podívejte se na spodní část okna." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Ignorovat vše" -#: js/messages.php:688 +#: js/messages.php:690 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:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Spustit tento dotaz znovu?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Opravdu si přejete odstranit tuto záložku?" -#: js/messages.php:702 +#: js/messages.php:704 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:704 +#: js/messages.php:706 #, 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:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "Zadáno %s argumentů" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Zobrazit argumenty" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Skrýt argumenty" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Doba běhu:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2531,349 +2536,349 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 msgid "Copy tables to" msgstr "Zkopírovat tabulky do" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "Přidat tabulce předponu" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "Nahradit tabulce předponu" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Zkopírovat tabulku s předponou" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Předchozí" -#: js/messages.php:748 +#: js/messages.php:750 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:753 msgid "Today" msgstr "Dnešek" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "leden" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "únor" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "březen" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "duben" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "květen" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "červen" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "červenec" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "srpen" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "září" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "říjen" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "listopad" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "prosinec" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "led" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "úno" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "bře" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "dub" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "kvě" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "čen" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "čec" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "srp" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "zář" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "říj" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "lis" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "pro" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Neděle" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Pondělí" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Úterý" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Středa" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Čtvrtek" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Pátek" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Úte" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Stř" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Čtv" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Pát" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Út" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Čt" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Pá" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Hodiny" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minuty" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Sekundy" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Toto pole je povinné" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Prosím opravte hodnotu v tomto poli" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Prosím zadejte platný e-mail" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Prosím zadejte platnou adresu URL" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Prosím zadejte platné datum" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Prosím zadejte platné datum dle ISO8601" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Prosím zadejte platné číslo" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Prosím zadejte platné číslo platební karty" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Prosím zadávejte pouze číslice" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Prosím zadejte stejnou hodnotu znovu" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Prosím nezadávejte více než {0} znaků" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Prosím zadejte více než {0} znaků" -#: js/messages.php:915 +#: js/messages.php:917 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:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Prosím zadejte hodnotu mezi {0} a {1}" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "Prosím zadejte číslo menší nebo rovno {0}" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "Prosím zadejte číslo větší nebo rovno {0}" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Prosím zadejte platné datum nebo čas" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Prosím zadejte platné hexadecimalní číslo" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Chyba" @@ -2926,34 +2931,34 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" "Neočekávaný znak na řádku %1$s. Očekáván tabelátor, ale nalezeno „%2$s“." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Nepodařilo se přečíst existující konfigurační soubor (%s)." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Chybná přístupová práva konfiguračního souboru, neměl by být zapisovatelný " "pro všechny!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Velikost písma" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Sbalit" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Rozbalit" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Znovu" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2973,77 +2978,60 @@ msgstr "Databáze" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Celkem %d záložka" -msgstr[1] "Celkem %d záložky" -msgstr[2] "Celkem %d záložek" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "soukromá" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "sdílená" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s a %3$s záložky zahrnuty" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Žádné záložky" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Během aktuální relace" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Vysvětlit" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profilování" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Záložka" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Dotaz selhal" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Doba běhu" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "Konzole pro SQL dotazy" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Konzole" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Vyčistit" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Historie" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3061,125 +3049,125 @@ msgstr "Historie" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Nastavení" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Záložky" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Ladit SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Stiskněte Ctrl+Enter pro spuštění dotazu" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Stiskněte Enter pro spuštění dotazu" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "vzestupně" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "sestupně" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Pořadí:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Počet" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Pořadí provedení" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Čas běhu" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Seřadit dle:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Seskupit dotazy" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Zrušit seskupení dotazů" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Zobrazit trasovací informace" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Skrýt trasovací informace" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Počet:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Obnovit" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Přidat" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Přidat záložku" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Název" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Cílová databáze" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Sdílet záložku" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Nastavit výchozí" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Vždy rozbalit query zprávy" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Zobrazit historii dotazů při spuštění" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Zobrazit aktuálně prohlížený dotaz" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3187,37 +3175,37 @@ msgstr "" "Spustit dotazy zmáčknutím klávesy Enter a vložit nový řádek pomocí Shift + " "Enter.Chcete-li to nastavit trvale, podívejte se na nastavení." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Přepnout na tmavý motiv" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Nepodařilo se načíst konfigurační soubor!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 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:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Server neodpovídá." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 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:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Podrobnosti…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 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." @@ -3531,7 +3519,7 @@ msgstr "Počet nemusí být přesný, viz [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Váš SQL-dotaz byl úspěšně vykonán." @@ -3652,16 +3640,16 @@ msgstr "Nahrávání souboru zastaveno rozšířením." msgid "Unknown error in file upload." msgstr "Neznámá chyba při nahrávání souboru." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Chyba při přejmenování nahraného soubory, viz [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Chyba při přesouvání nahraného souboru." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Nahraný soubor nelze přečíst." @@ -3725,8 +3713,8 @@ msgid "Keyname" msgstr "Název klíče" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3776,13 +3764,13 @@ msgstr "Klíč %s byl odstraněn." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Odstranit" @@ -3884,7 +3872,7 @@ msgstr "Oprávnění" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Úpravy" @@ -3899,7 +3887,7 @@ msgstr "Sledování" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4279,11 +4267,11 @@ msgstr "Chyba při vytváření cizího klíče na %1$s (zkotrolujte typ pole)" msgid "No valid image path for theme %s found!" msgstr "Nebyla nalezena platná cesta k obrázkům pro vzhled %s!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Náhled není k dispozici." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "zvolit" @@ -4591,21 +4579,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Prostorové" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Maximální velikost: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Statická analýza:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "Při analýze bylo nalezeno %d chyb." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4616,32 +4604,32 @@ msgstr "Při analýze bylo nalezeno %d chyb." msgid "MySQL said: " msgstr "MySQL hlásí: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Vysvětlit SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Bez vysvětlení SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "Analyzovat výstup příkazu EXPLAIN na %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "Bez PHP kódu" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "Provést dotaz" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Vytvořit PHP kód" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Upravit zde v řádku" @@ -4729,6 +4717,10 @@ msgstr "za hodinu" msgid "per day" msgstr "za den" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "sdílená" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Vyhledat:" @@ -4835,11 +4827,11 @@ msgstr "Přidat nový sloupec" msgid "Attributes" msgstr "Vlastnosti" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Nepodařilo se načíst konfigurační soubor!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4847,31 +4839,31 @@ msgstr "" "Obvykle to je způsobenou chybou v tomto souboru, prosím opravte jakékoliv " "chyby vypsané níže." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nepodařilo se nahrát výchozí nastavení ze souboru: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Chybné číslo serveru: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Chybné jméno serveru pro server %1$s. Prosím zkontrolujte nastavení." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "V nastavení máte špatnou přihlašovací metodu:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4882,24 +4874,24 @@ msgstr "" "nastavení pro [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em]. phpMyAdmin " "momentálně používá výchozí časové pásmo databázového serveru." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Měli byste aktualizovat %s na verzi %s nebo vyšší." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Chyba: neplatný token" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Pokus o přepsání GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "možný pokus o exploit" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "detekován číselný klíč" @@ -5629,13 +5621,13 @@ msgstr "Přidat jména polí na první řádek" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Pole uzavřené do" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Pole escapována" @@ -5653,12 +5645,12 @@ msgstr "Odstranit znaky konců řádek z polí" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Pole oddělené" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Řádky ukončené" @@ -6244,7 +6236,7 @@ msgid "Column names in first row" msgstr "Jména polí na prvním řádku" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Neimportovat prázdné řádky" @@ -7800,7 +7792,7 @@ msgid "Table %s has been emptied." msgstr "Tabulka %s byla vyprázdněna." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Pohled %s byl odstraněn." @@ -7934,8 +7926,8 @@ msgid "No data to display" msgstr "Nebyla nalezena žádná data" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7974,52 +7966,52 @@ msgstr[2] "Názvy \"%s\" jsou rezervovaným klíčovým slovem MySQL." msgid "No column selected." msgstr "Nebyl vybrán žádný sloupec." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Vybraná pole byla úspěšně přesunuta." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Chyba dotazu" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Změnit" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Klíč" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Prostorový" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Fulltext" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Odlišné hodnoty" @@ -8029,7 +8021,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Chybí rozšíření %s. Prosím zkontrolujte nastavení PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Žádná změna" @@ -8814,54 +8806,54 @@ msgstr "MySQL vrátil prázdný výsledek (tj. nulový počet řádků)." msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK nastal]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Strukturu upravíte kliknutím na odkaz „Struktura“." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Přejít na databázi: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Upravit nastavení pro %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Přejít na tabulku: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Přejít na pohled: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8909,48 +8901,48 @@ msgstr "Nebo" msgid "web server upload directory:" msgstr "soubor z adresáře pro upload:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Upravit/Vložit" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Pokračovat ve vkládání s %s řádky" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "a poté" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Vložit jako nový řádek" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Vložit jako nový řádek a ignorovat chyby" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Zobrazit dotaz pro vložení" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Návrat na předchozí stránku" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Vložit další řádek" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Návrat na tuto stránku" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Upravit následující řádek" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -8960,7 +8952,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8972,11 +8964,11 @@ msgstr "" msgid "Value" msgstr "Hodnota" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Zobrazuji SQL dotaz" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "ID vloženého řádku: %1$d" @@ -9838,7 +9830,7 @@ msgstr "Opravit tabulku" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Odstranit data nebo tabulku" @@ -9851,32 +9843,32 @@ msgid "Delete the table (DROP)" msgstr "Odstranit tabulku (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analyzovat" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Zkontrolovat" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimalizovat" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Přestavět" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Opravit" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Vyprázdnit" @@ -9904,35 +9896,35 @@ msgstr "Zrušit dělení" msgid "Check referential integrity:" msgstr "Zkontrolovat integritu odkazů:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Nelze přesunout tabulku na sebe samu!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Nelze kopírovat tabulku na sebe samu!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabulka %s byla přesunuta do %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabulka %s byla zkopírována do %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Jméno tabulky je prázdné!" @@ -10109,7 +10101,7 @@ msgstr "Nastavení výpisu dat" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Vypisuji data pro tabulku" @@ -10133,21 +10125,21 @@ msgstr "Definice" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struktura tabulky" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktura pro pohled" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Zástupná struktura pro pohled" @@ -10237,7 +10229,7 @@ msgid "Database:" msgstr "Databáze:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Data:" @@ -10338,7 +10330,7 @@ msgid "Data creation options" msgstr "Možnosti vytváření dat" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Vyprázdnit tabulku před vkládáním" @@ -10421,7 +10413,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10465,52 +10457,52 @@ msgstr "právě se používá" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Omezení pro exportované tabulky" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Omezení pro tabulku" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Klíče pro exportované tabulky" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Klíče pro tabulku" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT pro tabulky" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT pro tabulku" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPY PRO TABULKU" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELACE PRO TABULKU" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktura pro pohled %s exportovaná jako tabulka" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Chyba při čtení dat:" @@ -10540,7 +10532,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10563,15 +10555,15 @@ msgstr "" msgid "Column names: " msgstr "Názvy polí: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Neznámý parametr pro import CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10580,18 +10572,18 @@ msgstr "" "Zadán chybný název pole (%s)! Ujistěte se, že jsou jména polí zapsána " "správně, oddělena čárkami a nejsou uzavřena v uvozovkách." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Chybný formát CSV dat na řádku %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Chybný počet polí v CSV datech na řádku %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Tento plugin nepodporuje komprimované soubory!" @@ -10599,23 +10591,23 @@ msgstr "Tento plugin nepodporuje komprimované soubory!" msgid "MediaWiki Table" msgstr "Tabulka MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Chybný formát mediawiki dat na řádku:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" "Importovat procenta jako desetinná čísla např. (0.12 místo 12.00%)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importovat měny (např. 5.00 místo $5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10623,7 +10615,7 @@ msgstr "" "Zadaný XML soubor je buď poškozený nebo nekompletní. Prosím opravte ho a " "zkuste to znovu." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Nepodařilo se otevřít Sešit OpenDocument!" @@ -10631,23 +10623,23 @@ msgstr "Nepodařilo se otevřít Sešit OpenDocument!" msgid "ESRI Shape File" msgstr "Soubor ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Při nahrávání souboru ESRI došlo k chybě: „%s“." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "Nahraný soubor je chybný nebo obsahuje chybná data!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "Prostorové rozšíření MySQL nepodporuje ESRI typ „%s“." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Nahraný soubor neobsahuje žádná data!" @@ -10659,7 +10651,7 @@ msgstr "Režim kompatibility SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nepoužívat AUTO_INCREMENT pro nulové hodnoty" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13651,15 +13643,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -13674,17 +13662,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -13706,23 +13695,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Počet aktuálně otevřených tabulek." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Počet aktuálně otevřených tabulek." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "Template was deleted." msgid "A rename operation was expected." @@ -13755,17 +13744,17 @@ 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:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "at beginning of table" msgid "Unexpected beginning of statement." msgstr "na začátku tabulky" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13788,19 +13777,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14489,7 +14478,7 @@ msgstr "Export tabulky" msgid "Invalid table name" msgstr "Chybné jméno tabulky" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Řádek: %1$s, Sloupec: %2$s, Chyba: %3$s" @@ -15467,7 +15456,7 @@ msgid "at beginning of table" msgstr "na začátku tabulky" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Oddíly" @@ -15510,7 +15499,7 @@ msgstr "používá oddíly" msgid "Edit partitioning" msgstr "Zrušit dělení" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Upravit pohled" @@ -15629,11 +15618,11 @@ msgstr "Jméno pohledu" msgid "Column names" msgstr "Názvy polí" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Přejmenovat pohled na" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Odstranit pohled (DROP)" @@ -16897,6 +16886,18 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastaveno na 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Celkem %d záložka" +#~ msgstr[1] "Celkem %d záložky" +#~ msgstr[2] "Celkem %d záložek" + +#~ msgid "private" +#~ msgstr "soukromá" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s a %3$s záložky zahrnuty" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/cy.po b/po/cy.po index 2c49b30f58..bd700ccfce 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:04+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Welsh " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Cadw fel ffeil" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Ailosod" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Dewis Pob" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Gwerth ar goll yn y ffurflen!" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "o leiaf un o'r geiriau" -#: js/messages.php:118 +#: js/messages.php:120 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number!" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:119 +#: js/messages.php:121 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid length!" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Index" msgid "Add index" msgstr "Indecs" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit next row" msgid "Edit index" msgstr "Golygu'r rhes nesaf" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format #| msgid "Add %s column(s)" msgid "Add %s column(s) to index" msgstr "Ychwanegwch %s colofn" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Crëwch berthynas" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Crëwch berthynas" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Columns enclosed by" msgid "Composite with:" msgstr "Amgaewyd colofnau gan" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %s column(s)" msgid "Please select column(s) for the index." msgstr "Ychwanegwch %s colofn" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Rydych chi wedi ychwanegu o leiaf un golofn." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "mewn ymholiad" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Latched pages" msgid "Matched rows:" msgstr "Tudalennau" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "Ymholiad SQL" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Gwerth" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Mae enw'r gwesteiwr yn wag!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Mae enw'r defnyddiwr yn wag!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Mae'r cyfrinair yn wag!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Nid yw'r cyfrineiriau'n debyg!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Cau" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template was created." msgstr "%s tabl" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Cafodd y rhes ei dileu" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Failed to write file to disk." msgid "Local monitor configuration incompatible!" msgstr "Methu ag ysgrifennu i'r ddisg." -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1250,140 +1263,140 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 #, fuzzy #| msgid "SQL query history table" msgid "Query cache efficiency" msgstr "Tabl hanes ymholiadau SQL" -#: js/messages.php:177 +#: js/messages.php:179 #, fuzzy #| msgid "Query results" msgid "Query cache usage" msgstr "Gweithrediadau canlyniadau ymholiad" -#: js/messages.php:178 +#: js/messages.php:180 #, fuzzy #| msgid "Query results" msgid "Query cache used" msgstr "Gweithrediadau canlyniadau ymholiad" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "Cyfrif ffeiliau log" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Pwll Byffer" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Cyfanswm" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "Tudalennau rhydd" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Prosesau" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1391,36 +1404,36 @@ msgid "%d table(s)" msgstr "%s tabl" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 #, fuzzy #| msgid "Versions" msgid "Questions" msgstr "Fersiynau" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:215 +#: js/messages.php:217 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Snap i'r grid" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1432,47 +1445,47 @@ msgstr "" msgid "None" msgstr "Dim" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1480,26 +1493,26 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Cadw fel ffeil" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, fuzzy, php-format #| msgctxt "BLOB repository" #| msgid "Enabled" @@ -1507,134 +1520,134 @@ msgid "Enable %s" msgstr "Galluogwyd" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Analluogwch" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "Cymerodd yr ymholiad %01.4f eiliad" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:254 +#: js/messages.php:256 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Teitl yr adroddiad" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 #, fuzzy #| msgid "Difference" msgid "Differential" msgstr "Gwahaniaeth" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 #, fuzzy #| msgid "Load" msgid "Analysing logs" msgstr "llwytho" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Ceisiadau darllen" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 #, fuzzy #| msgid "Jump to database" msgid "Jump to Log table" msgstr "Neidiwch i'r gronfa ddata" -#: js/messages.php:285 +#: js/messages.php:287 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Dim cronfeydd data" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Dadansoddi" -#: js/messages.php:290 +#: js/messages.php:292 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Esbonio SQL" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1642,7 +1655,7 @@ msgstr "Esbonio SQL" msgid "Status" msgstr "Statws" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1652,100 +1665,100 @@ msgstr "Statws" msgid "Time" msgstr "Amser" -#: js/messages.php:293 +#: js/messages.php:295 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Cyfanswm" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Proffilio" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tabl" -#: js/messages.php:296 +#: js/messages.php:298 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Set nodau" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 #, fuzzy #| msgid "Databases statistics" msgid "Log table filter options" msgstr "Ystadegau cronfeydd data" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Hidlydd" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 #, fuzzy #| msgid "Number of columns" msgid "Sum of grouped rows:" msgstr "Nifer y colofnau" -#: js/messages.php:306 +#: js/messages.php:308 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Cyfanswm" -#: js/messages.php:308 +#: js/messages.php:310 #, fuzzy #| msgid "Load" msgid "Loading logs" msgstr "llwytho" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Ail-lwytho" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1754,75 +1767,75 @@ msgstr "" msgid "Import" msgstr "Mewnforio" -#: js/messages.php:326 +#: js/messages.php:328 #, fuzzy #| msgid "Failed to write file to disk." msgid "Import monitor configuration" msgstr "Methu ag ysgrifennu i'r ddisg." -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Ymholiad Diweddaru" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Dogfennaeth" -#: js/messages.php:339 +#: js/messages.php:341 #, fuzzy #| msgid "Details…" msgid "Rule details" msgstr "Manylion…" -#: js/messages.php:340 +#: js/messages.php:342 #, fuzzy #| msgid "Authenticating…" msgid "Justification" msgstr "Yn dilysu…" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Routines" msgid "No parameters found!" msgstr "Rheolweithiau" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1834,74 +1847,74 @@ msgstr "Rheolweithiau" msgid "Cancel" msgstr "Diddymu" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy #| msgid "Load" msgid "Loading…" msgstr "llwytho" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Prosesau" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Query" msgid "Request failed!!" msgstr "Ymholiad" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Prosesau" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Dim cronfeydd data wedi'u dewis." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Procedure" msgid "Dropping column" msgstr "Gweithdrefnau" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add %s column(s)" msgid "Adding primary key" msgstr "Ychwanegwch %s colofn" -#: js/messages.php:367 +#: js/messages.php:369 #: 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,75 +1924,75 @@ msgstr "Ychwanegwch %s colofn" msgid "OK" msgstr "" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Ailenwch y gronfa ddata i" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Copïwch y gronfa ddata i" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Set nodau" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Select Foreign Key" msgid "Enable foreign key checks" msgstr "Dewis Allwedd Estron" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "Methu â nôl penawdau" -#: js/messages.php:383 +#: js/messages.php:385 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Chwilio" -#: js/messages.php:384 +#: js/messages.php:386 #, fuzzy #| msgid "in query" msgid "Hide search results" msgstr "mewn ymholiad" -#: js/messages.php:385 +#: js/messages.php:387 #, fuzzy #| msgid "Show insert query" msgid "Show search results" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:386 +#: js/messages.php:388 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Porwch" -#: js/messages.php:387 +#: js/messages.php:389 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "Dileu" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1995,50 +2008,50 @@ msgstr "" msgid "Export" msgstr "Allforio" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, fuzzy, php-format #| msgid "Number of columns" msgid "Values for column %s" msgstr "Nifer y colofnau" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, fuzzy, php-format #| msgid "Add a new server" msgid "Add %d value(s)" msgstr "Ychwanegwch weinydd newydd" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 #, fuzzy #| msgid "in query" msgid "Hide query box" msgstr "mewn ymholiad" -#: js/messages.php:408 +#: js/messages.php:410 #, fuzzy #| msgid "Show insert query" msgid "Show query box" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -2048,7 +2061,7 @@ msgstr "Dangos ymholiad mewnosod" msgid "Edit" msgstr "Golygu" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -2059,94 +2072,94 @@ msgstr "Golygu" msgid "Delete" msgstr "Dileu" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "Dydy %d ddim yn rhif rhes dilys." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Newidyn" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No databases selected." msgid "Column selector" msgstr "Dim cronfeydd data wedi'u dewis." -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Chwilio yn y gronfa ddata" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Routines" msgid "Continue" msgstr "Rheolweithiau" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "The primary key has been dropped." msgid "Primary key added." msgstr "Cafodd yr allwedd gynradd ei gollwng." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Adroddiad tracio" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2154,88 +2167,88 @@ msgstr "" msgid "End of step" msgstr "Diwedd y llinell" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Gorffen" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Dim cronfeydd data wedi'u dewis." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Create table on database %s" msgid "Create the following table" msgstr "Creu tabl mewn cronfa ddata %s" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Dim cronfeydd data wedi'u dewis." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2245,437 +2258,437 @@ msgstr "Dim cronfeydd data wedi'u dewis." msgid "Save" msgstr "Cadw" -#: js/messages.php:472 +#: js/messages.php:474 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "mewn ymholiad" -#: js/messages.php:473 +#: js/messages.php:475 #, fuzzy #| msgid "Show insert query" msgid "Show search criteria" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Chwilio" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Columns" msgid "Column maximum:" msgstr "Colofnau" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Columns" msgid "Column minimum:" msgstr "Colofnau" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy #| msgid "in query" msgid "Hide find and replace criteria" msgstr "mewn ymholiad" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy #| msgid "Show insert query" msgid "Show find and replace criteria" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "Ychwanegu/Dileu colofnau" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy #| msgid "Data definition statement" msgid "Data point content" msgstr "Datganiad diffiniad data" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Anwybyddu" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Terfynwyd llinellau gan" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Add a new server" msgid "Inner ring" msgstr "Ychwanegwch weinydd newydd" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Terfynwyd llinellau gan" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Dewis Allwedd Estron" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "Enw'r dudalen" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Dewis Tablau" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please select a database" msgid "Please select a page to continue" msgstr "Dewiswch gronfa ddata" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Golygu neu allforio sgema perthynol" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Cafodd yr addasiadau eu cadw" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Number of columns" msgid "Add an option for column \"%s\"." msgstr "Nifer y colofnau" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Gyrru" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Columns" msgid "Double-click to copy column name." msgstr "Colofnau" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Dangos pob" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Safle gwreiddiol" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Diddymu" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "Mewnforiwch ffeiliau" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Trothwy'r ffeil log" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Dewis Tablau" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Argraffu" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy #| msgid "Count tables" msgid "Go to link:" msgstr "Cyfrifwch y tablau" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Columns" msgid "Copy column name." msgstr "Colofnau" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generadu Cyfrinair" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Generadu" -#: js/messages.php:628 +#: js/messages.php:630 #, fuzzy #| msgid "Mo" msgid "More" msgstr "Llu" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Dangos pob" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indecsau" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Dangos grid" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Use text field" msgid "Link with main panel" msgstr "Defnyddiwch faes testun" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Use text field" msgid "Unlink from main panel" msgstr "Defnyddiwch faes testun" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2683,126 +2696,126 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Gwiriwch y fersiwn diweddaraf" -#: js/messages.php:648 +#: js/messages.php:650 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Neidiwch i'r gronfa ddata" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Crëwch fersiwn" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Report title" msgid "Show report details" msgstr "Teitl yr adroddiad" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Anwybyddu" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Dangoswch yr ymholiad hwn yma eto" -#: js/messages.php:700 +#: js/messages.php:702 #, 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:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "%s queries executed %s times in %s seconds." msgstr "Gweithredu ymholiad a glustnodwyd" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Sylwadau tabl" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "in query" msgid "Hide arguments" msgstr "mewn ymholiad" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2811,36 +2824,36 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Copïwch y gronfa ddata i" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Rename table to" msgid "Add table prefix" msgstr "Ailenwi tabl i" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Rename table to" msgid "Replace table with prefix" msgstr "Ailenwi tabl i" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Cynt" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2848,149 +2861,149 @@ msgid "Next" msgstr "Nesaf" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Heddiw" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Ionawr" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Chwefror" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Mawrth" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Ebrill" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Mai" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Mehefin" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Gorffennaf" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Awst" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Medi" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Hydref" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Tachwedd" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Rhagfyr" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Ion" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Chwe" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Maw" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Meh" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Gor" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Aws" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Med" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Hyd" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Tach" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Rhag" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Dydd Sul" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Dydd Llun" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Dydd Mawrth" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "DYdd Mercher" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Dydd Iau" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Dydd Gwener" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Dydd Sadwrn" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2998,207 +3011,207 @@ msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Llun" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Maw" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Iau" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sad" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Llu" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Ia" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Gw" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Dim" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Awr" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Munud" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Eiliad" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Defnyddiwch faes testun" -#: js/messages.php:886 +#: js/messages.php:888 #, 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:889 #, 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:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, 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:925 +#: js/messages.php:927 #, 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:930 +#: js/messages.php:932 #, 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:936 +#: js/messages.php:938 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Gwall" @@ -3249,34 +3262,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Maint ffont" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "in query" msgid "Requery" msgstr "mewn ymholiad" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3295,93 +3308,78 @@ msgid "Database" msgstr "Cronfa ddata" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Delete relation" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Dilëwch berthynas" -msgstr[1] "Dilëwch berthynas" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "Cafodd y clustnod ei ddileu." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Dilëwch berthynas" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "Esbonio SQL" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Proffilio" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Delete relation" msgid "Bookmark" msgstr "Dilëwch berthynas" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query" msgid "Query failed" msgstr "Ymholiad" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "SQL execution" msgid "Queried time" msgstr "Gweithrediad SQL" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy #| msgid "SQL query history table" msgid "SQL Query Console" msgstr "Tabl hanes ymholiadau SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Clirio" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "Skip Validate SQL" msgid "History" msgstr "Sgipio Dilysu SQL" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3399,199 +3397,199 @@ msgstr "Sgipio Dilysu SQL" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Opsiynau" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Delete relation" msgid "Bookmarks" msgstr "Dilëwch berthynas" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Ctrl+Enter to execute query" msgstr "Gweithredu ymholiad a glustnodwyd" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Enter to execute query" msgstr "Gweithredu ymholiad a glustnodwyd" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Esgynnol" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Disgynnol" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "Colofn" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execution order" msgstr "Gweithredu ymholiad a glustnodwyd" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "Show SQL queries" msgid "Group queries" msgstr "Dangos ymholiadau SQL" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "in query" msgid "Ungroup queries" msgstr "mewn ymholiad" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Dangos lliw" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Indexes" msgid "Hide trace" msgstr "Indecsau" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "Colofn" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Adfywio" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "And" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Delete relation" msgid "Add bookmark" msgstr "Dilëwch berthynas" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label key" msgid "Label" msgstr "Allwedd y label" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Cronfa ddata targed" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Delete relation" msgid "Share this bookmark" msgstr "Dilëwch berthynas" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Restore default value" msgid "Set default" msgstr "Adfer gwerth diofyn" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "SQL query history table" msgid "Show query history at start" msgstr "Tabl hanes ymholiadau SQL" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied database" msgid "Switch to dark theme" msgstr "Newidiwch i'r gronfa ddata a gopïwyd" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to write file to disk." msgid "Failed to set configured collation connection!" msgstr "Methu ag ysgrifennu i'r ddisg." -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Dyw'r gweinydd ddim yn ymateb" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Manylion…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3960,7 +3958,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4091,15 +4089,15 @@ msgstr "Cafodd y lanlwythiad ei atal gan estyniad." msgid "Unknown error in file upload." msgstr "Gwall anhysbys wrth lanlwytho ffeil." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4167,8 +4165,8 @@ msgid "Keyname" msgstr "Enw allweddol" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4218,13 +4216,13 @@ msgstr "Cafodd indecs %s ei ollwng." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Gollwng" @@ -4324,7 +4322,7 @@ msgstr "Breintiau" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Gweithrediadau" @@ -4339,7 +4337,7 @@ msgstr "Tracio" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4756,11 +4754,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "Dim llwybr delwedd dilys ar gael ar gyfer thema %s!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Dim rhagolwg ar gael." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "cymerwch e" @@ -5031,21 +5029,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Cyfrif ffeiliau log" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Uchaf: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5056,38 +5054,38 @@ msgstr "" msgid "MySQL said: " msgstr "Dywedodd MySQL: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Esbonio SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Sgipio Esbonio SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Heb God PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Cyflwyno Ymholiad" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Creu Cod PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5188,6 +5186,10 @@ msgstr "" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5304,45 +5306,45 @@ msgstr "Ychwanegwch %s colofn" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to write file to disk." msgid "Failed to read configuration file!" msgstr "Methu ag ysgrifennu i'r ddisg." -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Indecs gweinydd annilys: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Enw gwesteiwr annilys ar gyfer gweinydd %1$s. Adolygwch eich ffurfwedd." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Gweinydd" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5350,24 +5352,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Dylech uwchraddio i %s %s neu'n well." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6089,7 +6091,7 @@ msgstr "Rhoi enwau colofnau yn y rhes gyntaf" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Columns enclosed by" msgid "Columns enclosed with" @@ -6097,7 +6099,7 @@ msgstr "Amgaewyd colofnau gan" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Columns escaped by" msgid "Columns escaped with" @@ -6121,14 +6123,14 @@ msgstr "Tynnu nodau CRLF tu fewn colofnau" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "Terfynwyd colofnau gan" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6764,7 +6766,7 @@ msgid "Column names in first row" msgstr "Rhoi enwau colofnau yn y rhes gyntaf" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -8277,7 +8279,7 @@ msgid "Table %s has been emptied." msgstr "Cafodd tabl %s ei wagu." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8416,8 +8418,8 @@ msgid "No data to display" msgstr "Dim cronfeydd data" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8469,57 +8471,57 @@ msgstr[5] "" msgid "No column selected." msgstr "Dim cronfeydd data wedi'u dewis." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query" msgid "Query error" msgstr "Ymholiad" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Newid" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indecs" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Testunllawn" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -8531,7 +8533,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Dim newid" @@ -9338,58 +9340,58 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "Dim cronfeydd data" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Data ar goll ar gyfer %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "Count tables" msgid "Go to table: %s" msgstr "Cyfrifwch y tablau" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Strwythur yn unig" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9437,50 +9439,50 @@ msgstr "" msgid "web server upload directory:" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Mewnosod" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "ac yna" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Mewnosod fel rhes newydd" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Dangos ymholiad mewnosod" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Dychwelyd i'r dudalen flaenorol" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Mewnosod rhes newydd arall" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Dychwelyd i'r dudalen hon" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Golygu'r rhes nesaf" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9490,7 +9492,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9502,11 +9504,11 @@ msgstr "" msgid "Value" msgstr "Gwerth" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10391,7 +10393,7 @@ msgstr "Trwsio tabl" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" @@ -10408,32 +10410,32 @@ msgid "Delete the table (DROP)" msgstr "Copïwch y gronfa ddata i" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Dadansoddi" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Gwirio" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimeiddio" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Ailadeiladu" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Trwsio" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10461,37 +10463,37 @@ msgstr "Tynnu'r ymraniadu" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -10690,7 +10692,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dadlwytho data ar gyfer y tabl" @@ -10716,21 +10718,21 @@ msgstr "Disgrifiad" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Strwythur y tabl ar gyfer y tabl" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10842,7 +10844,7 @@ msgid "Database:" msgstr "Cronfa ddata" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10957,7 +10959,7 @@ msgid "Data creation options" msgstr "Ystadegau cronfeydd data" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11026,7 +11028,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11078,60 +11080,60 @@ msgstr "ar ddefnydd" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "Tu fewn tabl(au):" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Tu fewn tabl(au):" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Ychwanegwch werth AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Ychwanegwch werth AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -11165,7 +11167,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11185,33 +11187,33 @@ msgstr "" msgid "Column names: " msgstr "Colofnau" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11219,28 +11221,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "Tabl MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11250,23 +11252,23 @@ msgstr "Taenlen Open Document" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -11282,7 +11284,7 @@ msgstr "Modd cytunedd SQL" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -14232,15 +14234,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14255,17 +14253,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14287,19 +14286,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14330,17 +14329,17 @@ msgstr "Cafodd y gronfa ddata %1$s ei chreu." msgid "Variable name was expected." msgstr "Templed enw tabl" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "Show dimension of tables" msgid "Unexpected beginning of statement." msgstr "Dangos dimensiynau'r tabl" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14361,17 +14360,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15079,7 +15078,7 @@ msgstr "" msgid "Invalid table name" msgstr "Enw tabl annilys" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16183,7 +16182,7 @@ msgid "at beginning of table" msgstr "Dangos dimensiynau'r tabl" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16230,7 +16229,7 @@ msgstr "Ymraniad %s" msgid "Edit partitioning" msgstr "Tynnu'r ymraniadu" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16363,11 +16362,11 @@ msgstr "Enw VIEW" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Ailenwch golwg i" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Copy database to" msgid "Delete the view (DROP)" @@ -17551,6 +17550,18 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Delete relation" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Dilëwch berthynas" +#~ msgstr[1] "Dilëwch berthynas" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "Cafodd y clustnod ei ddileu." + #, fuzzy #~| msgid "Rename table to" #~ msgid "Replace table prefix:" diff --git a/po/da.po b/po/da.po index 2532054120..1cf87fb71c 100644 --- a/po/da.po +++ b/po/da.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-09-16 14:31+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Danish " -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1009,160 +1013,160 @@ msgstr "" "Er du sikker på du ønsker at ændre sorteringsrækkefølgen og konvertere " "dataene?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Gem & luk" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Nulstil" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Nulstil alle" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Ingen værdi i formularen!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Vælg mindst én!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Angiv venligst et gyldigt nummer!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Angiv venligst en gyldig længde!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Tilføj indeks" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Redigér indeks" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Tilføj %s kolonne(r) til indeks" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Opret indeks med en enkelt kolonne" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Opret sammensat indeks" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Sammensat af:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Tilføj venligst kolonne(r) til indekset." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Du skal tilføje mindst en kolonne." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Forhåndsvis SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Simulér forespørgsel" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Rækker som matcher:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL-forespørgsel:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Y-værdier" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Der er intet værtsnavn!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Intet brugernavn!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Adgangskoden er tom!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "De to adgangskoder er ikke ens!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Fjerner valgte brugere" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Luk" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Skabelon oprettet." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Skabelon hentet." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Skabelon blev opdateret." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Skabelon blev slettet." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Andet" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "," -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Forbindelser / Opgaver" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Konfigurationen for den lokale skærm er inkompatibel!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1174,155 +1178,155 @@ msgstr "" "sandsynligt, at din aktuelle konfiguration ikke vil virke længere. Nulstil " "derfor din konfiguration i menuen Settings." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Effektivitet af forespørgsels-mellemlager" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Forbrug af forespørgsels-mellemlager" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Forbrugt forespørgsels-mellemlager" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "System CPU forbrug" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Systemhukommelse" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "System-swap" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Gennemsnitlig belastning" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Total hukommelse" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Hukommelse i mellemlager" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Hukommelse i buffer" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Ledig hukommelse" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Forbrugt hukommelse" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Totalt sidelager" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Sidelager i mellemlager" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Forbrugt sidelager" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Ledigt sidelager" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Bytes sendt" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Bytes modtaget" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Forbindelser" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Processer" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabel(ler)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Spørgsmål" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Indstillinger" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Snap diagram til gitter" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Tilføj mindst en variabel til serien!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1334,47 +1338,47 @@ msgstr "Tilføj mindst en variabel til serien!" msgid "None" msgstr "Ingen" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Genstart monitor" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Sæt monitor på pause" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Start auto-genopfrisk" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Stop auto-genopfrisk" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log og slow_query_log er aktiveret." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log er aktiveret." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log er aktiveret." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log og general_log er deaktiveret." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output er ikke sat til TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output er sat til TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1385,12 +1389,12 @@ msgstr "" "varer længere end %d sekunder. Det tilrådes at sætte denne long_query_time " "til 0-2 sekunder, afhængig af dit system." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time er sat til %d sekund(er)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1399,30 +1403,30 @@ msgstr "" "standard ved genstart af server:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Sæt log_output til %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Aktivér %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Deaktiver %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Sæt long_query_time til %d sekunder." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1430,57 +1434,57 @@ msgstr "" "Du har ikke superbrugerrettigheder til at ændre disse variable. Log venligst " "ind som root eller kontakt din database administrator." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Ændre indstillinger" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Aktuelle indstillinger" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Diagramtitel" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Differentiel" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Divideret med %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Enhed" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Fra slow log" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Fra generel log" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "Databasenavnet er ukendt for denne forespørgsel i serverens logge." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Analyserer logge" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Analyserer & indlæser logs. Dette kan vare nogen tid." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Annullér forespørgsel" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1490,7 +1494,7 @@ msgstr "" "sammen. Dog kun SQL tekst sammenlignes, så de andre attributter af " "forespørgsler som starttid kan være forskellige." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1500,31 +1504,31 @@ msgstr "" "forespørgsler ind i den samme tabel også grupperet sammen unden hensyn til " "indsatte data." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "Logdata er indlæst. Forespørgsler udført i dette tidsinterval:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Gå til logtabellen" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Fandt ingen data" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "Loggen er analyseret, men ingen data fundet i dette tidsinterval." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analyserer…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Forklar output" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1532,7 +1536,7 @@ msgstr "Forklar output" msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1542,58 +1546,58 @@ msgstr "Status" msgid "Time" msgstr "Tid" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Samlet tid:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Resultat af profilering" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabel" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Diagram" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Indstillinger for filtre på logtabel" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filtrér" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filtrer forespørgsler efter ord/regex:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Grupper forespørgsler, og ignorer variabeldata i WHERE klausuler" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Sum af grupperede rækker:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Total:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Indlæser logs" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Skærmopfriskning fejlede" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1604,28 +1608,28 @@ msgstr "" "Genindlæsning af siden og genindtastning af dine legitimationsoplysninger " "burde hjælpe." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Genindlæs side" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Berørte rækker:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Kunne ikke fortolke konfigurationsfilen. Det ser ikke ud til at være gyldig " "JSON-kode." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Kunne ikke bygge diagramgitter med den importerede konfiguration. Nulstiller " "til standard konfiguration…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1634,65 +1638,65 @@ msgstr "" msgid "Import" msgstr "Importér" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Importér overvågningskonfiguration" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Vælg venligst filen du vil importere." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Der er ingen filer tilgængelige på serveren til import!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Analyser forespørgsel" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Rådgivningssystem" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Mulige ydelsesmæssige problemer" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Problem" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Anbefaling" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Regeldetaljer" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Begrundelse" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Brugt variabel/formel" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Test" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Formatterer SQL …" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Forkerte parametre!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1704,60 +1708,60 @@ msgstr "Forkerte parametre!" msgid "Cancel" msgstr "Annuller" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Siderelaterede indstillinger" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Anvend" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Indlæser…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Forespørgsel afbrudt!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "Udfører forespørgsel" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "Forespørgsel mislykkedes!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Fejl i udførsel af forespørgsel" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Fejlkode: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Fejltekst: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Ingen databaser valgt." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Sletter kolonne" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Tilføj primær nøgle" -#: js/messages.php:367 +#: js/messages.php:369 #: 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,57 +1771,57 @@ msgstr "Tilføj primær nøgle" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Klik for at forkaste denne notifikation" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Omdøber databaser" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Kopierer database til" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Ændrer tegnsæt" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Slå fremmednøgle-checks til" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Kunne få reelt rækkeantal." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Søger" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Slet søgeresultater" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Vis søgeresultater" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Viser" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Sletter" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Ifølge definitionen på en stored function, skal denne indeholde et RETURN-" "udtryk!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1833,45 +1837,45 @@ msgstr "" msgid "Export" msgstr "Eksportér" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET-redigeringsværktøj" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Værdier for kolonnen %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Værdier for en ny kolonne" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Indtast hver værdi i et separat felt." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Tilføj %d værdi(er)" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Note: Hvis filen indeholder flere tabeller, vil de blive kombineret til én." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Skjul forespørgeselsboks" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Vis forespørgselsbox" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1881,7 +1885,7 @@ msgstr "Vis forespørgselsbox" msgid "Edit" msgstr "Ret" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1892,41 +1896,41 @@ msgstr "Ret" msgid "Delete" msgstr "Slet" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d er ikke et gyldigt rækkenummer." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Bladre i fremmedværdier" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Ingen automatisk gemt forespørgsel" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Variabel %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Vælg" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Kolonnevælger" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Søg i denne liste" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1935,15 +1939,15 @@ msgstr "" "Ingen kolonner i centerlisten. Vær sikker på at centerlisten for databasen " "%s har kolonner der ikke er i aktuel tabel." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Se mere" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Er du sikker?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1951,51 +1955,51 @@ msgstr "" "Denne handling kan ændre nogle af kolonnedefinitionerne.
Er du sikker " "på at du vil fortsætte?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Fortsæt" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Tilføj primær nøgle" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Primær nøgle er blevet tilføjet." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Tager dig til næste trin…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Slut på trinnet" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Andet trin af normaliseringen (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Færdig" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Bekræft delvise afhængigheder" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "De valgte, delvise afhænigheder er som følger:" -#: js/messages.php:444 +#: js/messages.php:446 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,19 +2007,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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Der blev ikke valgt delvise afhængigheder!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Skjul listen med delvise afhængigheder" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2023,41 +2027,41 @@ msgstr "" "Hold vejret! Der kan gå nogle sekunder afhængig af datastørrelsen og " "antallet af kolonner i tabellen." -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Trin" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "De følgende handlinger vil blive udført:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP kolonnerne %s fra tabellen %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Opret følgende tabel" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Tredje trin af normaliseringen (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Bekræft transitive afhængigheder" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "De valgte afhængigheder er:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Der er ikke valgt afhængigheder!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2067,125 +2071,125 @@ msgstr "Der er ikke valgt afhængigheder!" msgid "Save" msgstr "Gem" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Skjul søgekriterie" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Vis søgekriterie" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Intervalsøgning" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Kolonnemaksimum:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Kolonneminimum:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Minimumsværdi:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Maksimumsværdi:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Skjul kriteriet for søg og erstat" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Vis kriteriet for søg og erstat" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Hvert punkt repræsenterer en datarække." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Når der holdes over et punkt vises dets etiket." -#: js/messages.php:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Vælg to kolonner" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Vælg to forskellige kolonner" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Datapunkt-indhold" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Kopi" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Punkt" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Linjestreng" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Polygon" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "Indre ring" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Ydre ring" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Vil du kopiere krypteringsnøgle?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Krypteringsnøgle" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2193,24 +2197,24 @@ msgstr "" "Indikerer at du har lavet ændringer ved denne side, du vil blive spurgt om " "godkendelse før ændringerne frafalder" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Vælg refereret nøgle" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Vælg fremmednøgle" -#: js/messages.php:533 +#: js/messages.php:535 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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?" @@ -2218,76 +2222,76 @@ msgstr "" "Du har ikke gemt ændringerne i layoutet. De vil bleve slettet hvis du ikke " "gemmer dem. Vil du fortsætte?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Sidenavn" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Gem side" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Åbn side" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Slet side" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Unavngivet" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Vælg venligst en side for at fortsætte" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Angiv venligst et gyldigt sidenavn" -#: js/messages.php:548 +#: js/messages.php:550 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:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Sletning af siden er gennemført" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Eksportér relationsskema" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Rettelserne er gemt" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Tilføj mulighed for kolonnen \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d objekt(er) oprettet." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Send" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Tryk på ESC for at annullere redigeringen." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2295,15 +2299,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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Træk for at ændre rækkefølge." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Klik for at sortere resultater efter denne kolonne." -#: js/messages.php:567 +#: js/messages.php:569 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 " @@ -2313,26 +2317,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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Klik for at markere/afmarkere." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Dobbeltklik for at kopiere kolonnenavn." -#: js/messages.php:574 +#: js/messages.php:576 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Vis alle" -#: js/messages.php:578 +#: js/messages.php:580 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2341,11 +2345,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:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2353,103 +2357,103 @@ msgstr "" "Sikker på du vil se alle rækkerne? For store tabeller kan dette få browseren " "til at gå ned." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Oprindelige længde" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "annullér" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Afbrudt" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Gennemført" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Importstatus" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Drop filerne her" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Vælg først en database" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Udskriv" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Gå til linket:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Kopiér kolonnenavn." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Generer adgangskode" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Generer" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Mere" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Vis panel" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Skjul panel" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Vis skjulte elementer i navigationstræet." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Link med hovedpanel" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Fjern link fra hovedpanel" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2459,42 +2463,42 @@ msgstr "" "opgradere. Den nyeste version er %s, udgivet den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", seneste stabile version:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "up-to-date" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Opret view" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Send fejlrapporter" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Indsend fejlrapport" -#: js/messages.php:656 +#: js/messages.php:658 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:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Tilpas indstillinger for rapportering" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Vis detaljer for rapport" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2502,7 +2506,7 @@ msgstr "" "Din eksport er ikke komplet, da der er en lav tidsgrænse for afvikling på " "PHP-niveaut!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2511,60 +2515,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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Der er registreret fejl på serveren!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Gennemse venligst bunden af denne side." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Ignorér alle" -#: js/messages.php:688 +#: js/messages.php:690 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:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Udfør denne forespørgsel påny?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Er du sikker på at du vil slette dette bogmærke?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "En fejl opstod mens hentede SQL debug info." -#: js/messages.php:704 +#: js/messages.php:706 #, 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:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "%s argument(er) sendt" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Tabel kommentarer" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Skjul argumenterne" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Tidsforbrug:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2573,355 +2577,355 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopier database til" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Tilføj tabelpræfiks:" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Erstat tabel præfiks" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopier tabel med præfiks" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Forrige" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Næste" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "I dag" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "januar" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "februar" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "marts" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "april" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "maj" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "juni" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "juli" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "august" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "september" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "oktober" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "november" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "dec" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "søndag" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "mandag" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "tirsdag" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "onsdag" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "torsdag" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "fredag" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "lørdag" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "søn" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "man" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "tir" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "ons" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "fre" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "lør" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "sø" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "ma" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "ti" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "on" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "fr" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "lø" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "ingen" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Time" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minut" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Sekund" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Dette felt er påkrævet" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Ret venligst dette felt" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Angiv en gyldig e-mailadresse" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Angiv en gyldig URL-adresse" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Indtast en gyldig dato" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Indtast en gyldig dato (ISO)" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Angiv et gyldigt tal" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Indtast et gyldigt kreditkortnummer" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Angiv kun tal" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Angiv samme værdi igen" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Angiv venligst ikke mere end {0} tegn" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Angiv mindst {0} tegn" -#: js/messages.php:915 +#: js/messages.php:917 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:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Indtast venligst en værdi mellem {0} og {1}" -#: js/messages.php:925 +#: js/messages.php:927 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:930 +#: js/messages.php:932 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:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Angiv venligst en gyldig dato eller tid" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Angiv venligst et gyldigt HEX-tal" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Fejl" @@ -2973,33 +2977,33 @@ msgstr "Uventet tegn på linje %s." msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "Uventet tegn på linje %1$s. Forventede tabulering, men fandt \"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Eksisterende konfigurationsfil (%s) kan ikke læses." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Forkerte rettigheder på konfigurationsfil. Må ikke være skrivbar af alle!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Skriftstørrelse" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Fold sammen" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Fold ud" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Genforespørg" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3019,76 +3023,59 @@ msgstr "Database" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "I alt %d bogmærke" -msgstr[1] "I alt %d bogmærker" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "privat" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "delt" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s og %3$s bogmærker blev inkluderet" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Ingen bogmærker" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Under nuværende session" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Forklar" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profilering" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Bogmærke" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Forespørgslen mislykkedes" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Tid på forespørgsel" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "SQL Query-konsol" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Konsol" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Ryd" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Historik" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3106,125 +3093,125 @@ msgstr "Historik" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Indstillinger" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Bogmærker" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Ret fejl i SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Tast Ctrl+Enter for at udføre forespørgsel" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Tast Enter for at udføre forespørgsel" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "Stigende" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "Faldende" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Rækkefølge:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Antal" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Rækkefølge for udførelse" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Tidsforbrug" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Rækkefølge:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Gruppér SQL-forespørgsler" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Opløs gruppering af SQL-forespørgsler" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Vis sporing" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Skjul sporing" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Antal:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Opdater" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Tilføj" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Tilføj bogmærke" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Etikette" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Måldatabase" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Del dette bogmærke" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Angiv standardværdi" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Udvid altid forespørgselsbeskeder" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Vis forespørgselshistorik ved start" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Vis nuværende browsingforespørgsel" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3232,17 +3219,17 @@ msgstr "" "Udfør forespørgsler med Enter og indsæt ny linje med Skift + Enter. For at " "gøre dette permanent, så se indstillingerne." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Skift til det mørke tema" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Kunne ikke indlæse konfigurationsfilen!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3250,19 +3237,19 @@ msgstr "" "Serveren svarer ikke (eller den lokale servers socket er ikke korrekt " "konfigureret)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Serveren svarer ikke." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Tjek venligst privilegier for mappen som indeholder databasen." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Detaljer…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Forbindelse for kontrolbruger som defineret i din konfiguration slog fejl." @@ -3574,7 +3561,7 @@ msgstr "Kan være anslået. Se [doc@faq3-11] FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Din SQL-forespørgsel blev udført korrekt." @@ -3694,16 +3681,16 @@ msgstr "Filupload stoppet af udvidelse." msgid "Unknown error in file upload." msgstr "Ukendt fejl i filupload." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Fejl ved flytning af den uploadede fil, se [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Fejl under flytning af uploaded fil." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Kan ikke læse uploaded fil." @@ -3767,8 +3754,8 @@ msgid "Keyname" msgstr "Nøglenavn" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3818,13 +3805,13 @@ msgstr "Indeks %s er blevet slettet." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Slet" @@ -3926,7 +3913,7 @@ msgstr "Privilegier" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operationer" @@ -3941,7 +3928,7 @@ msgstr "Sporing" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4319,11 +4306,11 @@ msgstr "Fejl ved dannelse af fremmednøgle på %1$s (tjek datatyper)" msgid "No valid image path for theme %s found!" msgstr "Ingen gyldig billedsti for tema %s fundet!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Intet billede til rådighed." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "vælg dette" @@ -4641,21 +4628,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Spatial" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Maksimum størrelse: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Statisk analyse:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "Der blev fundet %d fejl under analysen." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4666,36 +4653,36 @@ msgstr "Der blev fundet %d fejl under analysen." msgid "MySQL said: " msgstr "MySQL returnerede: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Forklar SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Spring over Forklar SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "Forklaring af analyse ved %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Uden PHP-kode" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Send forespørgsel" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Fremstil PHP-kode" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Redigér indlejret" @@ -4785,6 +4772,10 @@ msgstr "pr. time" msgid "per day" msgstr "per dag" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "delt" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Søg:" @@ -4892,11 +4883,11 @@ msgstr "Tilføj ny kolonne" msgid "Attributes" msgstr "Attributter" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Kunne ikke indlæse konfigurationsfilen!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4904,32 +4895,32 @@ msgstr "" "Dette betyder ofte, at der er en eller flere syntaksmæssige fejl i den, " "kontroller venligst for fejlen(e) vist herunder." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Kunne ikke indlæse standardkonfiguration fra: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Server indekset %s er ugyldigt" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Ugyldigt værtsnavn for server %1$s. Gennemgå venligst din konfiguration." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Ugyldig autorisationsmetode sat i konfiguration:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4940,24 +4931,24 @@ msgstr "" "konfigurationsindstilling for [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/" "em]. phpMyAdmin anvender i øjeblikket databaseserverens standardtidszone." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du burde opdatere til %s %s eller senere." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Fejl: Token uoverensstemmelse" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "forsøg på overskrivning af GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "muligt sikkerhedshul" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "numerisk tast opfanget" @@ -5701,13 +5692,13 @@ msgstr "Indsæt feltnavne i første række" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Kolonner indrammet med" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Kolonner escaped med" @@ -5725,12 +5716,12 @@ msgstr "Fjern CRLF-tegn i kolonner" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Kolonner afsluttes med" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Linjer afsluttet med" @@ -6323,7 +6314,7 @@ msgid "Column names in first row" msgstr "Indsæt feltnavne i første række" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Importér ikke tomme rækker" @@ -7916,7 +7907,7 @@ msgid "Table %s has been emptied." msgstr "Tabel %s blev tømt." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Visning %s er blevet slettet." @@ -8051,8 +8042,8 @@ msgid "No data to display" msgstr "Ingen data til visning" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8090,53 +8081,53 @@ msgstr[1] "Navnene '%s' er nøgleord, der er reserveret af MySQL." msgid "No column selected." msgstr "Der er ikke valgt kolonner." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Flytning af kolonnen er blevet fuldført." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Forespørgselsfejl" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Ret" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spatial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Fuldtekst" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Distinkte værdier" @@ -8146,7 +8137,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s-udvidelsen mangler. Tjek din PHP-konfiguration." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ingen ændring" @@ -8964,57 +8955,57 @@ msgstr "MySQL returnerede ingen data (fx ingen rækker)." msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK opstod.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Rediger struktur ved at følge linket \"Struktur\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Gå til databasen: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Rediger indstillinger for %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Gå til tabellen: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Strukturen af %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Gå til view: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9062,48 +9053,48 @@ msgstr "Eller" msgid "web server upload directory:" msgstr "webserver upload-mappe:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Rediger/Indsæt" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Fortsæt indsættelse med %s rækker" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "og derefter" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Indsæt som ny række" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Indsæt som ny række og ignorer fejl" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Vis indsættelsesforespørgsel" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Tilbage til foregående side" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Indsæt endnu en ny række" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Gå tilbage til denne side" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Rediger næste række" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9113,7 +9104,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9125,11 +9116,11 @@ msgstr "" msgid "Value" msgstr "Værdi" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Viser SQL-forespørgsel" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Indsatte række id: %1$d" @@ -10018,7 +10009,7 @@ msgstr "Reparer tabel" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Slet data eller tabel" @@ -10031,32 +10022,32 @@ msgid "Delete the table (DROP)" msgstr "Slet tabellen (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analyser" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Tjek" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimer" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Genopbyg" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Reparer" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10084,37 +10075,37 @@ msgstr "Fjern partitionering" msgid "Check referential integrity:" msgstr "Tjek reference-integriteten:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Kan ikke flytte tabellen til den samme!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Kan ikke kopiere tabellen til den samme!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s er flyttet til %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabellen %s er nu kopieret til: %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Intet tabelnavn!" @@ -10294,7 +10285,7 @@ msgstr "Database eksportindstillinger" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Data dump for tabellen" @@ -10318,21 +10309,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struktur-dump for tabellen" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktur for visning" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Stand-in-struktur for visning" @@ -10422,7 +10413,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Data:" @@ -10531,7 +10522,7 @@ msgid "Data creation options" msgstr "Indstillinger for oprettelse af data" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Trunkér tabel forud for indsættelse" @@ -10616,7 +10607,7 @@ msgstr "Det ser ud til at din database bruger funktioner;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "alias-eksport fungerer muligvis ikke pålideligt i alle tilfælde." @@ -10662,53 +10653,53 @@ msgstr "i brug" msgid "It appears your database uses views;" msgstr "Det ser ud til at din database bruger views;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Begrænsninger for dumpede tabeller" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Begrænsninger for tabel" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Begrænsninger for dumpede tabeller" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indeks for tabel" # zero = null? -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "Brug ikke AUTO_INCREMENT for slettede tabeller" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "Tilføj AUTO_INCREMENT i tabel" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE (MIME-typer for tabellen)" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE (Relationer for tabellen)" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Det ser ud til at din tabel bruger triggere;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Fejl ved læsning af data:" @@ -10742,7 +10733,7 @@ msgstr "" "DUPLICATE KEY UPDATE)" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10765,15 +10756,15 @@ msgstr "" msgid "Column names: " msgstr "Kolonnenavne: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Ugyldigt parameter for CSV-import: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10782,18 +10773,18 @@ msgstr "" "Invalid kolonne (%s) angivet! Sørg for, at kolonnenavneer stavet korrekt, " "adskilt med komma og ikke i citationstegn." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Ugyldigt format for CSV-input på linie %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Ugyldigt kolonneantal i CSV-input på linie %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Denne plugin understøtter ikke komprimeret import!" @@ -10801,22 +10792,22 @@ msgstr "Denne plugin understøtter ikke komprimeret import!" msgid "MediaWiki Table" msgstr "MediaWiki tabel" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Ugyldigt format for mediawiki-input på linje:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "Importér procenter som rigtige decimaltal (ex. 12.00% to .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Import valutaer (ex. $5.00 to 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10824,7 +10815,7 @@ msgstr "" "Den angivne XML-fil var enten forkert udformet eller ukomplet. Ret fejlen og " "prøv igen." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Kunne ikke fortolke OpenDocument-regnearket!" @@ -10832,12 +10823,12 @@ msgstr "Kunne ikke fortolke OpenDocument-regnearket!" msgid "ESRI Shape File" msgstr "ESRI formfil" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Der var en fejl i importen af ESRI-formfilen: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10845,12 +10836,12 @@ msgstr "" "Du prøvede på at importere en invalid fil eller den importerede fil " "indeholder invalide data!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Spatial Extension understøtter ikke ESRI type \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Den importerede fil indeholder ingen data!" @@ -10862,7 +10853,7 @@ msgstr "SQL-kompatibilitetsmodus:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Brug ikke AUTO_INCREMENT for nulværdier" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13940,15 +13931,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -13963,17 +13950,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -13995,23 +13983,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Antallet af tabeller der er åbne." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Antallet af tabeller der er åbne." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14044,17 +14032,17 @@ msgstr "Hændelse %1$s er oprettet." msgid "Variable name was expected." msgstr "Skabelon for tabelnavn" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "at beginning of table" msgid "Unexpected beginning of statement." msgstr "i begyndelsen af tabellen" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14077,19 +14065,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14789,7 +14777,7 @@ msgstr "Vis dump (skema) over tabel" msgid "Invalid table name" msgstr "Ugyldigt tabelnavn" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Række: %1$s, kolonne: %2$s, fejl: %3$s" @@ -15756,7 +15744,7 @@ msgid "at beginning of table" msgstr "i begyndelsen af tabellen" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15805,7 +15793,7 @@ msgstr "partitioneret" msgid "Edit partitioning" msgstr "Fjern partitionering" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Rediger view" @@ -15924,11 +15912,11 @@ msgstr "VIEW navn" msgid "Column names" msgstr "Kolonnenavne" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Omdøb view til" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Slet visningen (DROP)" @@ -17211,6 +17199,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert er sat til 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "I alt %d bogmærke" +#~ msgstr[1] "I alt %d bogmærker" + +#~ msgid "private" +#~ msgstr "privat" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s og %3$s bogmærker blev inkluderet" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/de.po b/po/de.po index dc4efd1493..289ec40612 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: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-01-18 18:42+0000\n" "Last-Translator: BlackyPanther \n" "Language-Team: German " -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1010,160 +1015,160 @@ msgstr "" "Sind Sie sich sicher, dass Sie alle Spaltenkollationen ändern und die Daten " "konvertieren wollen?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Speichern & Schließen" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Zurücksetzen" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Alles zurücksetzen" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Das Formular ist leer!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Wählen Sie mindestens eine der Optionen!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Bitte geben Sie eine gültige Nummer ein!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Bitte geben Sie eine gültige Länge ein!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Index hinzufügen" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Index bearbeiten" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "%s Spalte(n) zum Index hinzufügen" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Erzeuge einspaltigen Index" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Erzeuge zusammengesetzten Index" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Zusammenfügen mit:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Bitte wählen Sie %s Spalte(n) für den Index." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Sie müssen mindestens eine Spalte hinzufügen." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "SQL Vorschau" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Abfrage simulieren" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Gefundene Zeilen:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL-Befehl:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Y-Werte" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Es wurde kein Host angegeben!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Es wurde kein Benutzername eingegeben!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Es wurde kein Passwort angegeben!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Die eingegebenen Passwörter sind nicht identisch!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Die ausgewählten Benutzer werden gelöscht" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Schließen" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Vorlage wurde erstellt." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Vorlage wurde geladen." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Vorlage wurde geändert." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Vorlage wurde gelöscht." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Weitere" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "," -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Verbindungen / Prozesse" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Die lokale Bildschirmkonfiguration ist nicht kompatibel!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1176,155 +1181,155 @@ msgstr "" "Bitte setzen Sie die Konfiguration im Einstellungen Menü auf die " "Standardwerte zurück." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Abfragen-Zwischenspeicher Effizienz" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Abfragen-Zwischenspeichernutzung" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Abfragen-Zwischenspeicher benutzt" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "CPU-Auslastung" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Arbeitsspeicher" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Auslagerungsspeicher" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Durchschnittliche Auslastung" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Gesamter Speicher" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Zwischenspeicher" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Gepufferter Speicher" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Freier Speicher" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Verwendeter Speicher" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Gesamter Swap" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Zwischengespeicherter Swap" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Verwendeter Swap" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Freier Swap" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Bytes gesendet" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Bytes empfangen" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Verbindungen" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Prozesse" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d Tabelle(n)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Anfragen" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Netzwerkverkehr" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Einstellungen" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Skala dem Raster hinzufügen" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Bitte fügen Sie mindestens eine Variable der Serie hinzu!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1336,47 +1341,47 @@ msgstr "Bitte fügen Sie mindestens eine Variable der Serie hinzu!" msgid "None" msgstr "keine" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Überwachung fortsetzen" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Überwachung pausieren" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Starte automatisches Aktualisieren" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Halte automatisches Aktualisieren an" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log und slow_query_log sind aktiviert." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log ist aktiviert." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log ist aktiviert." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log und general_log sind deaktiviert." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output ist nicht auf TABLE eingestellt." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output ist auf TABLE eingestellt." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1387,12 +1392,12 @@ msgstr "" "die länger als %d ausgeführt wurden. Es ist ratsam, den Wert long_query_time " "auf 0-2 Sekunden einzustellen, abhängig vom System." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time ist auf %d Sekunde(n) eingestellt." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1401,30 +1406,30 @@ msgstr "" "Neustart auf ihre Ursprungswerte zurückgesetzt:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Setze log_output auf %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Aktiviere %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Deaktiviere %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Setze long_query_time auf %d Sekunden." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1432,59 +1437,59 @@ msgstr "" "Sie können diese Variablen nicht ändern. Bitte melden Sie sich mit einem " "Root-Benutzer an, oder kontaktieren Sie Ihren Datenbank-Administrator." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Einstellungen ändern" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Aktuelle Einstellungen" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Titel des Reports" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Unterschied" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Geteilt durch %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Einheit" # Eigenname der MySQL-Funktion -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Vom slow Log" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Vom allgemeinen Log" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" "Der Datenbankname ist für diese Abfrage in den Server-Logs nicht bekannt." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Analysiere Protokolle" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Analysiere und lade Protokolle. Dies kann eine Weile dauern." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Abfrage abbrechen" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1494,7 +1499,7 @@ msgstr "" "wurden. Jedoch wird nur der SQL-Text verglichen, daher kann die Angabe von " "anderen Werten der Abfrage, wie die Startzeit, unterschiedlich sein." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1504,34 +1509,34 @@ msgstr "" "Befehle in die gleiche Tabelle zusammengefasst, unabhängig von den " "eingefügten Daten." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Protokoll-Daten geladen. Innerhalb dieses Zeitaums ausgeführte Abfragen:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Springe zur Protokoll-Tabelle" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Keine Daten gefunden" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Das Protokoll wurde analysiert, es wurden jedoch keine Daten für den " "angegebenen Zeitraum gefunden." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analysieren…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Ausgabe erklären" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1539,7 +1544,7 @@ msgstr "Ausgabe erklären" msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1549,58 +1554,58 @@ msgstr "Status" msgid "Time" msgstr "Zeit" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Gesamt Zeit:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Profiler Ergebnisse" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabelle" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Diagramm" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Filteroptionen für Protokoll-Tabelle" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filter" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Abfragen durch Wort/Regulären Ausdruck filtern:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Gruppiere die Abfragen und ignoriere Werte in WHERE-Abfragen" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Anzahl der gruppierten Datensätze:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Insgesamt:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Lade Protokolle" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Aktualisierung der Überwachung fehlgeschlagen" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1610,28 +1615,28 @@ msgstr "" "Das ist vermutlich passiert, weil Ihre Sitzung abgelaufen ist. Es sollte " "helfen, wenn Sie die Seite aktualisieren und sich erneut anmelden." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Neu laden" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Betroffene Zeilen:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Das Einlesen der Konfigurationsdatei ist fehlgeschlagen. Es scheint sich " "nicht um eine gültige JSON-Kodierung zu handeln." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Aufbau der Diagramme mit der importierten Konfiguration ist fehlgeschlagen. " "Setze auf Standardeinstellungen zurück…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1640,63 +1645,63 @@ msgstr "" msgid "Import" msgstr "Importieren" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Konfiguration des Importmonitors" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Bitte wählen Sie die Datei, die Sie importieren möchten." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Keine Dateien zum Importieren auf dem Server verfügbar!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Anfrage analysieren" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Ratgebersystem" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Mögliche Performance-Probleme" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Problem" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Empfehlung" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Regel-Details" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Ausrichtung" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Benutzte Variable/Formel" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Test" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "SQL wird formatiert .…" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "Keine Parameter gefunden!" -#: js/messages.php:350 +#: js/messages.php:352 #: 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,60 +1713,60 @@ msgstr "Keine Parameter gefunden!" msgid "Cancel" msgstr "Abbrechen" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Seitenbezogene Einstellungen" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Übernehmen" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Laden…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Anfrage abgebrochen!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "Bearbeite Anfrage" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "Anfrage fehlgeschlagen!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Fehler beim Bearbeiten der Anfrage" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Fehlercode: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Fehlertext: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Es wurden keine Datenbanken ausgewählt." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Spalte wird gelöscht" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Primärschlüssel wird hinzugefügt" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1771,57 +1776,57 @@ msgstr "Primärschlüssel wird hinzugefügt" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Hier klicken um diese Meldung zu schließen" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Datenbanken werden umbenannt" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Datenbank wird kopiert" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Zeichensatz wird geändert" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Fremdschlüsselüberprüfung aktivieren" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Das Abrufen der Anzahl der Zeilen ist fehlgeschlagen." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Suche" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Suchergebnisse ausblenden" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Suchergebnisse anzeigen" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Durchsehen" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Löschen" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Die Definition einer gespeicherten Prozedur muss ein RETURN-Statement " "beinhalten!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1837,46 +1842,46 @@ msgstr "" msgid "Export" msgstr "Exportieren" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET Editor" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Werte für die Spalte %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Werte für eine neue Spalte" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Geben Sie jeden Wert in einem eigenen Feld ein." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "%d Wert(e) hinzufügen" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Hinweis: Wenn die Datei mehrere Tabellen enthält, werden diese in einer " "einzigen Tabelle zusammengefasst." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "SQL-Querybox ausblenden" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "SQL-Querybox anzeigen" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1886,7 +1891,7 @@ msgstr "SQL-Querybox anzeigen" msgid "Edit" msgstr "Bearbeiten" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1897,41 +1902,41 @@ msgstr "Bearbeiten" msgid "Delete" msgstr "Löschen" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d ist keine gültige Zeilennummer." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Fremdschlüsselwerte ansehen" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Keine automatisch gespeicherte Abfrage" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Variable %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Auswählen" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Spaltenauswahl" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Diese Liste durchsuchen" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1941,15 +1946,15 @@ msgstr "" "Spalten-Liste der Datenbank %s Spalten hat, die nicht in der aktuellen " "Tabelle vorhanden sind." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Mehr anzeigen" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Sind sie sicher?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1957,52 +1962,52 @@ msgstr "" "Diese Aktion kann einige Spalten-Definitionen ändern.
Sind Sie sicher, " "dass Sie fortfahren möchten?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Weiter" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Primärschlüssel hinzufügen" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Primärschlüssel wurde erzeugt." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Führt sie zum nächsten Schritt…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Schritt-Ende" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Zweiter Schritt der Normalisierung (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Fertig" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Teilweise Abhängigkeiten bestätigen" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Ausgewählte teilweise Abhängigkeiten sind wie folgt:" -#: js/messages.php:444 +#: js/messages.php:446 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,21 +2015,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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Es wurden keine teilweisen Abhängigkeiten ausgewählt!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Teilweise Abhängigkeiten Liste ausblenden" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2032,41 +2037,41 @@ msgstr "" "Bleib sitzen! Es dauert einige Sekunden, abhängig von Datengröße und " "Spaltenanzahl der Tabelle." -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Schritt" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Die folgenden Aktionen werden ausgeführt:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "Entfernen der Spalten %s aus der Tabelle %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Folgende Tabelle erzeugen" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Dritter Schritt der Normalisierung (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Transitive Abhängigkeiten bestätigen" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Ausgewählte Abhängigkeiten sind wie folgt:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Es wurden keine Anhängigkeiten ausgewählt!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2076,130 +2081,130 @@ msgstr "Es wurden keine Anhängigkeiten ausgewählt!" msgid "Save" msgstr "Speichern" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Suchkriterien ausblenden" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Suchkriterien anzeigen" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Bereichssuche" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Spaltenmaximum:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Spaltenminimum:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Minimalwert:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Maximalwert:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Kriterien für Suchen und Ersetzen ausblenden" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Suchkriterien anzeigen und ersetzen" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Jeder Punkt stellt eine Datenreihe dar." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Das Überfliegen eines Punktes zeigt seine Bezeichnung." -#: js/messages.php:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Zwei Spalten auswählen" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "2 unterschiedliche Spalten auswählen" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Datenpunkt-Inhalt" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignorieren" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Kopieren" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Punkt" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "LineString" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Polygon" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometrie" # Ist hiermit der Inkreis gemeint? http://de.wikipedia.org/wiki/Inkreis # # Ja -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "Inkreis" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Außenkreis" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Soll der Verschlüsselungs-Schlüssel importiert werden?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Verschlüsselungs-Schlüssel" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2207,24 +2212,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:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Wählen Sie den referenzierten Schlüssel" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Wähle Fremdschlüssel" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Bitte den PRIMARY KEY oder einen UNIQUE KEY wählen!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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?" @@ -2232,76 +2237,76 @@ msgstr "" "Sie haben die Änderungen im Layout nicht gespeichert. Sie gehen verloren " "wenn Sie nicht speichern. Möchten Sie fortfahren?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Seitenname" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Seite speichern" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Öffne Seite" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Seite löschen" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Unbenannt" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Bitte wählen Sie eine Seite um fortzufahren" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Bitte geben Sie einen gültigen Seitennamen ein" -#: js/messages.php:548 +#: js/messages.php:550 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:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Seite wurde erfolgreich gelöscht" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Beziehungsschema exportieren" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Änderungen gespeichert" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Option hinzufügen zu Spalte \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d Objekt(e) erstellt." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Abschicken" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Drücken Sie ESC, um das Bearbeiten abzubrechen." -#: js/messages.php:561 +#: js/messages.php:563 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 +2314,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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Zur Umsortierung ziehen." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Klicken um die Ergebnisse nach dieser Spalte zu sortieren." -#: js/messages.php:567 +#: js/messages.php:569 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,28 +2332,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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Klicken zum Aus- bzw. Abwählen." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Doppelklicken, um den Spaltennamen zu kopieren." -#: js/messages.php:574 +#: js/messages.php:576 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Alles anzeigen" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2358,13 +2363,13 @@ msgstr "" "Kopieren und Löschen von Links können nach dem Speichern eventuell nicht " "funktionieren." -#: js/messages.php:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2372,105 +2377,105 @@ msgstr "" "Sollen wirklich alle Datensätze angezeigt werden? Bei einer großen Tabelle " "könnte dies den Browser zum Absturz bringen." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Ursprüngliche Länge" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "abbrechen" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Abgebrochen" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Erfolg" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Importstatus" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Dateien hier ablegen" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Zuerst Datenbank auswählen" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Drucken" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Gehe zur Verknüpfung:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Spaltennamen kopieren." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Passwort generieren" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Generieren" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Mehr" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Panel anzeigen" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Panel ausblenden" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Zeige versteckte Navigationselemente." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Mit Hauptpanel verknüpfen" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Verknüpfung mit Hauptpanel aufheben" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2480,27 +2485,27 @@ msgstr "" "empfohlen. Die aktuelle Version ist %s, erschienen am %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", aktuelle stabile Version:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "auf dem neuesten Stand" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Erzeuge View" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Fehlerbericht senden" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Fehlerbericht senden" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2508,15 +2513,15 @@ msgstr "" "Es ist ein JavaScript Fehler aufgetreten. Möchten Sie einen Fehlerbericht " "senden?" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Einstellungen für Berichte ändern" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Berichtdetails anzeigen" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2524,7 +2529,7 @@ msgstr "" "Ihr Export ist unvollständig, wegen eines niedrigen Ausführungszeit-Limits " "in PHP!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2534,60 +2539,60 @@ msgstr "" "werden einige der Felder möglicherweise ignoriert, wegen der PHP-" "Konfiguration max_input_vars." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Einige Fehler wurden auf dem Server entdeckt!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Bitte schauen Sie am unteren Ende dieses Fensters." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Alles ignorieren" -#: js/messages.php:688 +#: js/messages.php:690 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:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Diese Abfrage erneut ausführen?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Möchten Sie dieses Lesezeichen wirklich löschen?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "Beim Laden der SQL-Debug-Informationen ist ein Fehler aufgetreten." -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s Abfragen %s mal in %s Sekunden ausgeführt." -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "%s Argument(e) übergeben" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Argumente einblenden" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Argumente ausblenden" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Nötige Zeit:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2603,353 +2608,353 @@ msgstr "" "löschen. In Safari entstehen solche Probleme meistens, wenn das \"Private " "Surfen\" aktiviert ist." -#: js/messages.php:711 +#: js/messages.php:713 msgid "Copy tables to" msgstr "Tabellen kopieren nach" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Tabellen-Präfix hinzufügen:" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Tabellenprefix ersetzen" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Tabelle mit Prefix kopieren" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Vorher" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Nächster" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Heute" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Januar" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Februar" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "März" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "April" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Mai" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Juni" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Juli" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "August" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "September" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Oktober" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "November" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Dezember" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mrz" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Dez" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Sonntag" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Montag" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Dienstag" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Mittwoch" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Donnerstag" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Freitag" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Samstag" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Mo" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Mi" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Stunde" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minute" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Sekunde" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Dieses Feld muss ausgefüllt werden" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Bitte korrigieren Sie dieses Feld" -#: js/messages.php:886 +#: js/messages.php:888 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:889 msgid "Please enter a valid URL" msgstr "Bitte geben Sie eine gültige URL ein" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Bitte geben Sie ein gültiges Datum ein" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Bitte geben Sie ein gültiges Datum (ISO) ein" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Bitte geben Sie eine gültige Zahl ein" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Bitte geben Sie eine gültige Kreditkartennummer ein" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Bitte geben Sie nur Ziffern ein" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Bitte geben Sie denselben Wert nochmal ein" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Bitte nicht mehr als {0} Zeichen eingeben" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Bitte geben Sie mindestens {0} Zeichen ein" -#: js/messages.php:915 +#: js/messages.php:917 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:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Bitte geben Sie einen Wert zwischen {0} und {1} ein" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "Bitte geben Sie einen Wert kleiner gleich {0} ein" -#: js/messages.php:930 +#: js/messages.php:932 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:936 +#: js/messages.php:938 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:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Bitte geben Sie einen gültige hexadezimale Eingabe ein" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Fehler" @@ -3002,34 +3007,34 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" "Unerwartetes Zeichen in Zeile %1$s. Tab erwartet, aber \"%2$s\" gefunden." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Bestehende Konfigurationsdatei (%s) kann nicht gelesen werden." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Falsche Zugriffsrechte auf die Konfigurationsdatei. Schreibzugriff sollte " "nicht für alle möglich sein!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Schriftgröße" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Zuklappen" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Aufklappen" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Erneut abfragen" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3049,76 +3054,59 @@ msgstr "Datenbank" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Insgesamt %d Lesezeichen" -msgstr[1] "Insgesamt %d Lesezeichen" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "privat" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "freigegeben" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s und %3$s Lesezeichen enthalten" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Keine Lesezeichen" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Während der aktuellen Sitzung" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Erklären" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Messen" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Lesezeichen" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Abfrage fehlgeschlagen" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Abfragezeit" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "SQL-Abfragekonsole" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Konsole" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Werte löschen" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Verlaufsprotokoll" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3136,125 +3124,125 @@ msgstr "Verlaufsprotokoll" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Optionen" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Lesezeichen" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "SQL Debugger" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Drücken Sie Strg+Enter, um die Abfrage auszuführen" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Drücken Sie Enter, um die Abfrage auszuführen" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "aufsteigend" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "absteigend" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Reihenfolge:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Zähler" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Ausführungsreihenfolge" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Nötige Zeit" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Sortieren nach:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Abfragen umgruppieren" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Abfragen voneinander lösen" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Nachverfolgung anzeigen" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Nachverfolgung ausblenden" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Anzahl:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Aktualisieren" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Hinzufügen" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Lesezeichen hinzufügen" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Titel" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Ziel-Datenbank" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Dieses Lesezeichen teilen" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Standard festlegen" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Abfragenachrichten immer aufklappen" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Abfrageverlauf beim Start anzeigen" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Aktuelle Abfrage anzeigen" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3262,17 +3250,17 @@ msgstr "" "Abfragen mit Enter ausgeführen und neue Zeilen mit Shift + Enter eingefügen. " "Um dies dauerhaft zu speichern, siehe Einstellungen." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Zum dunklen Motiv wechseln" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Fehler beim Lesen der Konfigurationsdatei!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3280,21 +3268,21 @@ msgstr "" "Der Server antwortet nicht (evtl. ist der Socket des lokalen MySQL-Servers " "nicht korrekt konfiguriert)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Der Server antwortet nicht." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 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:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Details…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Verbindung für den controluser, wie er in Ihrer Konfiguration angegeben ist, " @@ -3609,7 +3597,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Ihr SQL-Befehl wurde erfolgreich ausgeführt." @@ -3734,17 +3722,17 @@ msgstr "Hochladen der Datei wurde durch die Erweiterung gestoppt." msgid "Unknown error in file upload." msgstr "Unbekannter Fehler beim hochladen der Datei." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Fehler beim Verschieben der hochgeladenen Datei, siehe [doc@faq1-11]FAQ " "1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Fehler beim Verschieben der hochgeladenen Datei." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Die hochgeladene Datei kann nicht gelesen werden." @@ -3808,8 +3796,8 @@ msgid "Keyname" msgstr "Schlüsselname" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3859,13 +3847,13 @@ msgstr "Index %s wurde entfernt." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Löschen" @@ -3967,7 +3955,7 @@ msgstr "Rechte" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operationen" @@ -3982,7 +3970,7 @@ msgstr "Nachverfolgung" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4361,11 +4349,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "Keinen gültigen Pfad für Grafiken des Oberflächendesigns %s gefunden!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Keine Vorschau verfügbar." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "auswählen" @@ -4692,21 +4680,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Räumlich" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Maximal: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Statische Analyse:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "%d Fehler wurden während der Analyse gefunden." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4717,32 +4705,32 @@ msgstr "%d Fehler wurden während der Analyse gefunden." msgid "MySQL said: " msgstr "MySQL meldet: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL erklären" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "SQL-Erklärung umgehen" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "Explain auf %s analysieren" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "ohne PHP-Code" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "SQL-Befehl ausführen" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "PHP-Code erzeugen" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Inline bearbeiten" @@ -4831,6 +4819,10 @@ msgstr "pro Stunde" msgid "per day" msgstr "pro Tag" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "freigegeben" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Suche:" @@ -4941,11 +4933,11 @@ msgstr "Neue Spalte hinzufügen" msgid "Attributes" msgstr "Attribute" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Fehler beim Lesen der Konfigurationsdatei!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4953,33 +4945,33 @@ msgstr "" "Dies bedeutet im Allgemeinen, dass sich ein Syntax-Fehler eingeschlichen " "hat. Bitte überprüfen Sie die unten angezeigten Fehler." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Fehler beim Laden der Standard-Konfiguration von: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Ungültige Server-Nummer: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Ungültiger Host-Name für Server %1$s. Bitte überprüfen Sie Ihre " "Konfiguration." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Ungültige Authentifikationsmethode:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4991,24 +4983,24 @@ msgstr "" "[%3$d]['SessionTimeZone'][/em]. phpMyAdmin verwendet aktuell die Standard-" "Zeitzone des Datenbankservers." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Sie sollten auf %s %s oder neuer aktualisieren." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Fehler: Token stimmen nicht überein" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS Überschreibversuch" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "Mögliche Ausnutzung" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "Numerischer Schlüssel entdeckt" @@ -5762,13 +5754,13 @@ msgstr "Spaltennamen in die erste Zeile setzen" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Spalten eingeschlossen von" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Spalten escaped mit" @@ -5786,12 +5778,12 @@ msgstr "CRLF-Zeichen aus den Zeilen entfernen" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Spalten enden mit" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Zeilen enden mit" @@ -6379,7 +6371,7 @@ msgid "Column names in first row" msgstr "Spaltennamen in der ersten Zeile" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Keine leeren Datensätze importieren" @@ -7955,7 +7947,7 @@ msgid "Table %s has been emptied." msgstr "Die Tabelle %s wurde geleert." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Die Ansicht %s wurde gelöscht." @@ -8090,8 +8082,8 @@ msgid "No data to display" msgstr "Keine Daten zum Anzeigen" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8129,17 +8121,17 @@ msgstr[1] "Die Namen '%s' sind reservierte MySQL-Schlüsselwörter." msgid "No column selected." msgstr "Es wurden keine Datensätze ausgewählt." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Die Spalten wurden erfolgreich verschoben." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Abfrage-Fehler" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." @@ -8147,36 +8139,36 @@ msgstr "" "Die Tabelle %1$s wurde erfolgreich geändert. Die Privilegien wurden " "angepasst." -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Bearbeiten" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Index" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Räumlich" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Volltext" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Unterschiedliche Werte" @@ -8186,7 +8178,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Die Erweiterung %s fehlt. Bitte die PHP-Konfiguration überprüfen." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Keine Änderung" @@ -8988,59 +8980,59 @@ msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Datensätze)." msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK aufgetreten.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" "Zum Ändern der Struktur auf den entsprechenden \"Struktur\"-Link klicken." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Gehe zur Datenbank: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Einstellung für %s bearbeiten" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Gehe zur Tabelle: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struktur von %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Gehe zur Ansicht: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9089,55 +9081,55 @@ msgstr "Oder" msgid "web server upload directory:" msgstr "Upload-Verzeichnis auf dem Webserver:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Bearbeiten/Einfügen" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Einfügen mit %s Datensätzen fortfahren" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "und dann" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Als neuen Datensatz speichern" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Als neue Zeile einfügen und Fehler ignorieren" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Zeige insert Abfrage" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "zurück" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "anschließend einen weiteren Datensatz einfügen" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Zurück zu dieser Seite" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "nächste Zeile bearbeiten" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9149,11 +9141,11 @@ msgstr "" msgid "Value" msgstr "Wert" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Ansicht als SQL Abfrage" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "ID der eingefügten Zeile: %1$d" @@ -10035,7 +10027,7 @@ msgstr "Repariere Tabelle" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Daten oder Tabelle löschen" @@ -10048,32 +10040,32 @@ msgid "Delete the table (DROP)" msgstr "Tabelle löschen (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analysieren" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Überprüfen" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimieren" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Neuaufbauen" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Reparieren" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Leeren" @@ -10099,35 +10091,35 @@ msgstr "Entferne die Partitionierung" msgid "Check referential integrity:" msgstr "Prüfe referentielle Integrität:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Tabelle kann nicht mit gleichem Namen verschoben werden!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Tabelle kann nicht mit gleichem Namen kopiert werden!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabelle %s wurde nach %s verschoben." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabelle %s wurde nach %s kopiert." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Der Tabellenname ist leer!" @@ -10310,7 +10302,7 @@ msgstr "Datenexport-Optionen" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Daten für Tabelle" @@ -10334,21 +10326,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tabellenstruktur für Tabelle" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktur des Views" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Stellvertreter-Struktur des Views" @@ -10439,7 +10431,7 @@ msgid "Database:" msgstr "Datenbank:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Daten:" @@ -10543,7 +10535,7 @@ msgid "Data creation options" msgstr "Datenterstellungsoptionen" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "TRUNCATE Tabelle vor dem Einfügen" @@ -10630,7 +10622,7 @@ msgstr "Es scheint, dass Ihre Datenbank Funktionen verwendet;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" "Alias-Export arbeitet möglicherweise nicht in allen Fällen zuverlässig." @@ -10673,52 +10665,52 @@ msgstr "in Benutzung" msgid "It appears your database uses views;" msgstr "Es scheint, dass Ihre Datenbank Ansichten verwendet;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Constraints der exportierten Tabellen" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Constraints der Tabelle" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indizes der exportierten Tabellen" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indizes für die Tabelle" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT für exportierte Tabellen" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT für Tabelle" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPEN DER TABELLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONEN DER TABELLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Es scheint, dass Ihre Tabelle Trigger verwendet;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktur des Views %s als Tabelle exportiert" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "(Siehe unten für die tatsächliche Ansicht)" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Fehler beim Lesen der Daten:" @@ -10750,7 +10742,7 @@ msgstr "" "(ON DUPLICATE KEY UPDATE hinzufügen)" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10774,15 +10766,15 @@ msgstr "" msgid "Column names: " msgstr "Spaltennamen: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Ungültiger Parameter für CSV-Import: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10792,18 +10784,18 @@ msgstr "" "richtig geschrieben, durch Kommata getrennt und nicht von Anführungszeichen " "eingeschlossen sind." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Ungültiges Format in Zeile %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Ungültige Anzahl an Spalten im CSV-Import in Zeile %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Dieses Plugin unterstützt keine Kompression!" @@ -10811,24 +10803,24 @@ msgstr "Dieses Plugin unterstützt keine Kompression!" msgid "MediaWiki Table" msgstr "Tabelle für MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Ungültiges Format des Mediawiki-Inputs in Zeile:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" "Prozentwerte als normale Dezimalzahlen importieren (z.B. wird 12.00% " "zu .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Währungen importieren (z.B. $5.00 zu 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10836,7 +10828,7 @@ msgstr "" "Die angegebene XML-Datei war entweder fehlerhaft oder unvollständig. Bitte " "korrigieren und erneut versuchen." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Fehler beim Lesen der OpenDocument-Arbeitsmappe!" @@ -10844,13 +10836,13 @@ msgstr "Fehler beim Lesen der OpenDocument-Arbeitsmappe!" msgid "ESRI Shape File" msgstr "ESRI-Shapedaten" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" "Beim Importieren der ESRI-Shapedaten ist ein Fehler aufgetreten: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10858,13 +10850,13 @@ msgstr "" "Sie haben versucht, eine ungültige Datei hochzuladen oder die Datei enthielt " "ungültige Daten!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" "Der ESRI-Typ \"%s\" wird von MySQL Spatial Extension nicht unterstützt." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Die importierte Datei enthält keine Daten!" @@ -10876,7 +10868,7 @@ msgstr "SQL-Kompatibilitätsmodus:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT nicht für Nullwerte verwenden" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13949,15 +13941,11 @@ msgid "An opening bracket followed by a set of values was expected." msgstr "" "Eine öffnende Klammer, gefolgt von einer Liste von Werten, wurde erwartet." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "Eine öffnende Klammer wurde erwartet." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "Ein Komma oder eine schließende Klammer wurde erwartet" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Ein Komma oder eine schließende Klammer wird erwartet." @@ -13970,17 +13958,18 @@ msgstr "Eine schließende Klammer wurde erwartet." msgid "Unrecognized data type." msgstr "Unerkannter Datentyp." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Ein Alias wurde zuvor gefunden." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Unerwarteter Punkt." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Ein Alias wurde erwartet." @@ -13998,19 +13987,19 @@ msgstr "Ein Offset wurde erwartet." msgid "This option conflicts with \"%1$s\"." msgstr "Diese Option widerspricht „%1$s“." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Der ursprüngliche Tabellenname wurde erwartet." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Schlüsselwort „TO“ wurde erwartet." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Der neue Tabellenname wurde erwartet." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Eine Umbenennungsoperation wurde erwartet." @@ -14036,15 +14025,15 @@ msgstr "Schließendes Anführungszeichen %1$s wurde erzeugt." msgid "Variable name was expected." msgstr "Variablenname wurde erwartet." -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Unerwarteter Statement-Anfang." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Unerkannte Statement-Typ." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Bisher wurde keine Transaktion gestartet." @@ -14067,15 +14056,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Unerkanntes Schlüsselwort." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Der Name der Entität wurde erwartet." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Mindestens eine Felddefinition wurde erwartet." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Ein „RETURNS“-Schlüsselwort wurde erwartet." @@ -14769,7 +14758,7 @@ msgstr "Dump (Schema) der Tabelle anzeigen" msgid "Invalid table name" msgstr "Ungültiger Tabellenname" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Zeile: %1$s, Spalte: %2$s, Fehler: %3$s" @@ -15693,7 +15682,7 @@ msgid "at beginning of table" msgstr "am Tabellenanfang" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Partitionen" @@ -15726,7 +15715,7 @@ msgstr "Partitioniere Tabelle" msgid "Edit partitioning" msgstr "Bearbeite die Partitionierung" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "View/Ansicht bearbeiten" @@ -15841,11 +15830,11 @@ msgstr "VIEW Name" msgid "Column names" msgstr "Spaltennamen" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "View umbenennen in" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Ansicht löschen (DROP)" @@ -17147,6 +17136,20 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ist auf 0 gesetzt" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Insgesamt %d Lesezeichen" +#~ msgstr[1] "Insgesamt %d Lesezeichen" + +#~ msgid "private" +#~ msgstr "privat" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s und %3$s Lesezeichen enthalten" + +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Ein Komma oder eine schließende Klammer wurde erwartet" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/el.po b/po/el.po index d1cca99e1a..d5e019402a 100644 --- a/po/el.po +++ b/po/el.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-02-08 21:43+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" @@ -47,7 +47,7 @@ msgid "Table comments:" msgstr "Σχόλια πίνακα:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -101,7 +101,7 @@ msgstr "Τύπος" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -163,16 +163,16 @@ msgid "Comments" msgstr "Σχόλια" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Πρωτεύον" -#: db_datadict.php:165 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:376 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:141 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:446 @@ -196,17 +196,17 @@ msgstr "Πρωτεύον" msgid "No" msgstr "Όχι" -#: db_datadict.php:165 js/messages.php:519 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:521 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:143 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -260,7 +260,7 @@ msgstr "Πίνακες" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -412,23 +412,23 @@ msgid "Point:" msgstr "Σημείο:" #: gis_data_editor.php:216 gis_data_editor.php:243 gis_data_editor.php:299 -#: gis_data_editor.php:372 js/messages.php:508 +#: gis_data_editor.php:372 js/messages.php:510 msgid "X" msgstr "Χ" #: gis_data_editor.php:219 gis_data_editor.php:247 gis_data_editor.php:303 -#: gis_data_editor.php:378 js/messages.php:509 +#: gis_data_editor.php:378 js/messages.php:511 msgid "Y" msgstr "Υ" #: gis_data_editor.php:241 gis_data_editor.php:297 gis_data_editor.php:370 -#: js/messages.php:511 +#: js/messages.php:513 #, php-format msgid "Point %d" msgstr "Σημείο %d" #: gis_data_editor.php:254 gis_data_editor.php:310 gis_data_editor.php:388 -#: js/messages.php:517 +#: js/messages.php:519 msgid "Add a point" msgstr "Προσθήκη σημείου" @@ -450,7 +450,7 @@ msgstr "Εσωτερικός δακτύλιος %d:" msgid "Add a linestring" msgstr "Προσθήκη κειμένου γραμμής" -#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:518 +#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:520 msgid "Add an inner ring" msgstr "Προσθήκη εσωτερικού δακτυλίου" @@ -467,12 +467,12 @@ msgstr "Προσθήκη πολυγώνου" msgid "Add geometry" msgstr "Προσθήκη γεωμετρίας" -#: gis_data_editor.php:411 js/messages.php:349 libraries/DbSearch.php:463 +#: gis_data_editor.php:411 js/messages.php:351 libraries/DbSearch.php:463 #: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:139 #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -502,7 +502,7 @@ msgstr "Προσθήκη γεωμετρίας" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Εκτέλεση" @@ -522,7 +522,7 @@ msgstr "" msgid "Succeeded" msgstr "Επιτεύχθηκε" -#: import.php:58 js/messages.php:592 +#: import.php:58 js/messages.php:594 msgid "Failed" msgstr "Απέτυχε" @@ -530,7 +530,7 @@ msgstr "Απέτυχε" msgid "Incomplete params" msgstr "Ελλιπείς παράμετροι" -#: import.php:184 +#: import.php:185 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -539,15 +539,15 @@ msgstr "" "Πιθανόν προσπαθήσατε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην " "%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." -#: import.php:360 import.php:665 +#: import.php:361 import.php:666 msgid "Showing bookmark" msgstr "Εμφάνιση σελιδοδείκτη" -#: import.php:376 import.php:661 +#: import.php:377 import.php:662 msgid "The bookmark has been deleted." msgstr "Η ετικέτα διεγράφη." -#: import.php:474 +#: import.php:475 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -557,12 +557,12 @@ msgstr "" "ενεργοποιημένο το open_basedir χωρίς πρόσβαση στο φάκελο %s (για προσωρινά " "αρχεία)." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:491 import.php:568 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "Δεν ήταν δυνατή η ανάγνωση του αρχείου!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:502 import.php:517 import.php:542 import.php:557 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -572,7 +572,7 @@ msgstr "" "υποστήριξη για αυτή δεν έχει εφαρμοστεί ή απενεργοποιηθεί από τις ρυθμίσεις " "σας." -#: import.php:574 +#: import.php:575 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -582,22 +582,25 @@ msgstr "" "μέγεθος του αρχείου υπερβαίνει το μέγιστο επιτρεπτό μέγεθος από τη ρύθμιση " "της ΡΗΡ. Δείτε τις [doc@faq1-16]ΣΑΕ 1.16[/doc]." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:627 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "" "Αδύνατη η φόρτωση προσθέτων εισαγωγής, για αυτό ελέξτε την εγκατάστασή σας!" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:669 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "Ο σελιδοδείκτης %s έχει δημιουργηθεί." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "Η εισαγωγή ολοκληρώθηκε επιτυχώς, %d ερωτήματα εκτελέστηκαν." +#: import.php:679 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "Η εισαγωγή ολοκληρώθηκε επιτυχώς, %d ερωτήματα εκτελέστηκαν." +msgstr[1] "Η εισαγωγή ολοκληρώθηκε επιτυχώς, %d ερωτήματα εκτελέστηκαν." -#: import.php:705 +#: import.php:710 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -606,7 +609,7 @@ msgstr "" "Το χρονικό όριο του κώδικα εξαντλήθηκε, οπότε αν θέλετε να τελειώσετε την " "εισαγωγή, %sεπανυποβάλτε το ίδιο αρχείο%s και η εισαγωγή θα συνεχίσει." -#: import.php:715 +#: import.php:720 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -619,8 +622,8 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Αδύνατη η φόρτωση της διαδικασίας της εισαγωγής." -#: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: import_status.php:116 js/messages.php:450 js/messages.php:602 +#: libraries/Util.php:795 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Επιστροφή" @@ -644,7 +647,7 @@ msgstr "" msgid "General settings" msgstr "Γενικές ρυθμίσεις" -#: index.php:191 js/messages.php:625 +#: index.php:191 js/messages.php:627 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:287 msgid "Change password" @@ -716,10 +719,11 @@ msgstr "Εμφάνιση πληροφοριών της PHP" msgid "Version information:" msgstr "Πληροφορίες έκδοσης:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:442 libraries/Util.php:509 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Τεκμηρίωση" @@ -852,95 +856,95 @@ msgstr "" "Ο διακομιστής εκτελείται με Suhosin. Αναφερθείτε στην %sτεκμηρίωση%s για " "πιθανά ζητήματα." -#: js/messages.php:39 libraries/import.lib.php:207 sql.php:161 +#: js/messages.php:41 libraries/import.lib.php:207 sql.php:161 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποιηθεί." -#: js/messages.php:45 +#: js/messages.php:47 msgid "Confirm" msgstr "Επιβεβαίωση" -#: js/messages.php:46 +#: js/messages.php:48 #, php-format msgid "Do you really want to execute \"%s\"?" msgstr "Θέλετε να εκτελέσετε το ακόλουθο το «%s»;" -#: js/messages.php:48 libraries/mult_submits.lib.php:440 +#: js/messages.php:50 libraries/mult_submits.lib.php:440 msgid "You are about to DESTROY a complete database!" msgstr "Πρόκειται να DESTROY μια ολόκληρη βάση δεδομένων!" -#: js/messages.php:50 +#: js/messages.php:52 msgid "You are about to DESTROY a complete table!" msgstr "Πρόκειται να DESTROY έναν ολόκληρο πίνακα!" -#: js/messages.php:52 +#: js/messages.php:54 msgid "You are about to TRUNCATE a complete table!" msgstr "Πρόκειται να TRUNCATE έναν ολόκληρο πίνακα!" -#: js/messages.php:53 +#: js/messages.php:55 msgid "Delete tracking data for this table?" msgstr "Διαγραφή δεδομένων παρακολούθησης για αυτόν τον πίνακα;" -#: js/messages.php:55 +#: js/messages.php:57 msgid "Delete tracking data for these tables?" msgstr "Διαγραφή δεδομένων παρακολούθησης για αυτούς τους πίνακες;" -#: js/messages.php:57 +#: js/messages.php:59 msgid "Delete tracking data for this version?" msgstr "Διαγραφή δεδομένων παρακολούθησης για αυτήν την έκδοση;" -#: js/messages.php:59 +#: js/messages.php:61 msgid "Delete tracking data for these versions?" msgstr "Διαγραφή δεδομένων παρακολούθησης για αυτές τις εκδόσεις;" -#: js/messages.php:60 +#: js/messages.php:62 msgid "Delete entry from tracking report?" msgstr "Διαγραφή εισαγωγής από την αναφορά παρακολούθησης;" -#: js/messages.php:61 +#: js/messages.php:63 msgid "Deleting tracking data" msgstr "Διαγραφή δεδομένων παρακολούθησης" -#: js/messages.php:62 +#: js/messages.php:64 msgid "Dropping Primary Key/Index" msgstr "Διαγραφή Πρωτεύοντος Κλειδιού/Περιεχομενου" -#: js/messages.php:63 +#: js/messages.php:65 msgid "Dropping Foreign key." msgstr "Διαγράφετε ένα Ξένο κλειδί." -#: js/messages.php:65 +#: js/messages.php:67 msgid "This operation could take a long time. Proceed anyway?" msgstr "Αυτή η διαδικασία ίσως κρατήσει αρκετά. Θέλετε να συνεχίσετε;" -#: js/messages.php:67 +#: js/messages.php:69 #, php-format msgid "Do you really want to delete user group \"%s\"?" msgstr "Θέλετε πραγματικά να διαγράψετε την ομάδα χρηστών «%s»;" -#: js/messages.php:69 +#: js/messages.php:71 #, php-format msgid "Do you really want to delete the search \"%s\"?" msgstr "Θέλετε πραγματικά να διαγράψετε την αναζήτηση «%s»;" -#: js/messages.php:71 +#: js/messages.php:73 msgid "You have unsaved changes; are you sure you want to leave this page?" msgstr "" "Έχετε μη αποθηκευμένες αλλαγές. Θέλετε σίγουρα να αφήσετε αυτή τη σελίδα;" -#: js/messages.php:73 +#: js/messages.php:75 msgid "Do you really want to revoke the selected user(s) ?" msgstr "Θέλετε πραγματικά να ανακαλέσετε τον(ους) επιλεγμένο(ους) χρήστη(ες);" -#: js/messages.php:75 +#: js/messages.php:77 msgid "Do you really want to delete this central column?" msgstr "Θέλετε πραγματικά να διαγράψετε αυτή την κεντρική στήλη;" -#: js/messages.php:77 +#: js/messages.php:79 msgid "Do you really want to delete the selected items?" msgstr "Θέλετε πραγματικά να διαγράψετε τα επιλεγμένα αντικείμενα;" -#: js/messages.php:79 +#: js/messages.php:81 msgid "" "Do you really want to DROP the selected partition(s)? This will also DELETE " "the data related to the selected partition(s)!" @@ -949,19 +953,19 @@ msgstr "" "θα ΔΙΑΓΡΑΨΕΙ επίσης τα δεδομένα που σχετίζονται με αυτή(ές) τη(ις) " "κατατμήση(εις)!" -#: js/messages.php:83 +#: js/messages.php:85 msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "Θέλετε πραγματικά να ΠΕΡΙΚΟΨΕΤΕ τη(ις) επιλεγμένη(ες) κατάτμηση(εις);" -#: js/messages.php:85 +#: js/messages.php:87 msgid "Do you really want to remove partitioning?" msgstr "Θέλετε πραγματικά να απομακρύνετε τη(ις) κατάτμηση(εις);" -#: js/messages.php:86 +#: js/messages.php:88 msgid "Do you really want to RESET SLAVE?" msgstr "Θέλετε, σίγουρα, να εκτελέσετε την εντολή RESET SLAVE;" -#: js/messages.php:88 +#: js/messages.php:90 msgid "" "This operation will attempt to convert your data to the new collation. In " "rare cases, especially where a character doesn't exist in the new collation, " @@ -975,16 +979,16 @@ msgstr "" "εμφανίζονται σωστά υπό τη νέα σύνθεση. Σε αυτή την περίπτωη, προτείνουμε να " "επανέλθετε στην αρχική σύνθεση και να αναφερθείτε στις οδηγίες στο " -#: js/messages.php:94 +#: js/messages.php:96 msgid "Garbled Data" msgstr "Αλλοιωμένα Δεδομένα" -#: js/messages.php:96 +#: js/messages.php:98 msgid "Are you sure you wish to change the collation and convert the data?" msgstr "" "Θέλετε, σίγουρα, να αλλάξετε τη σύνθεση και να μετατρέψετε τα δεδομενα;" -#: js/messages.php:98 +#: js/messages.php:100 msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -1001,7 +1005,7 @@ msgstr "" "χαρακτηριστικό επεξεργασίας στήλη(ων) (τον Σύνδεσμο «Αλλαγή») στη σελίδα " "δομής πίνακα." -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1009,160 +1013,160 @@ msgstr "" "Θέλετε, σίγουρα, να αλλάξετε όλες τις συνθέσεις στηλών και να μετατρέψετε τα " "δεδομενα;" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Αποθήκευση & κλείσιμο" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Επαναφορά" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Επαναφορά όλων" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Η τιμή δεν υπάρχει στη φόρμα!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Επιλέξτε τουλάχιστον μια από τις επιλογές!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Εισάγετε έναν έγκυρο αριθμό!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Εισάγετε ένα έγκυρο μήκος!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Προσθήκη ευρετηρίου" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Επεξεργασία ευρετηρίου" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Προσθήκη %s στήλης(ών) στο ευρετήριο" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Δημιουργία ευρετηρίου μονής στήλης" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Δημιουργία σύνθετου ευρετηρίου" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Σύνθεση με:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Επιλέξτε στήλη(ες) για το ευρετήριο." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Πρέπει να προσθέσετε τουλάχιστον ένα πεδίο." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Προεπισκόπηση SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Εξομοίωση ερωτήματος" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Εγγραφές που ταιριάζουν:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "Εντολή SQL:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Τιμές Υ" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Το όνομα του συστήματος είναι κενό!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Το όνομα του χρήστη είναι κενό!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Ο κωδικός πρόσβασης είναι κενός!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Διαγραφή των επιλεγμένων χρηστών" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Κλείσιμο" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Το πρότυπο δημιουργήθηκε." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Το πρότυπο φορτώθηκε." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Το πρότυπο ανανεώθηκε." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Το πρότυπο διαγράφηκε." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Άλλα" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "," -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Συνδέσεις / Διεργασίες" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Ασύμβατη η ρύθμιση τοπικής εποπτείας!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1174,155 +1178,155 @@ msgstr "" "εποπτείας.Είναι πολύ πιθανό ότι η τρέχουσα ρύθμιση δεν θα λειτουργεί πλέον. " "Επαναφέρτε τις ρυθμίσεις σας στις προεπιλεγμένες στο μενού Ρυθμίσεις." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Αποτελεσματικότητα λανθάνουσας μνήμης ερωτήματος" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Χρήση λανθάνουσας μνήμης ερωτήματος" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Χρησιμοποιημένη λανθάνουσα μνήμη ερωτήματος" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Χρήση CPU συστήματος" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Μνήμη συστήματος" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Αδράνεια συστήματος" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Μέσο φορτίο" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Συνολική μνήμη" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Λανθάνουσα μνήμη" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Ρυθμισμένη μνήμη" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Ελεύθερη μνήμη" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Χρησιμοποιημένη μνήμη" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Σύνολο αδράνειας" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Λανθανουσα αδράνεια" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Χρησιμοποιημένη αδράνεια" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Ελεύθερη αδράνεια" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Σταλθέντα Bytes" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Ληφθέντα Bytes" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Συνδέσεις" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Διεργασίες" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d πίνακας(ες)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Ερωτήσεις" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Κίνηση" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Προσθήκη διαγράμματος στο πλέγμα" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στις σειρές!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1334,47 +1338,47 @@ msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στι msgid "None" msgstr "Καμία" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Επανεκίννηση εποπτείας" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Παύση εποπτείας" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Έναρξη αυτόματης ανανέωσης" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Λήξη αυτόματης ανανέωσης" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "Το general_log και το slow_query_log είναι ενεργοποιημένα." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "Το general_log είναι ενεργοποιημένο." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "Το slow_query_log είναι ενεργοποιημένο." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "Το slow_query_log και το general_log είναι απενεργοποιημένα." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "Το log_output δεν έχει οριστεί στο TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "Το log_output έχει οριστεί στο TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1386,12 +1390,12 @@ msgstr "" "ορίσετε το long_query_time μεταξύ 0-2 δευτερόλεπτα, κάτι που εξαρτάται από " "το σύστημά σας." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "Το long_query_time έχει οριστεί σε %d δευτερόλεπτο(α)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1400,30 +1404,30 @@ msgstr "" "προεπιλογές με την επανεκκίνηση του διακομιστή:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Ορισμός του log_output σε %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Ενεργοποίηση %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Απενεργοποίηση %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Ορισμός του long_query_time σε %d δευτερόλεπτα." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1432,59 +1436,59 @@ msgstr "" "Συνδεθείτε ως λογαριασμός root ή επικοινωνήστε με τον διαχειριστή της βάσης " "δεδομένων σας." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Αλλαγή ρυθμίσεων" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Τρέχουσες ρυθμίσεις" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Τίτλος διαγράμματος" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Διαφορικός" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Διαίρεση με %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Μονάδα" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Από την αργή καταγραφή" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Από την γενική καταγραφή" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" "Το όνομα της βάσης δεδομένων δεν είναι γνωστό για αυτό το ερώτημα στα αρχεία " "καταγραφής του διακομιστή." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Ανάλυση καταγραφών" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Ανάλυση & φόρτωση καταγραφών. Αυτό ίσως διαρκέσει λίγο." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Ακύρωση αιτήματος" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1495,7 +1499,7 @@ msgstr "" "ομαδοποίησης, έτσι οι άλλες ιδιότητες των ερωτημάτων, όπως ο χρόνος " "εκκίνησης, μπορεί να διαφέρουν." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1504,34 +1508,34 @@ msgstr "" "Αφού επιλέχθηκε η ομαδοποίηση των εντολών INSERT, τα ερωτήματα INSERT εντός " "του ίδιου πίνακα επίσης ομαδοποιηούνται ανεξάρτητα από εισαγόμενα δεδομένα." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Τα δεδομένα καταγραφής φορτώθηκαν. Τα ερωτήματα που εκτελέστηκαν σε αυτή την " "επέκταση χρόνου:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Μετάβαση στον πίνακα Καταγραφής" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Δεν βρέθηκαν δεδομένα" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Η καταγραφή αναλύθηκε αλλά δεν βρέθηκαν δεδομένα σε αυτή την επέκταση χρόνου." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Ανάλυση…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Επεξήγηση προϊόντος" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1539,7 +1543,7 @@ msgstr "Επεξήγηση προϊόντος" msgid "Status" msgstr "Κατάσταση" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1549,59 +1553,59 @@ msgstr "Κατάσταση" msgid "Time" msgstr "Χρόνος" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Συνολικός χρόνος:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Αποτελέμσατα προφίλ" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Πίνακας" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Διάγραμμα" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Επιλογές φιλτραρίσματος πίνακα καταγραφής" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Φίλτρο" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Φιλτράρισμα ερωτημάτων ανά λέξη/κανονική έκφραση:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "Ομαδοποίηση ερωτημάτων, αγνοώντας τα δεδομένα μεταβλητής στις δηλώσεις WHERE" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Άθροισμα ομαδοποιημένων γραμμών:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Σύνολο:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Φόρτωση καταγραφών" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Η ανανέωση της εποπτείας απέτυχε" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1612,27 +1616,27 @@ msgstr "" "επαναφόρτωση της σελίδας και η επανεισαγωγή των διαπιστευτηρίων σας θα " "βοηθήσουν." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Επαναφόρτωση σελίδας" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Επηρρεαζόμενες εγγραφές:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Αποτυχία ανάλυσης αρχείου config. Δεν φαίνεται να είναι έγκυρος κώδκας JSON." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Απέτυχε η δημιουργία καννάβου διαγράμματος με την εισαγωγή ρυθμίσεων. " "Επαναφορά στην προεπιλεγμένη ρύθμιση…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1641,63 +1645,63 @@ msgstr "" msgid "Import" msgstr "Εισαγωγή" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Εισαγωγή ρύθμισης εποπτείας" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Ελέγξτε το αρχείο που θέλετε να εισάγετε." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Κανένα διαθέσιμο αρχείο στο διακομιστή για εισαγωγή!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Ανάλυση ερωτήματος" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Σύστημα σύμβουλου" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Πιθανά θέματα απόδοσης" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Θέμα" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Πρόταση" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Λεπτομέρειες ρόλου" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Δικαιολόγηση" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Χρησιμοποιημένη μεταβλητή / τύπος" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Έλεγχος" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Διαμόρφωση SQL…" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "Δεν βρέθηκαν παράμετροι!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1709,60 +1713,60 @@ msgstr "Δεν βρέθηκαν παράμετροι!" msgid "Cancel" msgstr "Άκυρο" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Ρυθμίσεις σχετισμένες με σελίδα" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Εφαρμογή" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Φόρτωση…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Το Αίτημα διακόπηκε!!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "Προώθηση αιτήματος" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "Το Αίτημα απέτυχε!!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Σφάλμα στην προώθηση αιτημάτος" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Κωδικός σφάλματος: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Κείμενο σφάλματος: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Δεν έχετε επιλέξει βάσεις δεδομένων." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Διαγραφή στήλης" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Προσθήκη πρωτεύοντος κλειδιού" -#: js/messages.php:367 +#: js/messages.php:369 #: 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,56 +1776,56 @@ msgstr "Προσθήκη πρωτεύοντος κλειδιού" msgid "OK" msgstr "Εντάξει" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Πατήστε γαι να παραλείψετε αυτή την ειδοποίηση" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Μετονομασία βάσεων δεδομένων" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Αντιγραφή βάσης δεδομένων" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Αλλαγή συνόλου χαρακτήρων" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Ενεργοποίηση ελέγχων μη διακριτών κλειδιών" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Αποτυχία λήψης πραγματικής μέτρησης εγγραφών." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Αναζήτηση" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Απόκρυψη αποτελεσμάτων αναζήτησης" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Προβολή αποτελεσμάτων αναζήτησης" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Αναζήτηση" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Διαγραφή" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Ο ορισμός μιας αποθηκευμένης συνάρτησης πρέπει να περιέχει μια δήλωση RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1837,44 +1841,44 @@ msgstr "" msgid "Export" msgstr "Εξαγωγή" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "Επεξεργαστής ENUM/SET" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Τιμές για τη στήλη %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Τιμές για νέα στήλη" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Εισαγωγή κάθε τιμής σε διαφορετικό πεδίο." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Προσθήκη %d τιμής(ών)" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Σημείωση: Αν το αρχείο περιέχει πολλούς πίνακες, θα ενωθουν σε έναν." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Απόκρυψη παραθύρου ερωτήματος" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Προβολή παραθύρου ερωτήματος" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1884,7 +1888,7 @@ msgstr "Προβολή παραθύρου ερωτήματος" msgid "Edit" msgstr "Επεξεργασία" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1895,41 +1899,41 @@ msgstr "Επεξεργασία" msgid "Delete" msgstr "Διαγραφή" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "Ο αριθμός %d δεν είναι έγκυρος αριθμός γραμμών." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Αναζήτηση μη διακριτών τιμών" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Κανένα αυτόματα αποθηκευμένο ερώτημα" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Μεταβλητή %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Διαλέξτε" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Επιλογέας στήλης" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Αναζήτηση σε αυτή τη λίστα" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1939,15 +1943,15 @@ msgstr "" "για τη βάση δεδομένων %s έχει στήλες που δεν είναι παρούσες στον τρέχοντα " "πίνακα." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Δείτε περισσότερα" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Σίγουρα;" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1955,51 +1959,51 @@ msgstr "" "Αυτή η ενέργεια ίσως αλλάξει ορισμένους από τους ορισμούς στηλών.
Θέλετε σίγουρα να συνεχίσετε;" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Συνέχεια" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Προσθήκη πρωτεύοντος κλειδιού" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Προστέθηκε πρωτεύον κλειδί." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Μεταφέροντάς σας στο επόμενο βήμα…" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Το πρώτο βήμα κανονικοποίησης ολοκληρώθηκε για τον πίνακα «%s»." -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Τέλος βήματος" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Δεύτερο βήμα κανονικοποίησης (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Ολοκληρώθηκε" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Επιβεβαίωση μερικών εξαρτήσεων" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Οι επιλεγμένες μερικές εξαρτήσεις είναι ως ακολούθως:" -#: js/messages.php:444 +#: js/messages.php:446 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2007,19 +2011,19 @@ msgstr "" "Σημείωση: a, b -> d,f αναφέρει τιμές των στηλών a και b όπου συνδυαζόμενες " "μπορούν να ορίσουν τις τιμές των στηλών d και f." -#: js/messages.php:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Δεν έχετε επιλέξει μερικές εξαρτήσεις!" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Προβολή των πιθανών μερικών εξαρτήσεων με βάση δεδομένα στον πίνακα" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Απόκρυψη λίστας μερικών εξαρτήσεων" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2027,41 +2031,41 @@ msgstr "" "Καθήστε αναπαυτικά! Ίσως διαρκέσει μερικά δευτερόλεπτα βάσει του μεγέθους " "των δεδομένων και του αριθμού στηλών στον πίνακα." -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Βήμα" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Οι ακόλουθες πράξεις θα πραγματοποιηθούν:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "Απομάκρυνση στηλών από %s από τον πίνακα %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Δημιουργία του ακόλουθου πίνακα" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Τρίτο βήμα κανονικοποίησης (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Επιβεβαίωση μεταβατικών εξαρτήσεων" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Οι επιλεγμένες εξαρτήσεις είναι ως ακολούθως:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Δεν έχετε επιλέξει εξαρτήσεις!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2071,127 +2075,127 @@ msgstr "Δεν έχετε επιλέξει εξαρτήσεις!" msgid "Save" msgstr "Αποθήκευση" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Απόκρυψη κριτηρίων αναζήτησης" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Προβολή κριτηρίων αναζήτησης" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Αναζήτηση εύρους" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Μέγιστο στήλης:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Ονόματα στηλών:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Ελάχιστη τιμή:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Μέγιστη τιμή:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Απόκρυψη κριτηρίων εύρεσης και αντικατάστασης" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Προβολή κριτηρίων εύρεσης και αντικατάστασης" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Κάθε σημείο αναπαρειστά μια εγγραφή δεδομένων." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Η μετάβαση πάνω από ένα σημείο θα δείξει την ετικέτα του." -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Για να εστιάσετε, επιλέξτε ένα τομέα της εκτύπωσης με το ποντίκι." -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" "Πατήστε το κουμπί επαναφοράς εστίασης για να επιστρέψετε στην αρχική " "κατάσταση." -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Πατήστε ένα σημείο δεδομένων για να δείτε και πιθανά να επεξεργαστείτε τη " "γραμμή δεδομένων." -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Ο χώρος εργασίας μπορεί να αλλάξει μέγεθος σύρωντας την κάτω δεξιά γωνία." -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Επιλογή δύο στηλών" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Επιλογή δύο διαφορετικών στηλών" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Περιεχόμενο δείκτη δεδομένων" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Παράληψη" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Αντιγραφή" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Σημείο" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Κείμενο γραμμής" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Πολύγωνο" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Γεωμετρία" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "Εσωτερικός δακτύλιος" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Εξωτερικός δακτύλιος" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Θέλετε να αντιγράψετε κλειδί κρυπτογράφησης;" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Κλειδί κρυπτογράφησης" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2199,24 +2203,24 @@ msgstr "" "Δείχνει ότι έχετε κάνει αλλαγές σε αυτή τη σελίδα, θα ερωτηθείτε για " "επιβεβαίωση πριν εγκαταλείψετε τις αλλαγές" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Επιλέξτε αναφερθέν κλειδί" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Επιλέξτε Μη Διακριτό Κλειδί" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Επιλέξτε το πρωτεύον κλειδί ή ένα μοναδικό κλειδί!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Επιλέξτε στήλη για εμφάνιση" -#: js/messages.php:536 +#: js/messages.php:538 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,76 +2228,76 @@ msgstr "" "Δεν αποθηκεύσατε τις αλλαγές στο προϊόν. Θα χαθούν αν δεν τις αποθηκεύσετε. " "Θέλετε να συνεχίσετε;" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Όνομα σελίδας" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Αποθήκευση σελίδας" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Αποθήκευση σελίδας ως" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Άνοιγμα σελίδας" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Διαγραφή σελίδας" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Χωρίς τίτλο" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Επιλέξτε σελίδα για συνέχεια" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Εισάγετε ένα έγκυρο όνομα σελίδας" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "Θέλετε να αποθηκεύσετε τις αλλαγές στην τρέχουσα σελίδα;" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Η σελίδα διαγράφτηκε επιτυχώς" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Εξαγωγή σχεσιακού σχήματος" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Οι αλλαγές αποθηκεύτηκαν" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Προσθήκη επιλογής για τη στήλη «%s»." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d αντικείμενο(α) δημιουργήθηκε(αν)." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Αποστολή" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Πατήστε το escape για ακύρωση της επεξεργασίας." -#: js/messages.php:561 +#: js/messages.php:563 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 +2305,15 @@ msgstr "" "Έχετε επεξεργαστεί ορισμένα δεδομένα και δεν έχουν αποθηκευτεί. Θέλετε να " "αφήσετε τη σελίδα χωρίς αποθήκευση των δεδομένων;" -#: js/messages.php:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Σύρτε για ανακατανομή." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Πατήστε για ταξινόμηση των αποτελεσμάτων κατά αυτή τη στήλη." -#: js/messages.php:567 +#: js/messages.php:569 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,26 +2323,26 @@ msgstr "" "ASC/DESC.
- Control+Κλικ ή Alt+Κλικ (Για Mac: Shift+Option+Click) για " "απομάκρυνση της στήλης από τη δήλωση ORDER BY" -#: js/messages.php:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Πατήστε για εναλλαγή επισήμανσης." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Διπλό κλικ για αντιγραφή ονόματος στήλης." -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Πατήστε το προς τα κάτω βέλος
για εναλλαγή της εμφάνισης στηλών." -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Εμφάνιση όλων" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2347,12 +2351,12 @@ msgstr "" "την επεξεργασία και επιλογή καννάβου Επεξεργασία, Αντιγραφή και Διαγραφή " "ίσως να μη λειτουργούν μετά την αποθήκευση." -#: js/messages.php:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Εισάγετε ένα έγκυρο δεκαεξαδικό αριθμό. Έγκυροι χαρακτήρες είναι 0-9, A-F." -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2360,103 +2364,103 @@ msgstr "" "Θέλετε πραγματικά να δείτε όλες τις εγγραφές; Για ένα μεγάλο πίνακα, αυτό " "ίσως φέρει δυσλειτουργία στον φυλλομετρητή σας." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Αρχικό μήκος" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "άκυρο" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Ακυρωμένες συνδέσεις" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Επιτυχία" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Κατάσταση εισαγωγής" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Ρίξτε αρχεία εδώ" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Επιλέξτε βάση δεδομένων πρώτα" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Εκτύπωση" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Μπορείτε επίσης να επεξεργαστείτε τις περισσότερες τιμές
πατώντας με " "διπλό κλικ κατευθείαν σε αυτές." -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Μπορείτε επίσης να επεξεργαστείτε τις περισσότερες τιμές
πατώντας " "κατευθείαν σε αυτές." -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Μετάβαση στο σύνδεσμο:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Αντιγραφή ονόματος στήλης." -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "Δεξί κλικ στο όνομα στήλης για αντιγραφή του στο πρόχειρο." -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Δημιουργία κωδικού πρόσβασης" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Παραγωγή" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Περισσότερα" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Εμφάνιση πίνακα" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Απόκρυψη πίνακα" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Προβολή κρυφών αντικειμένων δέντρου πλοήγησης." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Σύνδεσμος με τον βασικό πίνακα" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Αποσύνδεση από τον βασικό πίνακα" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "Η αιτούμενη σελίδα δεν βρέθηκε στο ιστορικό, ίσως έληξε." -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2466,27 +2470,27 @@ msgstr "" "εγκαταστήσετε. Η νεότερη έκδοση είναι η %s και δημοσιεύτηκε την %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", τελευταία έκδοση:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "ενημερωμένο" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Δημιουργία προβολής" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Αποστολή αναφορών σφάλματος" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Υποβολή αναφοράς σφάλματος" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2494,21 +2498,21 @@ msgstr "" "Ένα ανεπανόρθωτο σφάλμα έχει συμβεί. Θέλετε να στείλετε μια αναφορά " "σφάλματος;" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Αλλαγή ρυθμίσεων αναφοράς" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Εμφάνιση λεπτομερειών αναφοράς" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "Η εξαγωγή σας ήταν ανεπιτυχής, λόγω χαμηλού χρονικού ορίου στην PHP!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2518,58 +2522,58 @@ msgstr "" "Κατά την υποβολή ορισμένα πεδία ίσως αγνοηθούν λόγω της ρύθμισης της PHP " "max_input_vars." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Ανιχνεύτηκαν ορισμένα σφάλματα στο διακομιστή!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Δείτε στο κάτω μέρος αυτού του παραθύρου." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Παράληψη Όλων" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Σύμφωνα με τις ρυθμίσεις σας, υποβάλλονται άμεσα, κάντε υπομονή." -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Επανεκτέλεση αυτού του ερώτηματος ξανά;" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Θέλετε πραγματικά να διαγράψετε αυτό το σελιδοδείκτη;" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "Κάποιο σφάλμα συνέβει κατά τη λήψη πληροφοριών αποσφαλμάτωσης SQL." -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s ερωτήματα εκτελέστηκαν %s φορές σε %s δευτερόλεπτα." -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "%s επιχείρημα(τα) πέρασαν" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Προβολή επιχειρημάτων" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Απόκρυψη επιχειρημάτων" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Χρόνος που παρήλθε:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2585,349 +2589,349 @@ msgstr "" "βοηθήσει. Στον Safari, τέτοιο πρόβλημα εμφανίζεται από την «Κατάσταση " "Ιδιωτικής Περιήγησης»." -#: js/messages.php:711 +#: js/messages.php:713 msgid "Copy tables to" msgstr "Αντιγραφή πινάκων στη" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "Προσθήκη προθέματος πίνακα" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "Αντικατάσταση πίνακα με πρόθεμα" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Αντιγραφή πίνακα με πρόθεμα" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Προηγούμενο" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Επόμενο" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Σήμερα" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Ιανουαρίου" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Φεβρουαρίου" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Μαρτίου" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Απριλίου" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Μαΐου" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Ιουνίου" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Ιουλίου" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Αυγούστου" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Σεπτεμβρίου" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Οκτωβρίου" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Νοεμβρίου" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Δεκεμβρίου" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Ιαν" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Φεβ" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Μαρ" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Απρ" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Μάη" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Ιουν" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Ιουλ" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Αυγ" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Σεπ" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Οκτ" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Νοε" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Δεκ" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Κυριακή" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Δευτέρα" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Τρίτη" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Τετάρτη" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Πέμπτη" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Παρασκευή" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Σάββατο" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Κυρ" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Δευ" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Τρί" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Τετ" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Πέμ" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Παρ" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Σάβ" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Κυ" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Δε" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Τρ" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Τε" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Πε" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Πα" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Σα" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "ημερολόγιο-μήνας-έτος" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "κανένα" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Ώρα" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Λεπτό" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Δευτερόλεπτο" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Αυτό το πεδίο είναι υποχρεωτικό" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Διορθώστε αυτό το πεδίο" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Εισάγετε μια έγκυρή ηλεκτρονική διεύθυνση" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Εισάγετε έναν έγκυρο URL" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Εισάγετε μια έγκυρη ημερομηνία" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Εισάγετε μια έγκυρη ημερομηνία (ISO)" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Εισάγετε έναν έγκυρο αριθμό" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Εισάγετε έναν έγκυρο αριθμό πιστωτικής κάρτας" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Εισάγετε μόνο ψηφία" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Εισάγετε την ίδια τιμή ξανά" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Εισάγετε όχι περισσότερους από {0} χαρακτήρες" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Εισάγετε τουλάχιστον {0} χαρακτήρες" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "Εισάγετε μια τιμή μήκους μεταξύ {0} και {1} χαρακτήρες" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Εισάγετε εισάγετε μια τιμή μεταξύ {0} και {1}" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "Εισάγετε μια τιμή μικρότερη ή ίση με {0}" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "Εισάγετε μια τιμή μεγαλύτερη ή ίση με {0}" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Εισάγετε μια έγκυρη ημερομηνία ή ώρα" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Εισάγετε μια έγκυρη ΔΕΚΑΕΞΑΔΙΚΗ εισαγωγή" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Λάθος" @@ -2981,34 +2985,34 @@ msgstr "" "Μη έγκυρος χαρακτήρας στη γραμμή %1$s. Αναμενότας στηλοθέτης, αλλά βρέθηκε " "«%2$s»." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Το υπαρχον αρχείο ρυθμίσεων (%s) δεν είναι αναγνώσιμο." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Εσφαλμένα δικαιώματα στο αρχείο ρυθμίσεων, δεν πρέπει να είναι καθολικά " "εγγράψιμο!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Μέγεθος γραμματοσειράς" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Σύμπτηξη" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Ανάπτυξη" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Επανερώτημα" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3028,76 +3032,59 @@ msgstr "Βάση" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Συνολικά %d σελιδοδείκτης" -msgstr[1] "Συνολικά %d σελιδοδείκτες" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "ιδιωτικό" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "κοινόχρηστο" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s και %3$s σελιδοδείκτες περιλαμβάνονται" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Κανένας σελιδοδείκτης" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Κατά την τρέχουσα συνεδρία" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Εξήγηση" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Δημιουργία προφίλ" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Σελιδοδείκτης" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Το ερώτημα απέτυχε" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Χρόνος ερωτήματος" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "Παράθυρο Ερωτήματος SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Παράθυρο" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Καθάρισμα" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Ιστορικό" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3115,125 +3102,125 @@ msgstr "Ιστορικό" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Επιλογές" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Σελιδοδείκτες" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Ανίχνευση λαθών SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Πατήστε Ctrl+Enter για εκτέλεση του ερωτήματος" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Πατήστε Enter για εκτέλεση του ερωτήματος" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "αύξουσα" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "φθίνουσα" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Ταξινόμηση:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Μέτρηση" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Σειρά εκτέλεσης" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Χρόνος που παρήλθε" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Ταξινόμηση κατά:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Ομαδοποίηση ερωτημάτων" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Αποομαδοποίηση ερωτημάτων" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Προβολή ίχνους" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Απόκρυψη ίχνους" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Μέτρηση:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Ανανέωση" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Προσθήκη" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Προσθήκη σελιδοδείκτη" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Ετικέτα" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Βάση δεδομένων προορισμού" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Κοινή χρήση αυτού του σελιδοδείκτη" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Ορισμός προεπιλογής" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Πάντα ανάπτυξη των μηνυμάτων ερωτημάτων" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Προβολή ιστορικού ερωτημάτων στην έναρξη" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Προβολή τρέχοντος ερωτημάτος φυλλομετρητή" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3241,16 +3228,15 @@ msgstr "" "Εκτέλεση ερωτημάτων με το πάτημα του Enter και εισαγωγή νέας γραμμής με " "SHIFT + Enter. Για να το κάνετε αυτό μόνιμο, δείτε τις ρυθμίσεις." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Αλλαγή σε σκοτεινό θέμα" -#: libraries/DatabaseInterface.php:1528 -#| msgid "Failed to read configuration file!" +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "Αδύνατος ο ορισμός σύνδεσης ρυθμισμένης σύνθεσης!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3258,19 +3244,19 @@ msgstr "" "Ο διακομιστής δεν αποκρίνεται (ή ο τοπικός διακομιστής δεν έχει ρυθμιστεί " "σωστά)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Ο διακομιστής δεν αποκρίνεται." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Ελέξτε τα δικαιώματα του φακέλου που περιέχει τη βάση δεδομένων." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Λεπτομέρειες…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "Ανεπιτυχής σύνδεση του χρήστη ελέγχου όπως ορίστηκε στη ρύθμισή σας." @@ -3581,7 +3567,7 @@ msgstr "Ίσως είναι κατά προσέγγιση. Δείτε τις [do #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Η εντολή SQL εκτελέσθηκε επιτυχώς." @@ -3704,17 +3690,17 @@ msgstr "Η αποστολή του αρχείου σταμάτησε λόγω ε msgid "Unknown error in file upload." msgstr "Άγνωστο σφάλμα στην αποστολή αρχείου." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Σφάλμα μετακίνησης του αρχείου αποστολής. Δείτε τις [doc@faq1-11]ΣΑΕ 1.11[/" "doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Σφάλμα κατά τη μετακίνηση αρχείου αποστολής." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Αδύνατη η ανάγνωση του αποσταλμένου αρχείου." @@ -3778,8 +3764,8 @@ msgid "Keyname" msgstr "Όνομα κλειδιού" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3829,13 +3815,13 @@ msgstr "Το ευρετήριο %s έχει διαγραφεί." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Διαγραφή" @@ -3937,7 +3923,7 @@ msgstr "Δικαιώματα" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Λειτουργίες" @@ -3952,7 +3938,7 @@ msgstr "Παρακολούθηση" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4334,11 +4320,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "Βρέθηκε μη έγκυρη διαδρομή εικόνας για το θέμα %s!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Προεπισκόπηση μη διαθέσιμη." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "πάρτε το" @@ -4662,21 +4648,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Χωρική" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Μέγιστο μέγεθος: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Στατική ανάλυση:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "%d σφάλματα βρέθηκαν κατά την ανάλυση." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4687,32 +4673,32 @@ msgstr "%d σφάλματα βρέθηκαν κατά την ανάλυση." msgid "MySQL said: " msgstr "Η MySQL επέστρεψε το μήνυμα: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Ανάλυση SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Χωρίς ανάλυση SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "Ανάλυση Εξήγησης στο %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "Χωρίς κώδικα PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "Υποβολή ερωτήματος" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Δημιουργία κώδικα PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Επεξεργασία εσωτερικά" @@ -4802,6 +4788,10 @@ msgstr "ανά ώρα" msgid "per day" msgstr "ανά ημέρα" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "κοινόχρηστο" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Αναζήτηση:" @@ -4910,11 +4900,11 @@ msgstr "Προσθήκη νέας στήλης" msgid "Attributes" msgstr "Χαρακτηριστικά" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Αδύνατη η ανάγνωση του αρχείου ρυθμίσεων!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4922,33 +4912,33 @@ msgstr "" "Αυτό σημαίνει, συνήθως, ότι υπάρχει συντακτικό λάθος, για αυτό ελέγξτε τα " "σφάλματα που εμφανίζονται παρακάτω." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Αδύνατη η φόρτωση της προεπιλεγμένης ρύθμισης από: «%1$s»" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Μη έγκυρο ευρετήριο διακομιστή: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Μη έγκυρο όνομα διακομιστή για τον διακομιστή %1$s. Ξαναδείτε τις ρυθμίσεις " "σας." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Διακομιστής %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Ορίστηκε εσφαλμένη μέθοδος πιστοποίησης στη ρύθμιση:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4960,24 +4950,24 @@ msgstr "" "το phpMyAdmin χρησιμοποιεί την προεπιλεγμένη ζώνη ώρας του διακομιστή της " "βάσης δεδομένων." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Πρέπει να αναβαθμίσετε σε %s %s ή νεότερη." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Σφάλμα: Το πειστήριο δεν ταιριάζει" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "προσπάθεια επανεγγραφής GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "δυνατή αξιοποίηση" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "ανιχνεύτηκε αριθμητικό κλειδί" @@ -5727,13 +5717,13 @@ msgstr "Εμφάνιση ονομάτων στηλών στην πρώτη γρ #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Στήλες που περικλείονται με" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Τα πεδία χρησιμοποιούν το χαρακτήρα διαφυγής" @@ -5751,12 +5741,12 @@ msgstr "Απομάκρυνση χαρακτήρων CRLF μέσα στις στ #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Στήλες που τελειώνουν με" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Γραμμές που τελειώνουν με" @@ -6344,7 +6334,7 @@ msgid "Column names in first row" msgstr "Ονόματα στήλης στην πρώτη γραμμή" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Να μην γίνει εισαγωγή άδειων γραμμών" @@ -7939,7 +7929,7 @@ msgid "Table %s has been emptied." msgstr "Ο πίνακας %s άδειασε." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Η προβολή %s διαγράφτηκε." @@ -8073,8 +8063,8 @@ msgid "No data to display" msgstr "Κανένα δεδομένο για προβολή" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8112,52 +8102,52 @@ msgstr[1] "Τα ονόματα «%s» είναι δεσμευμένες λέξε msgid "No column selected." msgstr "Δεν επιλέχθηκε στήλη." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Οι στήλες μετακινήθηκαν επιτυχώς." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Σφάλμα ερωτήματος" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "Ο πίνακας %1$s αλλάχτηκε επιτυχώς. Τα προνόμια έχουν προσαρμοστεί." -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Αλλαγή" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Ευρετήριο" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Χωρική" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Πλήρες κείμενο" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Διακριτές τιμές" @@ -8167,7 +8157,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Η επέκταση %s λείπει. Δείτε τις ρυθμίσεις της PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Χωρίς αλλαγή" @@ -8970,54 +8960,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "[συνέβει ROLLBACK.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Οι ακόλουθες δομές δημιουργήθηκαν ή αλλάχτηκαν. Εδώ μπορείτε να:" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "Προβολή των περιεχομένων δομής πατώντας στο όνομά της." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Αλλάξτε τις ρυθμίσεις πατώντας τον αντίστοιχο σύνδεσμο «Επιλογές»." -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Επεξεργαστείτε τη δομή πατώντας τον σύνδεσμο «Δομή»." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Μετάβαση στη βάση δεδομένων: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Επεξεργασία ρυθμίσεων για %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Μετάβαση στον πίνακα: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Δομή του %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Μετάβαση στην προβολή: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Μονο ερωτήματα UPDATE και DELETE μονού πίνακα μπορούν να εξομοιωθούν." -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9066,55 +9056,55 @@ msgstr "Ενωση" msgid "web server upload directory:" msgstr "κατάλογος αποθήκευσης αρχείων διακομιστή:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Επεξεργασία/Προσθήκη" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Συνέχιση εισαγωγής με %s εγγραφές" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "και μετά" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Εισαγωγή ως νέα εγγραφή" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Εισαγωγή ως νέα γραμμή και παράβλεψη σφαλμάτων" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Εμφάνιση ερωτήματος εισαγωγής" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Επιστροφή" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Εισαγωγή νέας εγγραφής" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Επιστροφή σε αυτή τη σελίδα" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Επεξεργασία επόμενης γραμμής" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Χρήση του πλήκτρου TAB για μετακίνηση από τιμή σε τιμή ή CTRL+βέλη για " "μετακίνηση παντού." -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9126,11 +9116,11 @@ msgstr "" msgid "Value" msgstr "Τιμή" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Εμφάνιση ερωτήματος SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d" @@ -10005,7 +9995,7 @@ msgstr "Επιδιόρθωση πίνακα" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Διαγραφή δεδομένων ή πίνακα" @@ -10018,32 +10008,32 @@ msgid "Delete the table (DROP)" msgstr "Διαγραφή της βάσης δεδομένων (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Ανάλυση" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Έλεγχος" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Βελτιστοποίηση" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Επανακατασκευή" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Επισκευή" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Διαγραφή" @@ -10069,35 +10059,35 @@ msgstr "Απομάκρυνση κατάτμησης" msgid "Check referential integrity:" msgstr "Έλεγχος ακεραιότητας συσχετίσεων:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Δεν είναι δυνατή η μεταφορά του πίνακα στον εαυτό του!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Δεν είναι δυνατή η αντιγραφή του πίνακα στον εαυτό του!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Ο πίνακας %s μεταφέρθηκε στο %s. Τα προνόμια έχουν προσαρμοστεί." -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Ο πίνακας %s αντιγράφηκε στο %s. Τα προνόμια έχουν προσαρμοστεί." -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Ο πίνακας %s μεταφέρθηκε στο %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Ο πίνακας %s αντιγράφηκε στο %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Το όνομα του πίνακα είναι κενό!" @@ -10279,7 +10269,7 @@ msgstr "Επιλογές απορριμμάτων δεδομένων" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Άδειασμα δεδομένων του πίνακα" @@ -10303,21 +10293,21 @@ msgstr "Προσδιορισμός" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Δομή πίνακα για τον πίνακα" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Δομή για προβολή" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Στημένη δομή για προβολή" @@ -10407,7 +10397,7 @@ msgid "Database:" msgstr "Βάση δεδομένων:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Δεδομένα:" @@ -10511,7 +10501,7 @@ msgid "Data creation options" msgstr "Επιλογές δημιουργίας δεδομένων" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Εκκαθάριση του πίνακα πριν την εισαγωγή" @@ -10595,7 +10585,7 @@ msgstr "Φαίνεται ότι η βάση δεδομένων σας χρησι #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" "Η εξαγωγή ετικέτας μπορεί να μη λειτουργεί αξιόπιστα σε όλες τις περιπτώσεις." @@ -10638,52 +10628,52 @@ msgstr "σε χρήση" msgid "It appears your database uses views;" msgstr "Φαίνεται ότι η βάση δεδομένων σας χρησιμοποιεί προβολές" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Περιορισμοί για άχρηστους πίνακες" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Περιορισμοί για πίνακα" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Ευρετήρια για άχρηστους πίνακες" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Ευρετήρια για πίνακα" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT για άχρηστους πίνακες" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT για πίνακα" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "ΤΥΠΟΙ MIME ΓΙΑ ΠΙΝΑΚΑ" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "ΣΥΣΧΕΤΙΣΕΙΣ ΓΙΑ ΠΙΝΑΚΑ" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Φαίνεται ότι ο πίνακάς σας χρησιμοποιεί δείκτες" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "Δομή για προβολή %s εξαγώμενη ως πίνακας" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "(Δείτε παρακάτω για την πραγματική προβολή)" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Σφάλμα ανάγνωσης δεδομένων:" @@ -10715,7 +10705,7 @@ msgstr "" "(προσθήκη στο ON DUPLICATE KEY UPDATE)" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10738,15 +10728,15 @@ msgstr "" msgid "Column names: " msgstr "Ονόματα στηλών: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Μη έγκυρη παράμετρος στο εισαχθέν CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10755,18 +10745,18 @@ msgstr "" "Ορίστηκε μη έγκυρη στήλη (%s)! Σιγουρευτείτε ότι τα ονόματα στηλών ορίζονται " "σωστά, χωρίζονται με κόμμα δεν περιέχονται σε εισαγωγικά." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Μη έγκυρη μορφή στο εισαχθέν CSV στη γραμμή %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Μη έγκυρο πλήθος στηλών στο εισαχθέν CSV στη γραμμή %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Αυτό το πρόσθετο δεν υποστηρίζει συμπιεσμένες εισαγωγές!" @@ -10774,22 +10764,22 @@ msgstr "Αυτό το πρόσθετο δεν υποστηρίζει συμπι msgid "MediaWiki Table" msgstr "Πίνακας MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Μη έγκυρη μορφή του εισαγόμενου mediawiki στη γραμμή
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "Εισαγωγή ποσοστών ως κανονικά δεκαδικά (π.χ. 12.00% αντί .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Εισαγωγή νομισμάτων (π.χ. €5,00 αντί 5,00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10797,7 +10787,7 @@ msgstr "" "Το αρχείο XML που ορίστηκε ήταν σε λανθασμένη μορφή ή ανεπαρκές. Διορθώστε " "το θέμα και δοκιμάστε ξανά." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Αδύνατη η προσπέλαση Εγγράφου Λογιστικού Φύλλου Ανοιχτού Κώδικα - ODS!" @@ -10805,12 +10795,12 @@ msgstr "Αδύνατη η προσπέλαση Εγγράφου Λογιστικ msgid "ESRI Shape File" msgstr "Shape File της ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Σφάλμα εισαγωγής shape file της ESRI: «%s»." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10818,12 +10808,12 @@ msgstr "" "Προσπαθήσατε να εισάγετε μη έγκυρο αρχείο ή το εισαγμένο αρχείο περιέχει μη " "έγκυρα δεδομένα!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "Η Χωρική Επέκταση της MySQL δεν υποστηρίζει τύπο της ESRI «%s»." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Το εισαγόμενο αρχείο δεν περιέχει δεδομένα!" @@ -10835,7 +10825,7 @@ msgstr "Κατάσταση συμβατότητας SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Να μην γίνεται AUTO_INCREMENT σε μηδενικές τιμές" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "Κώδικας XML" @@ -13903,15 +13893,11 @@ msgstr "Αναμενόταν %1$d τιμές, αλλά βρέθηκαν %2$d." msgid "An opening bracket followed by a set of values was expected." msgstr "Αναμενόταν μια ανοιχτή αγκύλη ακολουθούμενη από ένα σύνολο τιμών." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "Αναμενόταν μια ανοιχτή αγκύλη." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "Αναμενόταν ένα κόμμα ή μια κλειστή αγκύλη" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Αναμενόταν ένα κόμμα ή μια κλειστή αγκύλη." @@ -13924,17 +13910,18 @@ msgstr "Αναμενόταν κλείσιμο αγκύλης." msgid "Unrecognized data type." msgstr "Μη αναγνωρισμένος τύπος δεδομένων." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Βρέθηκε μια ετικέτα προηγουμένως." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Μη αναμενόμενη τελεία." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Αναμενόταν μια ετικέτα." @@ -13952,19 +13939,19 @@ msgstr "Αναμενόταν μια αντιστάθμιση." msgid "This option conflicts with \"%1$s\"." msgstr "Αυτή η επιλογή έχει διαίνεξη με το «%1$s»." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Αναμενόταν το παλαιό όνομα του πίνακα." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Αναμενόταν η λέξη-κλειδί «TO»." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Αναμενόταν το νέο όνομα του πίνακα." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Αναμενόταν μια λειτουργία μετονομασίας." @@ -13990,15 +13977,15 @@ msgstr "Αναμενόταν τελικό εισαγωγικό %1$s." msgid "Variable name was expected." msgstr "Αναμενόταν όνομα μεταβλητής." -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Μη αναμενόμενη έναρξη δήλωσης." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Μη αναγνωρισμένος τύπος δήλωσης." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Καμιά συναλλαγή δεν ξεκίνησε προηγουμένως." @@ -14021,15 +14008,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Μη αναγνωρισμένη λέξη κλειδί." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Αναμενόταν το όνομα της οντότητας." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Αναμενόταν τουλάχιστον ένας ορισμός πεδίου." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Αναμενόταν μια λέξη-κλειδί «RETURNS»." @@ -14727,7 +14714,7 @@ msgstr "Εμφάνιση σκαριφήματος (σχήματος) του πί msgid "Invalid table name" msgstr "Μη έγκυρο όνομα πίνακα" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Γραμμή: %1$s, Στήλη: %2$s, Σφάλμα: %3$s" @@ -15651,7 +15638,7 @@ msgid "at beginning of table" msgstr "στην αρχή του πίνακα" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Κατατμήσεις" @@ -15684,7 +15671,7 @@ msgstr "Πίνακας κατάτμησης" msgid "Edit partitioning" msgstr "Επεξεργασία κατάτμησης" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Επεξεργασία εμφάνισης" @@ -15799,11 +15786,11 @@ msgstr "Όνομα VIEW" msgid "Column names" msgstr "Ονόματα στηλών" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Μετονομασία πίνακα σε" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Διαγραφή της προβολής (DROP)" @@ -17123,6 +17110,20 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Το concurrent_insert έχει οριστεί στο 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Συνολικά %d σελιδοδείκτης" +#~ msgstr[1] "Συνολικά %d σελιδοδείκτες" + +#~ msgid "private" +#~ msgstr "ιδιωτικό" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s και %3$s σελιδοδείκτες περιλαμβάνονται" + +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Αναμενόταν ένα κόμμα ή μια κλειστή αγκύλη" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/en_GB.po b/po/en_GB.po index 092ba4ad80..08fc357ab2 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:38+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: English (United Kingdom) " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Save as file" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Reset" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Select All" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Missing value in the form!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Select at least one of the options!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Please enter a valid number!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Please enter a valid length!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Add index" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Edit Index" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Add %s column(s) to index" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Create routine" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Create routine" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Columns enclosed with:" msgid "Composite with:" msgstr "Columns enclosed with:" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %s column(s) to index" msgid "Please select column(s) for the index." msgstr "Add %s column(s) to index" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "You have to add at least one column." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "in query" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "Affected rows:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL query:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y Values" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "The host name is empty!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "The user name is empty!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "The password is empty!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Removing Selected Users" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Close" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "The number of pages created." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "The profile has been updated." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "The row has been deleted." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Other" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Connections / Processes" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Local monitor configuration incompatible!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1216,165 +1220,165 @@ msgstr "" "likely that your current configuration will not work any more. Please reset " "your configuration to default in the Settings menu." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Query cache efficiency" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Query cache usage" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Query cache used" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "System CPU Usage" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "System memory" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "System swap" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Average load" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Total memory" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Cached memory" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Buffered memory" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Free memory" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Used memory" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Total Swap" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Cached Swap" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Used Swap" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Free Swap" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Bytes sent" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Bytes received" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Connections" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Processes" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d table(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Questions" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Traffic" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Settings" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Add chart to grid" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Please add at least one variable to the series!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1386,47 +1390,47 @@ msgstr "Please add at least one variable to the series!" msgid "None" msgstr "None" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Resume monitor" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Pause monitor" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log and slow_query_log are enabled." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log is enabled." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log is enabled." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log and general_log are disabled." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output is not set to TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output is set to TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1437,12 +1441,12 @@ msgstr "" "than %d seconds. It is advisable to set this long_query_time 0-2 seconds, " "depending on your system." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time is set to %d second(s)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1451,30 +1455,30 @@ msgstr "" "restart:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Set log_output to %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Enable %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Disable %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Set long_query_time to %d seconds." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1482,57 +1486,57 @@ msgstr "" "You can't change these variables. Please log in as root or contact your " "database administrator." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Change settings" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Current settings" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Chart title" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Differential" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Divided by %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Unit" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "From slow log" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "From general log" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "The database name is not known for this query in the server's logs." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Analysing logs" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Analysing & loading logs. This may take a while." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Cancel request" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1542,7 +1546,7 @@ msgstr "" "together. However only the SQL Text is being compared, thus the queries " "other attributes such as start time may differ." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1552,31 +1556,31 @@ msgstr "" "same table are also being grouped together, disregarding of the inserted " "data." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "Log data loaded. Queries executed in this time span:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Jump to Log table" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "No data found" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "Log analysed, but no data found in this time span." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analysing…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Explain output" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1584,7 +1588,7 @@ msgstr "Explain output" msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1594,58 +1598,58 @@ msgstr "Status" msgid "Time" msgstr "Time" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Total time:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Profiling results" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Table" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Chart" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Log table filter options" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filter" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filter queries by word/regexp:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Group queries, ignoring variable data in WHERE clauses" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Sum of grouped rows:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Total:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Loading logs" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Monitor refresh failed" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1655,25 +1659,25 @@ msgstr "" "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Reload page" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Affected rows:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "Failed parsing config file. It doesn't seem to be valid JSON code." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Failed building chart grid with imported config. Resetting to default config…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1682,67 +1686,67 @@ msgstr "" msgid "Import" msgstr "Import" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Import monitor configuration" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Please select the file you want to import." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "No files available on server for import!" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "Analyse Query" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Advisor system" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Possible performance issues" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Issue" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Recommendation" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Rule details" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Justification" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Used variable / formula" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Test" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Bad parameters!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1754,74 +1758,74 @@ msgstr "Bad parameters!" msgid "Cancel" msgstr "Cancel" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Change settings" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Apply" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Loading…" -#: js/messages.php:358 +#: js/messages.php:360 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "Request Aborted!!" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Processing Request" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Request Aborted!!" msgid "Request failed!!" msgstr "Request Aborted!!" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Error in processing request:" msgid "Error in processing request" msgstr "Error in processing request:" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Error code: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Error text: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "No databases selected." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Dropping Column" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Add primary key" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1831,65 +1835,65 @@ msgstr "Add primary key" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Click to dismiss this notification" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Renaming Databases" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Copying Database" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Changing Charset" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Disable foreign key checks" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "Failed to fetch headers" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Searching" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Hide search results" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Show search results" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Browsing" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Deleting" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "The definition of a stored function must contain a RETURN statement!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1905,45 +1909,45 @@ msgstr "The definition of a stored function must contain a RETURN statement!" msgid "Export" msgstr "Export" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET editor" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Values for column %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Values for a new column" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Enter each value in a separate field." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Add %d value(s)" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Note: If the file contains multiple tables, they will be combined into one." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Hide query box" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Show query box" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1953,7 +1957,7 @@ msgstr "Show query box" msgid "Edit" msgstr "Edit" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1964,96 +1968,96 @@ msgstr "Edit" msgid "Delete" msgstr "Delete" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d is not valid row number." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Browse foreign values" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Variable" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No column selected." msgid "Column selector" msgstr "No column selected." -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Search in database" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Free memory" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "Contribute" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Add primary key" -#: js/messages.php:434 +#: js/messages.php:436 #, 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:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Tracking report" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2061,90 +2065,90 @@ msgstr "" msgid "End of step" msgstr "End of line" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Done" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "No databases selected." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 #, 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:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table:" msgid "Create the following table" msgstr "Add privileges on the following table:" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "No databases selected." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2154,159 +2158,159 @@ msgstr "No databases selected." msgid "Save" msgstr "Save" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Hide search criteria" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Show search criteria" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "Table Search" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "Column names: " -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "Column names: " -#: js/messages.php:477 +#: js/messages.php:479 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "Maximum tables" -#: js/messages.php:478 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "Maximum tables" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Hide find and replace criteria" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Show find and replace criteria" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Each point represents a data row." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Hovering over a point will show its label." -#: js/messages.php:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Select two columns" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Select two different columns" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Data point content" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Copy" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Point" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Linestring" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Polygon" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometry" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Inner Ring" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Outer ring:" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Do you want to copy encryption key?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Encryption key" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Select referenced key" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Select Foreign Key" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Please select the primary key or a unique key!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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?" @@ -2314,92 +2318,92 @@ 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "Page name" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "Select page" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Unit" -#: js/messages.php:545 +#: js/messages.php:547 #, 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:546 +#: js/messages.php:548 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid page name" msgstr "Please enter a valid number!" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Edit or export relational schema" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Modifications have been saved" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Add an option for column \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d object(s) created." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Submit" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Press escape to cancel editing." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2407,15 +2411,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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Drag to reorder." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Click to sort results by this column." -#: js/messages.php:567 +#: js/messages.php:569 #, fuzzy #| msgid "" #| "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC." @@ -2428,26 +2432,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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Click to mark/unmark." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Double-click to copy column name." -#: js/messages.php:574 +#: js/messages.php:576 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Show all" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2455,128 +2459,128 @@ 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Original string" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Cancel" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Aborted" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Import defaults" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Log file threshold" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Select Tables" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Print" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Go to link:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Copy column name." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Generate password" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Generate" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "More" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Show Panel" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Hide Panel" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Show hidden navigation tree items." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Customize main panel" msgid "Link with main panel" msgstr "Customise main panel" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main panel" msgid "Unlink from main panel" msgstr "Customise main panel" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2586,31 +2590,31 @@ msgstr "" "upgrading. The newest version is %s, released on %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", latest stable version:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "up to date" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Create view" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Send error reports" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Submit Error Report" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2618,19 +2622,19 @@ msgstr "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Change Report Settings" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Show Report Details" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2638,7 +2642,7 @@ msgstr "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2647,69 +2651,69 @@ 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignore" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Show this query here again" -#: js/messages.php:700 +#: js/messages.php:702 #, 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:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Executed queries" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Table comments" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Hide search results" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2718,387 +2722,387 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Copy database to" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Add table prefix:" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Replace table prefix" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copy table with prefix" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Prev" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Next" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Today" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "January" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "February" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "March" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "April" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "May" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "June" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "July" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "August" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "September" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "October" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "November" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Dec" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Sunday" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Monday" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Tuesday" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Wednesday" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Thursday" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Friday" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Saturday" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sat" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Tu" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "We" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Th" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Hour" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minute" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Second" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Use text field" -#: js/messages.php:886 +#: js/messages.php:888 #, 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:889 #, 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:890 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date" msgstr "Please enter a valid number!" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date ( ISO )" msgstr "Please enter a valid number!" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Please enter a valid number!" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Please enter a valid number!" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "Please enter a valid length!" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter the same value again" msgstr "Please enter a valid number!" -#: js/messages.php:905 +#: js/messages.php:907 #, fuzzy #| msgid "Please enter correct captcha!" msgid "Please enter no more than {0} characters" msgstr "Please enter correct captcha!" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Please enter correct captcha!" msgid "Please enter at least {0} characters" msgstr "Please enter correct captcha!" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, 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:925 +#: js/messages.php:927 #, 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:930 +#: js/messages.php:932 #, 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:936 +#: js/messages.php:938 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date or time" msgstr "Please enter a valid number!" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Please enter a valid number!" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Error" @@ -3149,35 +3153,35 @@ msgstr "Unexpected characters on line %s." msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Existing configuration file (%s) is not readable." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Wrong permissions on configuration file, should not be world writeable!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Font size" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "subquery" msgid "Requery" msgstr "subquery" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3196,95 +3200,76 @@ msgid "Database" msgstr "Database" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Delete relation" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Delete relation" -msgstr[1] "Delete relation" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "shared" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "The bookmark has been deleted." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Delete relation" -#: libraries/Console.php:186 +#: libraries/Console.php:168 #, fuzzy #| msgid "Skip current error" msgid "During current session" msgstr "Skip current error" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "Explain SQL" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profiling" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Bookmark table" msgid "Bookmark" msgstr "Bookmark table" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query \"%s\" failed" msgid "Query failed" msgstr "Query \"%s\" failed" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "Query execution time" msgid "Queried time" msgstr "Query execution time" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "SQL Query box" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Clear" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "SQL history" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3302,183 +3287,183 @@ msgstr "SQL history" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Options" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Bookmark table" msgid "Bookmarks" msgstr "Bookmark table" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Debug SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute every" msgid "Press Ctrl+Enter to execute query" msgstr "Execute every" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute every" msgid "Press Enter to execute query" msgstr "Execute every" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Ascending" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Descending" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Order" msgid "Order:" msgstr "Order" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Count" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute every" msgid "Execution order" msgstr "Execute every" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Order" msgid "Order by:" msgstr "Order" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "SQL queries" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "SQL queries" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Show colour" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide Panel" msgid "Hide trace" msgstr "Hide Panel" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Count" msgid "Count:" msgstr "Count" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Refresh" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "And" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Delete relation" msgid "Add bookmark" msgstr "Delete relation" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label:" msgid "Label" msgstr "Label:" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Target database" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Delete relation" msgid "Share this bookmark" msgstr "Delete relation" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Reset to default" msgid "Set default" msgstr "Reset to default" -#: libraries/Console.php:381 +#: libraries/Console.php:363 #, fuzzy #| msgid "Always send error reports" msgid "Always expand query messages" msgstr "Always send error reports" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "SQL query history table" msgid "Show query history at start" msgstr "SQL query history table" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Switch to copied table" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Failed to read configuration file!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3486,19 +3471,19 @@ msgstr "" "The server is not responding (or the local server's socket is not correctly " "configured)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "The server is not responding." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Please check privileges of directory containing database." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Details…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "Connection for controluser as defined in your configuration failed." @@ -3815,7 +3800,7 @@ msgstr "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Your SQL query has been executed successfully." @@ -3941,15 +3926,15 @@ msgstr "File upload stopped by extension." msgid "Unknown error in file upload." msgstr "Unknown error in file upload." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Error while moving uploaded file." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -4015,8 +4000,8 @@ msgid "Keyname" msgstr "Keyname" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4066,13 +4051,13 @@ msgstr "Index %s has been dropped." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Drop" @@ -4172,7 +4157,7 @@ msgstr "Privileges" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operations" @@ -4187,7 +4172,7 @@ msgstr "Tracking" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4568,11 +4553,11 @@ msgstr "Error creating foreign key on %1$s (check data types)" msgid "No valid image path for theme %s found!" msgstr "No valid image path for theme %s found!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "No preview available." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "take it" @@ -4888,23 +4873,23 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Spatial" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Static data" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4915,38 +4900,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL said: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Explain SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Without PHP Code" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Submit Query" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Create PHP Code" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -5036,6 +5021,10 @@ msgstr "per hour" msgid "per day" msgstr "per day" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "shared" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Search:" @@ -5152,11 +5141,11 @@ msgstr "Add column" msgid "Attributes" msgstr "Attributes" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Failed to read configuration file!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -5164,31 +5153,31 @@ msgstr "" "This usually means there is a syntax error in it, please check any errors " "shown below." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Could not load default configuration from: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Invalid server index: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Invalid authentication method set in configuration:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5196,24 +5185,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Error: Token mismatch" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS overwrite attempt" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "possible exploit" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "numeric key detected" @@ -5962,13 +5951,13 @@ msgstr "Put columns names in the first row" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Columns enclosed with" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Columns escaped with" @@ -5986,12 +5975,12 @@ msgstr "Remove CRLF characters within columns" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Columns terminated with" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Lines terminated with" @@ -6587,7 +6576,7 @@ msgid "Column names in first row" msgstr "Column names in first row" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Do not import empty rows" @@ -8208,7 +8197,7 @@ msgid "Table %s has been emptied." msgstr "Table %s has been emptied." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "View %s has been dropped." @@ -8343,8 +8332,8 @@ msgid "No data to display" msgstr "No data to display" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8391,53 +8380,53 @@ msgstr[1] "The column name '%s' is a MySQL reserved keyword." msgid "No column selected." msgstr "No column selected." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "The columns have been moved successfully." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Query error" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Change" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Index" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spatial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Fulltext" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Distinct values" @@ -8447,7 +8436,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "The %s extension is missing. Please check your PHP configuration." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "No change" @@ -9279,56 +9268,56 @@ msgstr "MySQL returned an empty result set (i.e. zero rows)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Edit structure by following the \"Structure\" link." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Go to database: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Edit settings for %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Go to table: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Structure of %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Go to view: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9374,48 +9363,48 @@ msgstr "Or" msgid "web server upload directory:" msgstr "web server upload directory:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Edit/Insert" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Continue insertion with %s rows" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "and then" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Insert as new row" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Insert as new row and ignore errors" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Show insert query" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Go back to previous page" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Insert another new row" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Go back to this page" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Edit next row" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9424,7 +9413,7 @@ msgid "" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9436,11 +9425,11 @@ msgstr "" msgid "Value" msgstr "Value" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Showing SQL query" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserted row id: %1$d" @@ -10302,7 +10291,7 @@ msgstr "Repair table" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Delete data or table" @@ -10315,32 +10304,32 @@ msgid "Delete the table (DROP)" msgstr "Delete the table (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analyse" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Check" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimise" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Rebuild" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Repair" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10368,37 +10357,37 @@ msgstr "Remove partitioning" msgid "Check referential integrity:" msgstr "Check referential integrity:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Can't move table to same one!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Can't copy table to same one!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Table %s has been moved to %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Table %s has been copied to %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "The table name is empty!" @@ -10576,7 +10565,7 @@ msgstr "Data dump options" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dumping data for table" @@ -10600,21 +10589,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Table structure for table" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Structure for view" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Stand-in structure for view" @@ -10704,7 +10693,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Data:" @@ -10812,7 +10801,7 @@ msgid "Data creation options" msgstr "Data creation options" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Truncate table before insert" @@ -10899,7 +10888,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10945,52 +10934,52 @@ msgstr "in use" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Constraints for dumped tables" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Constraints for table" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indexes for dumped tables" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indexes for table" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT for dumped tables" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT for table" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Error reading data:" @@ -11022,7 +11011,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11045,15 +11034,15 @@ msgstr "" msgid "Column names: " msgstr "Column names: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Invalid parameter for CSV import: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -11062,18 +11051,18 @@ msgstr "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Invalid format of CSV input on line %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Invalid column count in CSV input on line %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "This plug-in does not support compressed imports!" @@ -11081,22 +11070,22 @@ msgstr "This plug-in does not support compressed imports!" msgid "MediaWiki Table" msgstr "MediaWiki Table" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Invalid format of mediawiki input on line:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "Import percentages as proper decimals (ex. 12.00% to .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Import currencies (ex. $5.00 to 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -11104,7 +11093,7 @@ msgstr "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Could not parse OpenDocument Spreadsheet!" @@ -11112,12 +11101,12 @@ msgstr "Could not parse OpenDocument Spreadsheet!" msgid "ESRI Shape File" msgstr "ESRI Shape File" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "There was an error importing the ESRI shape file: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -11125,12 +11114,12 @@ msgstr "" "You tried to import an invalid file or the imported file contains invalid " "data!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Spatial Extension does not support ESRI type \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "The imported file does not contain any data!" @@ -11142,7 +11131,7 @@ msgstr "SQL compatibility mode:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Do not use AUTO_INCREMENT for zero values" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14234,15 +14223,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14257,17 +14242,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14289,23 +14275,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "The number of tables that are open." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "The number of tables that are open." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14338,17 +14324,17 @@ msgstr "Event %1$s has been created." msgid "Variable name was expected." msgstr "Table name template" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "At Beginning of Table" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14371,19 +14357,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15080,7 +15066,7 @@ msgstr "View dump (schema) of table" msgid "Invalid table name" msgstr "Invalid table name" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16123,7 +16109,7 @@ msgid "at beginning of table" msgstr "At Beginning of Table" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16172,7 +16158,7 @@ msgstr "partitioned" msgid "Edit partitioning" msgstr "Remove partitioning" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Edit view" @@ -16299,11 +16285,11 @@ msgstr "VIEW name" msgid "Column names" msgstr "Column names" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Rename view to" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Delete the view (DROP)" @@ -17592,6 +17578,18 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert is set to 0" +#, fuzzy +#~| msgid "Delete relation" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Delete relation" +#~ msgstr[1] "Delete relation" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "The bookmark has been deleted." + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/eo.po b/po/eo.po index 689b193cb9..385cd05658 100644 --- a/po/eo.po +++ b/po/eo.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-12-29 15:34+0000\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: Esperanto " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Aldoni indekson" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Redakti indekson" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL-peto:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Y-valoroj" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Fermi" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Alia" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "," -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Konektoj / procezoj" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1090,155 +1093,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Konektoj" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Procezoj" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabelo(j)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Demandoj" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Agordoj" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1250,47 +1253,47 @@ msgstr "" msgid "None" msgstr "Neniu" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1298,136 +1301,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Ŝanĝi agordojn" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Nunaj agordoj" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1435,7 +1438,7 @@ msgstr "" msgid "Status" msgstr "Stato" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1445,82 +1448,82 @@ msgstr "Stato" msgid "Time" msgstr "Tempo" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabelo" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1529,63 +1532,63 @@ msgstr "" msgid "Import" msgstr "Importi" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Analizi peton" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Problemo" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Testi" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1597,60 +1600,60 @@ msgstr "" msgid "Cancel" msgstr "Nuligi" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Apliki" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1660,55 +1663,55 @@ msgstr "" msgid "OK" msgstr "Bone" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1724,44 +1727,44 @@ msgstr "" msgid "Export" msgstr "Eksporti" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Valoroj por la kolumno %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Valoroj por nova kolumno" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Aldoni %d valoro(j)" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1771,7 +1774,7 @@ msgstr "" msgid "Edit" msgstr "Redakti" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1782,164 +1785,164 @@ msgstr "Redakti" msgid "Delete" msgstr "Forigi" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Elekti" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Ĉu vi certas?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Daŭrigi" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Farita" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Paŝo" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -1949,368 +1952,368 @@ msgstr "" msgid "Save" msgstr "Konservi" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Minimuma valoro:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Maksimuma valoro:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignori" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Kopii" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Punkto" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometrio" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Ĉifroŝlosilo" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Elekti fremdan ŝlosilon" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Konservi paĝon" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Konservi paĝon kiel" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Malfermi paĝon" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Forigi paĝon" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sentitola" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "nuligi" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Presi" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Generi pasvorton" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Generi" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2318,105 +2321,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2425,349 +2428,349 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 msgid "Copy tables to" msgstr "" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "hodiaŭ" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "januaro" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "februaro" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "marto" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "aprilo" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "majo" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "junio" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "julio" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "aŭgusto" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "septembro" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "oktobro" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "novembro" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "decembro" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "aŭg" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "dec" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "dimanĉo" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "lundo" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "mardo" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "merkredo" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "ĵaŭdo" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "vendredo" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "sabato" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "dim" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "lun" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "mar" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "mer" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "ĵaŭ" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "ven" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "sab" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "di" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "lu" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "ma" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "me" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "ĵa" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "ve" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "neniu" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Horo" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minuto" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Sekundo" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Eraro" @@ -2817,32 +2820,32 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Tipara grando" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Maletendi" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Etendi" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Repeti" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2862,76 +2865,59 @@ msgstr "Datumbazo" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Legosigno" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Konzolo" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Vakigi" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Historio" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -2949,157 +2935,157 @@ msgstr "Historio" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Opcioj" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Legosignoj" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Aldoni" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Aldoni legosignon" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Konigi ĉi tiun legosignon" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Detaloj…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3410,7 +3396,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3527,15 +3513,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3599,8 +3585,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3650,13 +3636,13 @@ msgstr "" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Forigi" @@ -3754,7 +3740,7 @@ msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operacioj" @@ -3769,7 +3755,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4140,11 +4126,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -4407,21 +4393,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Maksimuma: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Statika analizo:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4432,32 +4418,32 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL diris: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Krei PHP-kodon" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" @@ -4545,6 +4531,10 @@ msgstr "" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Serĉi:" @@ -4649,41 +4639,41 @@ msgstr "Aldoni novan kolumnon" msgid "Attributes" msgstr "Atributoj" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Servilo %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4691,24 +4681,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5365,13 +5355,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5389,12 +5379,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -5951,7 +5941,7 @@ msgid "Column names in first row" msgstr "" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -7333,7 +7323,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "" @@ -7463,8 +7453,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7502,52 +7492,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Ŝanĝi" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indekso" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7557,7 +7547,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8276,54 +8266,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8369,53 +8359,53 @@ msgstr "Aŭ" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8427,11 +8417,11 @@ msgstr "" msgid "Value" msgstr "Valoro" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9251,7 +9241,7 @@ msgstr "Ripari tabelon" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9264,32 +9254,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analizi" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Ripari" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9315,35 +9305,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9512,7 +9502,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9536,21 +9526,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9640,7 +9630,7 @@ msgid "Database:" msgstr "Datumbazo:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Datumoj:" @@ -9732,7 +9722,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9801,7 +9791,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9843,52 +9833,52 @@ msgstr "" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Limigoj por tabelo" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -9918,7 +9908,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -9936,33 +9926,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -9970,28 +9960,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "MediaVikio-tabelo" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -9999,23 +9989,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10027,7 +10017,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -12728,15 +12718,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "" @@ -12749,17 +12735,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "" @@ -12777,19 +12764,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "" @@ -12815,15 +12802,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12844,15 +12831,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13510,7 +13497,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14409,7 +14396,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14442,7 +14429,7 @@ msgstr "" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14557,11 +14544,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/es.po b/po/es.po index 32c45a0f5b..0fe79c325b 100644 --- a/po/es.po +++ b/po/es.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-14 14:56+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Spanish " -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1012,160 +1016,160 @@ msgstr "" "¿Seguro que desea cambiar todas las columnas de intercalaciones y convertir " "los datos?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Guardar y Cerrar" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Reiniciar" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Reiniciar Todo" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "¡Falta un valor en el formulario!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "¡Seleccione al menos una de estas opciones!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "¡Introduzca un número válido!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "¡Introduzca una longitud válida!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Agregar índice" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Editar Índice" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Agregar %s columna(s) al índice" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Crear índice de una sola columna" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Crear índice compuesto" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Componer con:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Seleccione la(s) columna(s) para el índice." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Debe agregar al menos una columna." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Previsualizar SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Simular consulta" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Filas encontradas:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "consulta SQL:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Valores Y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "¡El nombre del servidor está vacío!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "¡El nombre de usuario está vacío!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "¡La contraseña está vacía!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "¡Las contraseñas no coinciden!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Eliminando los usuarios seleccionados" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Cerrar" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Plantilla creada." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Plantilla cargada." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Plantilla actualizada." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Plantilla borrada." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Otro" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Conexiones / Procesos" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "¡Configuración local de monitorización incompatible!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1177,158 +1181,158 @@ msgstr "" "monitorización. Es probable que la configuración no funcione. Reinicie la " "configuración a la predeterminada en el menú Configuración." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Eficiencia del caché de consultas" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Uso del caché de consultas" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Caché de consultas utilizado" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Uso de CPU del sistema" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Memoria de sistema" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Intercambio de sistema" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Carga promedio" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Memoria total" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Memoria caché" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Memoria de búfers" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Memoria libre" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Memoria utilizada" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Intercambio Total" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Intercambio en Caché" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Intercambio Utilizado" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Intercambio Libre" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Bytes enviados" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Bytes recibidos" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Conexiones" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Procesos" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" # singular: tabla # plural: tablas -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabla(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Preguntas" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Tráfico" # This is the text showed in the tab -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Configuración" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Agregar gráfico a la grilla" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "¡Introduzca una longitud válida!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1340,47 +1344,47 @@ msgstr "¡Introduzca una longitud válida!" msgid "None" msgstr "Ninguna" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Reanudar monitorización" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Pausar monitorización" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Iniciar refresco automático" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Detener refresco automático" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "«general_log» y «slow_query_log» activos." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "«general_log» activo." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "«slow_query_log» activo." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "«slow_query_log» y «general_log» desactivados." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "«log_output» no está definido como TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "«log_output» está definido como TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1391,12 +1395,12 @@ msgstr "" "más de %d segundos. Es recomendable configurar «long_query_time» entre 0 y 2 " "segundos dependiendo del equipo." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "«long_query_time» está configurado a %d segundo(s)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1405,30 +1409,30 @@ msgstr "" "valores predeterminados al reiniciar el servidor:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Configurar «log_output» a %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Habilitar %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Deshabilitar %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Definir «long_query_time» a %d segundos." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1436,59 +1440,59 @@ msgstr "" "No posee permisos para cambiar estas variables. Inicie sesión con la cuenta " "root o contacte a su administrador de base de datos." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Cambiar configuraciones" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Configuraciones actuales" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Título del gráfico" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Diferencial" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Dividido por %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Unidad" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Del registro de consultas lentas" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Del registro general" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" "Se desconoce el nombre de la base de datos para esta consulta en los " "registros del servidor." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Analizando registros" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Analizando y cargando registros. Esto puede demorar." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Cancelar petición" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1499,7 +1503,7 @@ msgstr "" "agrupar, por lo que los demás atributos de las consultas como el tiempo de " "inicio podría diferir." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1508,34 +1512,34 @@ msgstr "" "Dado que se eligió agrupar consultas INSERT, las consultas INSERT a la misma " "tabla también fueron agrupadas sin importar los datos agregados." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Los datos del registros fueron cargados. Consultas ejecutadas en este " "período de tiempo:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Saltar a la tabla de registros" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "No se encontraron datos" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Registros analizados, pero no se encontraron datos en este período de tiempo." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analizando…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Explicar salida" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1543,7 +1547,7 @@ msgstr "Explicar salida" msgid "Status" msgstr "Estado actual" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1553,58 +1557,58 @@ msgstr "Estado actual" msgid "Time" msgstr "Tiempo" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Tiempo total:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Perfilando resultados" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabla" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Gráfico" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Opciones de filtros para tablas de registros" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filtrar" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filtrar consultas por palabra/expresión regular:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Agrupar consultas ignorando datos variables en sentencias WHERE" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Suma de filas agrupadas:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Total:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Cargando registros" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Falló la actualización del monitorizador" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1614,28 +1618,28 @@ msgstr "" "es probablemente porque expiró la sesión. Cargar la página nuevamente y " "volver a introducir sus credenciales debería ayudar." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Cargar página nuevamente" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Filas afectadas:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "No se pudo analizar el archivo de configuración. No parece ser código JSON " "válido." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "No se pudo crear la grilla de gráficos con la configuración importada. " "Reiniciando a configuración predeterminada…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1644,65 +1648,65 @@ msgstr "" msgid "Import" msgstr "Importar" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Importar configuración" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Seleccione el archivo que desea importar." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "¡No existen archivos disponibles en el servidor para importar!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Analizar Consulta" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Sistema de consejos" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Posibles problemas de performance" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Problema" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Recomendación" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Detalles de la regla" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Justificación" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Variable/fórmula utilizada" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Prueba" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Formato SQL…" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "¡Parámetros incorrectos!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1714,60 +1718,60 @@ msgstr "¡Parámetros incorrectos!" msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Ajustes de página relacionada" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Aplicar" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Cargando…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "¡¡Petición Abortada!!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "Procesando petición" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "¡¡Petición Fallida!!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Error al procesar la petición" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Código de error: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Texto de error: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "No se seleccionaron bases de datos." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Eliminando columna" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Añadiendo clave primaria" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1777,56 +1781,56 @@ msgstr "Añadiendo clave primaria" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Pulse para descartar esta notificación" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Renombrando bases de datos" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Copiando base de datos" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Cambiando el juego de caracteres" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Habilite la revisión de las claves foráneas" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "No se pudo obtener la cantidad de filas real." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Buscando" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Ocultar resultados de búsqueda" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Mostrar resultados de búsqueda" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Examinando" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Borrando" -#: js/messages.php:391 +#: js/messages.php:393 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:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1842,45 +1846,45 @@ msgstr "" msgid "Export" msgstr "Exportar" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "Editor de ENUM/SET" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Valores para la columna %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Valores para una nueva columna" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Introducir cada valor en un campo separado." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Agregar %d valor(es)" -#: js/messages.php:403 +#: js/messages.php:405 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:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Ocultar ventana de consultas SQL" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Mostrar ventana de consultas SQL" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1890,7 +1894,7 @@ msgstr "Mostrar ventana de consultas SQL" msgid "Edit" msgstr "Editar" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1901,41 +1905,41 @@ msgstr "Editar" msgid "Delete" msgstr "Borrar" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 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:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Mostrar los valores foráneos" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Sin consultas almacenadas automáticamente" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Variable %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Elegir" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Selección de columnas" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Buscar en esta lista" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1945,15 +1949,15 @@ msgstr "" "columnas para la base de datos %s tenga columnas que no estén en la tabla " "actual." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Más" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "¿Está seguro?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1961,51 +1965,51 @@ msgstr "" "Esta acción puede cambiar la definición de algunas columnas.
¿Está " "seguro que desea continuar?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Continuar" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Agregar clave primaria" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Se agregó la clave primaria." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Llevándolo al siguiente paso…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Final de los pasos" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Segundo paso de normalización (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Terminado" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Confirmar dependencias parciales" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Las dependencias parciales seleccionadas son:" -#: js/messages.php:444 +#: js/messages.php:446 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2013,21 +2017,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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "¡No se seleccionaron dependencias parciales!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Esconder lista de dependencias parciales" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2035,41 +2039,41 @@ msgstr "" "¡Paciencia! Puede tomar unos segundos, dependiendo del tamaño de los datos y " "la cantidad de columnas de la tabla." -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Paso" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Se realizarán las siguientes acciones:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "Eliminar columnas %s de la tabla %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Crear la siguiente tabla" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Tercer paso de la normalización (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Confirmar dependencias transitivas" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Las dependencias seleccionadas son:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "¡No se seleccionaron dependencias!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2079,124 +2083,124 @@ msgstr "¡No se seleccionaron dependencias!" msgid "Save" msgstr "Guardar" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Ocultar criterio de búsqueda" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Mostrar criterio de búsqueda" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Búsqueda por rango" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Máximo de las columnas:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Mínimo de las columnas:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Valor mínimo:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Valor máximo:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Ocultar criterio de búsqueda y reemplazo" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Mostrar criterio de búsqueda y reemplazo" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Cada punto representa una fila de datos." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Ubicar el cursor sobre un punto mostrará su etiqueta." -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Para ampliar, seleccione el gráfico." -#: js/messages.php:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Seleccionar dos columnas" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Seleccionar dos columnas distintas" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Contenido del punto de datos" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Copiar" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Punto" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Cadena de líneas" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Polígono" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometría" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "Círculo interior" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Círculo exterior" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "¿Desea copiar la llave de cifrado?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Llave de cifrado" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2204,24 +2208,24 @@ msgstr "" "Indica que ha realizado cambios en esta página; se le pedirá confirmación " "antes de abandonar los cambios" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Seleccione la clave referenciada" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Seleccione la clave foránea" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "¡Seleccione la clave primaria o una clave única!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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?" @@ -2229,76 +2233,76 @@ msgstr "" "No se guardaron los cambios en la disposición. Serán perdidos si no los " "guardas. ¿Deseas continuar?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Nombre de página" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Guardar página" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Abrir página" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Borrar página" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sin título" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Seleccione una página para continuar" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Introduzca un nombre de página válido" -#: js/messages.php:548 +#: js/messages.php:550 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:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Página eliminada exitosamente" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Exportar esquema relacional" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Se han guardado las modificaciones" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Añadir una opción para la columna «%s»." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d objeto(s) creado(s)." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Enviar" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Presione la tecla de escape para cancelar la edición." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2306,15 +2310,15 @@ msgstr "" "Editó datos que no fueron guardados. ¿Está seguro que desea abandonar esta " "página sin guardar los datos?" -#: js/messages.php:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Arrastrar para reordenar." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Pulse para ordenar los resultados según esta columna." -#: js/messages.php:567 +#: js/messages.php:569 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 " @@ -2324,28 +2328,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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Pulsar para marcar/desmarcar." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Haga doble click para copiar el nombre de la columna." -#: js/messages.php:574 +#: js/messages.php:576 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Mostrar todo" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2354,13 +2358,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:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2368,106 +2372,106 @@ msgstr "" "¿Realmente desea ver todas las filas? Una tabla grande podría afectar el " "funcionamiento del navegador." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Longitud original" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "cancelar" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Abortado" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Éxito" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Estado de la importación" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Suelte aquí los archivos" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Seleccionar base de datos primero" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Imprimir" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Ir al enlace:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Copie el nombre de la columna." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Generar contraseña" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Generar" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Más" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Mostrar panel" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Ocultar panel" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Mostrar los elementos escondidos del árbol de navegación." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Enlace al panel principal" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Deshacer enlace en el panel principal" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2477,42 +2481,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:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", versión estable más reciente:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "actualizada" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Crear vista" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Enviar informe de error" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Enviar informe de error" -#: js/messages.php:656 +#: js/messages.php:658 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:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Cambiar configuraciones del informe" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Mostrar detalles del informe" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2520,7 +2524,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:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2530,59 +2534,59 @@ msgstr "" "enviarlo se podrían ignorar algunos campos debido a la configuración " "«max_input_vars» de PHP." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "¡Se detectaron algunos errores en el servidor!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Revise el pie de esta ventana." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Ignorar todos" -#: js/messages.php:688 +#: js/messages.php:690 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:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "¿Ejecutar esta consulta nuevamente?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "¿Realmente desea eliminar este favorito?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "Ocurrió un error al obtener información de depuración SQL." -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s consultas ejecutadas %s veces en %s segundos." -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "%s argumento(s) correcto(s)" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Mostrar argumentos" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Ocultar argumentos" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Tiempo necesario:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2591,355 +2595,355 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Copiar base de datos a" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Agregar prefijo a la tabla:" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Reemplazar prefijo de la tabla" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copiar tabla con prefijo" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Siguiente" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Hoy" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Enero" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Febrero" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Marzo" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Abril" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Mayo" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Junio" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Julio" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Agosto" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Septiembre" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Octubre" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Noviembre" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Diciembre" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Ene" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Dic" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Lunes" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Martes" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Miércoles" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Jueves" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Viernes" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Jue" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Vie" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Ju" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Vi" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Hora" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minuto" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Segundo" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Este campo es requerido" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Corrige este campo" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Ingrese un correo electrónico válido" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Ingrese una URL válida" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Ingrese una fecha válida" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Ingrese una fecha ( ISO ) válida" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Ingrese un número válido" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Ingrese un número de tarjeta de crédito valido" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Ingrese solo dígitos" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Ingrese el mismo valor de nuevo" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Ingrese no más de {0} caracteres" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Ingrese al menos {0} caracteres" -#: js/messages.php:915 +#: js/messages.php:917 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:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Ingrese un valor entre {0} y {1}" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "Ingrese un valor menor o igual a {0}" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "Ingrese un valor mayor o igual a {0}" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Ingrese una fecha u hora válida" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Ingrese una entrada HEX válida" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Error" @@ -2993,34 +2997,34 @@ msgstr "" "Caracter inesperado en la línea %1$s. Se esperaba una tabulación pero se " "encontró «%2$s»." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "El archivo de configuración existente (%s) no pudo ser leído." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permisos incorrectos en el archivo de configuración ¡cualquiera no debería " "poder modificarlo!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Tamaño de fuente" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Colapsar" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Expandir" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Reconsultar" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3040,76 +3044,59 @@ msgstr "Base de datos" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Total de %d favorito" -msgstr[1] "Total de %d favoritos" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "privado" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "compartido" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s y %3$s favoritos incluidos" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Ningún favorito" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "durante la sesión actual" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Explicar" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Perfilando" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Agregar a favoritos" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Falló la consulta" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Fecha y hora la consulta" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "Consola de consultas SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Consola" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Limpiar" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Historial" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3127,125 +3114,125 @@ msgstr "Historial" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Opciones" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Favoritos" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Depuración SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Presione Ctrl+Enter para ejecutar la consulta" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Presione Enter para ejecutar la consulta" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "ascendente" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "descendente" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Orden:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Cantidad" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Orden de ejecución" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Tiempo necesario" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Ordenar por:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Consultas grupales" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Desagrupar las consultas" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Mostrar rastro" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Ocultar rastro" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Cantidad:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Actualizar" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Agregar" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Agregar favorito" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Etiqueta" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Base de datos de destino" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Compartir favorito" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Definir predeterminado" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Siempre expandir mensajes de consultas" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Mostrar histórico de consultas al iniciar" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Mostrar consulta actual" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3253,17 +3240,17 @@ msgstr "" "Ejecute consultas con Enter e introduce la nueva línea con Shift + Enter. " "Para que esto permanezca, vea la configuración." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Cambiar al tema oscuro" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "¡No se pudo leer el archivo de configuración!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3271,19 +3258,19 @@ msgstr "" "El servidor no está respondiendo (o el zócalo local al servidor MySQL no " "está configurado correctamente)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "El servidor no está respondiendo." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Revisa los permisos del directorio que contiene la base de datos." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Detalles…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "La conexión para controluser, como está definida en su configuración, " @@ -3598,7 +3585,7 @@ msgstr "Podría ser aproximado. Ver [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Su consulta se ejecutó con éxito." @@ -3721,17 +3708,17 @@ msgstr "La subida del archivo fue detenida por extensión." msgid "Unknown error in file upload." msgstr "Error desconocido al subir el archivo." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Se detectó un error al mover el archivo subido, ver [doc@faq1-11]FAQ 1.11[/" "doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Error al mover el archivo subido." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "No se pudo leer el archivo subido." @@ -3795,8 +3782,8 @@ msgid "Keyname" msgstr "Nombre de la clave" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3846,13 +3833,13 @@ msgstr "El índice %s ha sido eliminado." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Eliminar" @@ -3954,7 +3941,7 @@ msgstr "Privilegios" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operaciones" @@ -3969,7 +3956,7 @@ msgstr "Seguimiento" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4350,11 +4337,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "¡No se encontró la ruta de imágenes para el tema %s!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "No existe una previsualización disponible." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "tómelo" @@ -4683,21 +4670,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Espacial" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Máximo: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Análisis estático:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "Se encontraron %d errores durante el análisis." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4708,36 +4695,36 @@ msgstr "Se encontraron %d errores durante el análisis." msgid "MySQL said: " msgstr "MySQL ha dicho: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Omitir la explicación del SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "Analice Explicar en %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Sin código PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Ejecutar la consulta" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Crear código PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Editar en línea" @@ -4827,6 +4814,10 @@ msgstr "por hora" msgid "per day" msgstr "por día" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "compartido" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Buscar:" @@ -4935,11 +4926,11 @@ msgstr "Añadir columna nueva" msgid "Attributes" msgstr "Atributos" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "¡No se pudo leer el archivo de configuración!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4947,33 +4938,33 @@ msgstr "" "Esto generalmente significa que tiene un error de sintáxis, revisa los " "errores que se muestran a continuación." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "No se pudo cargar la configuración predeterminada desde: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Índice de servidor inválido: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "El nombre del host no es válido para el servidor %1$s. Revise su " "configuración." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Servidor %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Método de autenticación no válido definido en la configuración:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4985,24 +4976,24 @@ msgstr "" "phpMyAdmin utiliza actualmente la zona horaria predeterminada del servidor " "de la base de datos." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format 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:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Error: no coincide un «token»" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "intento de sobre-escritura de la variable GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "posible aprovechamiento" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "telado numérico detectado" @@ -5757,13 +5748,13 @@ msgstr "Poner los nombres de campo en la primera fila" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Columnas encerradas entre" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Caracter de escape de columnas" @@ -5781,12 +5772,12 @@ msgstr "Eliminar los caracteres CRLF en las columnas" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Columnas terminadas con" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Líneas terminadas en" @@ -6380,7 +6371,7 @@ msgid "Column names in first row" msgstr "Nombres de columna en la primera fila" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "No importar filas vacías" @@ -7966,7 +7957,7 @@ msgid "Table %s has been emptied." msgstr "Se ha vaciado la tabla %s." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Se descartó la vista %s." @@ -8101,8 +8092,8 @@ msgid "No data to display" msgstr "No hay datos para mostrar" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8140,53 +8131,53 @@ msgstr[1] "Los nombres «%s» es una palabra clave reservada de MySQL." msgid "No column selected." msgstr "No se seleccionaron columnas." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Las columnas fueron movidas exitosamente." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Errores de consulta" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Cambiar" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Índice" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Espacial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Texto completo" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Valores distintos" @@ -8196,7 +8187,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "No se encontró la extensión %s. Revisa la configuración PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Sin cambios" @@ -9009,56 +9000,56 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "[Ocurrió un ROLLBACK.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Edite la estructura siguiendo el enlace \"Estructura\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Ir a la base de datos: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Editar configuración de %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Ir a la tabla: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Estructura de %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Ir a la vista: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9106,48 +9097,48 @@ msgstr "O" msgid "web server upload directory:" msgstr "directorio en el servidor web para subir los archivos:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Editar/Insertar" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuar inserción con %s filas" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "y luego" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Insertar como una nueva fila" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Agregar como nueva fila e ignorar errores" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Mostrar consulta de inserción" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Volver" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Insertar un nuevo registro" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Volver a esta página" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Editar la siguiente fila" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9157,7 +9148,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9169,11 +9160,11 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Mostrando la consulta SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "La Id de la fila insertada es: %1$d" @@ -10059,7 +10050,7 @@ msgstr "Reparar la tabla" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Borrar datos o tabla" @@ -10072,32 +10063,32 @@ msgid "Delete the table (DROP)" msgstr "Borrar la tabla (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analice" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Revise" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimice" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Reconstruya" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Repare" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Truncar" @@ -10123,35 +10114,35 @@ msgstr "Remueva la partición" msgid "Check referential integrity:" msgstr "Comprobar la integridad referencial:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "¡No es posible mover la tabla a la misma!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "¡No es posible copiar la tabla a la misma!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "La tabla %s se movió a %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "La tabla %s se copió a %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "¡El nombre de la tabla está vacío!" @@ -10334,7 +10325,7 @@ msgstr "Opciones para volcado de datos" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Volcado de datos para la tabla" @@ -10358,21 +10349,21 @@ msgstr "Definición" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Estructura de tabla para la tabla" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Estructura para la vista" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Estructura Stand-in para la vista" @@ -10462,7 +10453,7 @@ msgid "Database:" msgstr "Base de datos:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Datos:" @@ -10565,7 +10556,7 @@ msgid "Data creation options" msgstr "Opciones de creación de datos" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Truncar tablas antes de insertar" @@ -10651,7 +10642,7 @@ msgstr "Parece que su base de datos utiliza funciones;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" "exportar los alias no podría funcionar correctamente en todos los casos." @@ -10696,52 +10687,52 @@ msgstr "en uso" msgid "It appears your database uses views;" msgstr "Parece que su base de datos utiliza vistas;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Restricciones para tablas volcadas" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Filtros para la tabla" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Índices para tablas volcadas" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indices de la tabla" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT de las tablas volcadas" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT de la tabla" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "TIPOS MIME PARA LA TABLA" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELACIONES PARA LA TABLA" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Parece que su tabla utiliza disparadores («triggers»);" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Error leyendo datos:" @@ -10773,7 +10764,7 @@ msgstr "" "DUPLICATE KEY UPDATE)" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10797,15 +10788,15 @@ msgstr "" msgid "Column names: " msgstr "Nombre de las columnas: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Parámetro no válido para importar CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10815,18 +10806,18 @@ msgstr "" "están escritos correctamente, separados por comas y no encerrados entre " "comillas." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "El formato de los datos CSV en la línea %d no es válido." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "El número de columnas de los datos CSV en la línea %d no es válido." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "¡Este plugin no tiene soporte para importaciones comprimidas!" @@ -10834,24 +10825,24 @@ msgstr "¡Este plugin no tiene soporte para importaciones comprimidas!" msgid "MediaWiki Table" msgstr "Tabla MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "El formato de los datos mediawiki no es válido en la línea:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" "Importar porcentakes como decimales propios (por ejemplo: 12.00% " "como .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importar monedas (por ejemplo: $5.00 como 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10859,7 +10850,7 @@ msgstr "" "El archivo XML especificado estaba incompleto o mal formado. Corrija el " "problema e intente nuevamente." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "¡No se pudo procesar la hoja de cálculo Open Document!" @@ -10867,12 +10858,12 @@ msgstr "¡No se pudo procesar la hoja de cálculo Open Document!" msgid "ESRI Shape File" msgstr "Archivo de forma ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Hubo un error importando el archivo de forma ESRI: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10880,12 +10871,12 @@ msgstr "" "¡Intentó importar un archivo no válido o el archivo importado contiene datos " "inválidos!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "La extensión espacial MySQL no soporta el tipo ESRI \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "¡El archivo importado no contiene datos!" @@ -10899,7 +10890,7 @@ msgstr "Modalidad SQL compatible:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "No utilizar AUTO_INCREMENT con el valor 0" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13989,15 +13980,11 @@ msgid "An opening bracket followed by a set of values was expected." msgstr "" "Se esperaba un corchete de apertura seguido por un conjunto de valores." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "Se esperaba un corchete de apertura." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "Se esperaba una coma o un corchete de cierre" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Se esperaba una coma o un corchete de cierre." @@ -14010,17 +13997,18 @@ msgstr "Se esperaba un corchete de cierre." msgid "Unrecognized data type." msgstr "Tipo de dato desconocido." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Se encontró anteriormente un alias." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Punto inesperado." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Se esperaba un alias." @@ -14038,19 +14026,19 @@ msgstr "Se espera un desplazamiento." msgid "This option conflicts with \"%1$s\"." msgstr "Esta opción tiene conflictos con \"%1$s\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Se esperaba el nombre anterior de la tabla." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Se esperaba la palabra clave \"TO\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Se esperaba el nuevo nombre de la tabla." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Se esperaba un cambio de nombre." @@ -14076,15 +14064,15 @@ 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:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Comienzo inesperado de declaración." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Tipo de declaración desconocida." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Ninguna operación se inició anteriormente." @@ -14107,15 +14095,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Palabra clave no reconocida." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Se esperaba el nombre de la entidad." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Se esperaba una palabra \"RETURNS\"." @@ -14811,7 +14799,7 @@ msgstr "Mostrar volcado (esquema) de la tabla" msgid "Invalid table name" msgstr "El nombre de la tabla no es válido" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Fila: %1$s, Columna: %2$s, Error: %3$s" @@ -15774,7 +15762,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:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Particiones" @@ -15813,7 +15801,7 @@ msgstr "Dividido por:" msgid "Edit partitioning" msgstr "Remueva la partición" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Editar vista" @@ -15932,11 +15920,11 @@ msgstr "VER nombre" msgid "Column names" msgstr "Nombre de las columnas" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Cambiar el nombre de la vista a" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Borrar la vista (DROP)" @@ -17261,6 +17249,20 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "«concurrent_insert» está definido como 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Total de %d favorito" +#~ msgstr[1] "Total de %d favoritos" + +#~ msgid "private" +#~ msgstr "privado" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s y %3$s favoritos incluidos" + +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Se esperaba una coma o un corchete de cierre" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/et.po b/po/et.po index d3caf307f4..322e39570b 100644 --- a/po/et.po +++ b/po/et.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-02-08 14:54+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" @@ -51,7 +51,7 @@ msgid "Table comments:" msgstr "Tabeli kommentaarid:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -105,7 +105,7 @@ msgstr "Tüüp" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -167,16 +167,16 @@ msgid "Comments" msgstr "Kommentaarid" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Primaarne" -#: db_datadict.php:165 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:376 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:141 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:446 @@ -200,17 +200,17 @@ msgstr "Primaarne" msgid "No" msgstr "Ei" -#: db_datadict.php:165 js/messages.php:519 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:521 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:143 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -264,7 +264,7 @@ msgstr "Tabelid" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -409,23 +409,23 @@ msgid "Point:" msgstr "Punkt:" #: gis_data_editor.php:216 gis_data_editor.php:243 gis_data_editor.php:299 -#: gis_data_editor.php:372 js/messages.php:508 +#: gis_data_editor.php:372 js/messages.php:510 msgid "X" msgstr "X" #: gis_data_editor.php:219 gis_data_editor.php:247 gis_data_editor.php:303 -#: gis_data_editor.php:378 js/messages.php:509 +#: gis_data_editor.php:378 js/messages.php:511 msgid "Y" msgstr "Y" #: gis_data_editor.php:241 gis_data_editor.php:297 gis_data_editor.php:370 -#: js/messages.php:511 +#: js/messages.php:513 #, php-format msgid "Point %d" msgstr "Punkt %d" #: gis_data_editor.php:254 gis_data_editor.php:310 gis_data_editor.php:388 -#: js/messages.php:517 +#: js/messages.php:519 msgid "Add a point" msgstr "Lisa punkt" @@ -447,7 +447,7 @@ msgstr "Sisemine ring %d:" msgid "Add a linestring" msgstr "Lisa rea sõne" -#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:518 +#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:520 msgid "Add an inner ring" msgstr "Lisa sisemine ring" @@ -464,12 +464,12 @@ msgstr "Lisa hulktahukas" msgid "Add geometry" msgstr "Lisa geomeetria" -#: gis_data_editor.php:411 js/messages.php:349 libraries/DbSearch.php:463 +#: gis_data_editor.php:411 js/messages.php:351 libraries/DbSearch.php:463 #: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:139 #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -499,7 +499,7 @@ msgstr "Lisa geomeetria" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Mine" @@ -519,7 +519,7 @@ msgstr "" msgid "Succeeded" msgstr "Õnnestus" -#: import.php:58 js/messages.php:592 +#: import.php:58 js/messages.php:594 msgid "Failed" msgstr "Nurjus" @@ -527,7 +527,7 @@ msgstr "Nurjus" msgid "Incomplete params" msgstr "Puudulikud parameetrid" -#: import.php:184 +#: import.php:185 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -536,15 +536,15 @@ msgstr "" "Tõenäoliselt üritasid üles laadida liiga suurt faili. Palun loe " "%sdokumentatsioonist%s, kuidas sellest piirangust vabaneda." -#: import.php:360 import.php:665 +#: import.php:361 import.php:666 msgid "Showing bookmark" msgstr "Näitan järjehoidjat" -#: import.php:376 import.php:661 +#: import.php:377 import.php:662 msgid "The bookmark has been deleted." msgstr "Järjehoidja on kustutatud." -#: import.php:474 +#: import.php:475 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -553,12 +553,12 @@ msgstr "" "Üleslaaditud faili ei saa teisaldada, sest PHP säte open_basedir on aktiivne " "ja puudub ligipääs (ajutiste failide) kataloogi %s." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:491 import.php:568 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "Faili ei saanud lugeda!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:502 import.php:517 import.php:542 import.php:557 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -567,7 +567,7 @@ msgstr "" "Üritasid laadida mittetoetatava tihendamisega faili (%s). Selle tugi on pole " "loodud või on seadistuses keelatud." -#: import.php:574 +#: import.php:575 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -577,22 +577,25 @@ msgstr "" "maht ületab sinu PHP seadistuses lubatud maksimaalset mahtu. Vaata " "[doc@faq1-16]KKK 1.16[/doc]." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:627 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "" "Ei saanud importimise pluginaid laadida, palun kontrolli oma paigaldust!" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:669 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "Loodi järjehoidja %s." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "Importimine lõpetati edukalt, teostati %d päringut." +#: import.php:679 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "Importimine lõpetati edukalt, teostati %d päringut." +msgstr[1] "Importimine lõpetati edukalt, teostati %d päringut." -#: import.php:705 +#: import.php:710 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -601,7 +604,7 @@ msgstr "" "Ületati skripti ooteaeg. Kui tahad importimise lõpetada, siis palun %ssaada " "fail uuesti%s ja importimine jätkub poolelijäänud kohast." -#: import.php:715 +#: import.php:720 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -614,8 +617,8 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Importimise edenemise laadimine nurjus." -#: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: import_status.php:116 js/messages.php:450 js/messages.php:602 +#: libraries/Util.php:795 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Tagasi" @@ -638,7 +641,7 @@ msgstr "" msgid "General settings" msgstr "Üldised sätted" -#: index.php:191 js/messages.php:625 +#: index.php:191 js/messages.php:627 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:287 msgid "Change password" @@ -710,10 +713,11 @@ msgstr "Näita PHP teavet" msgid "Version information:" msgstr "Versiooniinfo:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:442 libraries/Util.php:509 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentatsioon" @@ -841,96 +845,96 @@ msgstr "" "Server töötab koos Suhosin'iga. Võimalike probleemide kohta loe " "%sdokumentatsioonist%s." -#: js/messages.php:39 libraries/import.lib.php:207 sql.php:161 +#: js/messages.php:41 libraries/import.lib.php:207 sql.php:161 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" käsud on keelatud." -#: js/messages.php:45 +#: js/messages.php:47 msgid "Confirm" msgstr "Kinnita" -#: js/messages.php:46 +#: js/messages.php:48 #, php-format msgid "Do you really want to execute \"%s\"?" msgstr "Kas tõesti tahad käivitada \"%s\"?" -#: js/messages.php:48 libraries/mult_submits.lib.php:440 +#: js/messages.php:50 libraries/mult_submits.lib.php:440 msgid "You are about to DESTROY a complete database!" msgstr "Oled KUSTUTAMAS kogu andmebaasi!" -#: js/messages.php:50 +#: js/messages.php:52 msgid "You are about to DESTROY a complete table!" msgstr "Oled KUSTUTAMAS kogu tabelit!" -#: js/messages.php:52 +#: js/messages.php:54 msgid "You are about to TRUNCATE a complete table!" msgstr "Oled KÄRPIMAS kogu tabelit!" -#: js/messages.php:53 +#: js/messages.php:55 msgid "Delete tracking data for this table?" msgstr "Kas kustutada selle tabeli jälgimise andmed?" -#: js/messages.php:55 +#: js/messages.php:57 msgid "Delete tracking data for these tables?" msgstr "Kas kustutada nende tabelite jälgimise andmed?" -#: js/messages.php:57 +#: js/messages.php:59 msgid "Delete tracking data for this version?" msgstr "Kas kustutada selle versiooni jälgimise andmed?" -#: js/messages.php:59 +#: js/messages.php:61 msgid "Delete tracking data for these versions?" msgstr "Kas kustutada nende versioonide jälgimise andmed?" -#: js/messages.php:60 +#: js/messages.php:62 msgid "Delete entry from tracking report?" msgstr "Kas kustutada kirje jälgimise raportist?" -#: js/messages.php:61 +#: js/messages.php:63 msgid "Deleting tracking data" msgstr "Kustuta jälgimise andmed" -#: js/messages.php:62 +#: js/messages.php:64 msgid "Dropping Primary Key/Index" msgstr "Primaarvõtme/indeksi kustutamine" -#: js/messages.php:63 +#: js/messages.php:65 msgid "Dropping Foreign key." msgstr "Välisvõtme kustutamine." -#: js/messages.php:65 +#: js/messages.php:67 msgid "This operation could take a long time. Proceed anyway?" msgstr "See tegevus võib võtta kaua aega. Jätkan sellegipoolest?" -#: js/messages.php:67 +#: js/messages.php:69 #, php-format msgid "Do you really want to delete user group \"%s\"?" msgstr "Kas tõesti tahad kustudata kasutajate grupi \"%s\"?" -#: js/messages.php:69 +#: js/messages.php:71 #, php-format msgid "Do you really want to delete the search \"%s\"?" msgstr "Kas sa soovid tõesti kustutada otsingu \"%s\"?" -#: js/messages.php:71 +#: js/messages.php:73 msgid "You have unsaved changes; are you sure you want to leave this page?" msgstr "" "Mõned su muudatused ei ole veel salvestatud. Oled kindel, et soovid sellelt " "lehelt lahkuda?" -#: js/messages.php:73 +#: js/messages.php:75 msgid "Do you really want to revoke the selected user(s) ?" msgstr "Kas sa soovid tõesti tühistada valitud kasutajate õigused?" -#: js/messages.php:75 +#: js/messages.php:77 msgid "Do you really want to delete this central column?" msgstr "Kas sa soovid tõesti kustutada selle keskse veeru?" -#: js/messages.php:77 +#: js/messages.php:79 msgid "Do you really want to delete the selected items?" msgstr "Kas sa soovid tõesti kustutada valitud elemendid?" -#: js/messages.php:79 +#: js/messages.php:81 msgid "" "Do you really want to DROP the selected partition(s)? This will also DELETE " "the data related to the selected partition(s)!" @@ -938,19 +942,19 @@ msgstr "" "Kas soovid tõesti kustutada (DROP) valitud partitsiooni(d)? Selle käigus " "kustutatakse ka kõik valitud partitsiooni(de)ga seotud andmed!" -#: js/messages.php:83 +#: js/messages.php:85 msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "Kas sa soovid tõesti kärpida (TRUNCATE) valitud partitsioone?" -#: js/messages.php:85 +#: js/messages.php:87 msgid "Do you really want to remove partitioning?" msgstr "Kas sa tõesti soovid loobuda partitsioneerimisest?" -#: js/messages.php:86 +#: js/messages.php:88 msgid "Do you really want to RESET SLAVE?" msgstr "Kas tõesti tahad käivitada käsu RESET SLAVE?" -#: js/messages.php:88 +#: js/messages.php:90 msgid "" "This operation will attempt to convert your data to the new collation. In " "rare cases, especially where a character doesn't exist in the new collation, " @@ -964,15 +968,15 @@ msgstr "" "soovitame pöörduda tagasi vana sortimise juurde ja vaadata nõuandeid " "aadressil " -#: js/messages.php:94 +#: js/messages.php:96 msgid "Garbled Data" msgstr "Seosetud andmed" -#: js/messages.php:96 +#: js/messages.php:98 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:98 +#: js/messages.php:100 msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -988,7 +992,7 @@ msgstr "" "muutmise funktsionaalsust (viit \"Muuda\") selle tabeli struktuuri " "leheküljel." -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -996,160 +1000,160 @@ msgstr "" "Kas sa oled kindel, et soovid vahetada kõikide veergude sortimist ja " "teisendada andmed?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Salvesta ja sule" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Lähtesta" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Lähtesta kõik" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Puuduv väärtus vormis!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Vali valikutest vähemalt üks!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Palun sisesta korrektne number!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Palun sisesta korrektne pikkus!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Lisa indeks" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Muuda indeksit" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Lisa indeksisse %s veerg(u)" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Loo ühe veeru indeks" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Loo mitme veeru indeks" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Kasuta:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Palun vali indeksi veerg(u)." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Pead lisama vähemalt ühe veeru." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "SQL eelvaade" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Simuleeri päringut" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Sobivad read:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL päring:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Y väärtused" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Hostinimi on tühi!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Kasutajanimi on tühi!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Parool on tühi!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Paroolid ei kattu!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Valitud kasutajate kustutamine" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Sulge" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Mall loodi." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Mall on laetud." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Mall on loodud." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Mall on kustutatud." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Muud" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Ühendused / Protsessid" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Kohaliku jälgimise seadistus ei ühildu!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1161,155 +1165,155 @@ msgstr "" "Üldjuhul sinu praegune seadistus enam ei toimi. Palun lähtesta oma seadistus " "vaikimisi väärtustele menüüst Sätted." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Päringu vahemälu kasutegur" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Päringu vahemälu kasutus" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Kasutatud päringu vahemälu" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Süsteemi CPU kasutus" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Süsteemimälu" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Süsteemisaale" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Keskmine koormus" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Kogumälu" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Puhverdatud mälu" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Puhverdatud mälu" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Vaba mälu" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Kasutatud mälu" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Kogu saalimisala" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Puhverdatud saalimisala" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Kasutatud saalimisala" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Kasutamata saalimisala" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Saadetud baidid" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Vastuvõetud baidid" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Ühendused" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Protsessid" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabel(it)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Päringud" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Liiklus" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Sätted" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Lisa diagramm ruudustikku" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Palun lisa seeriasse vähemalt üks muutuja!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1321,47 +1325,47 @@ msgstr "Palun lisa seeriasse vähemalt üks muutuja!" msgid "None" msgstr "Puudub" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Jätka jälgimist" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Peata jälgimine" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Käivita automaatne värskendamine" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Lõpeta automaatne värskendamine" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log ja slow_query_log on lubatud." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log on lubatud." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log on lubatud." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log ja general_log on keelatud." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output ei ole TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output väärtuseks on määratud TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1372,12 +1376,12 @@ msgstr "" "jaoks kulub vähemalt %d sekundit. Sõltuvalt sinu süsteemist on soovitatav " "long_query_time väärtuseks seada 0-2 sekundit." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time väärtuseks on määratud %d sekund(it)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1386,30 +1390,30 @@ msgstr "" "vaikimisi olekusse:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Määra log_output väärtuseks %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Luba %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Keela %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Muuda long_query_time väärtuseks %d sekundit." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1417,57 +1421,57 @@ msgstr "" "Sa ei saa neid muutujaid muuta. Logi sisse kasutajana 'root' või võta " "ühendust oma andmebaasi administraatoriga." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Muuda sätteid" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Praegused sätted" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Diagrammi pealkiri" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Eraldaja" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Jagatud %s-ga" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Ühik" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Aeglasest logist" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Üldisest logist" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "See päring ei leidnud serveri logidest andmebaasi nime." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Logide analüüsimine" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Logide analüüsimine ja laadimine. See võib võtta natuke aega." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Loobu taotlusest" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1477,7 +1481,7 @@ msgstr "" "kasutatakse rühmitamise kriteeriumina ainult SQL päringut, seega päringute " "atribuudid (nt. algusaeg) võivad olla erinevad." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1486,32 +1490,32 @@ msgstr "" "Kuniks valitud on INSERT päringute rühmitamine, rühmitatakse kokku INSERT " "päringud samasse tabelisse, sõltumata lisatud andmetest." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Logi andmed on laetud. Päringud sooritatakse selle ajavahemiku jooksul:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Mine logi tabelisse" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Andmeid ei leitud" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "Logi on analüüsitud, kuid sellest ajavahemikust andmeid ei leitud." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analüüsimine…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Selgita väljundit" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1519,7 +1523,7 @@ msgstr "Selgita väljundit" msgid "Status" msgstr "Olek" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1529,58 +1533,58 @@ msgstr "Olek" msgid "Time" msgstr "Aeg" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Aeg kokku:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Profileerimise tulemused" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabel" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Diagramm" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Logi tabeli filtri valikud" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filter" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filtreeri päringuid sõna/reg.avaldise alusel:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Rühmita päringud, ignoreerides WHERE klauslite muutuja andmeid" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Rühmitatud ridade summa:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Kokku:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Logide laadimine" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Jälgija värskendamine ebaõnnestus" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1589,27 +1593,27 @@ msgstr "" "Uute diagrammi andmete taotlemisel naases server vale vastusega. Enamasti on " "selle põhjuseks aegunud seanss. Lae leht uuesti ja logi sisse." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Lae leht uuesti" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Mõjutatud read:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Seadistusfaili parsimine ebaõnnestus. Tundub, et see pole õige JSON kood." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Imporditud seadistusega diagrammi ruudustiku loomine ebaõnnestus. " "Lähtestamine vaikimisi seadistusse…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1618,63 +1622,63 @@ msgstr "" msgid "Import" msgstr "Impordi" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Impordi jälgimise seadistus" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Palun vali imporditav fail." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Importimiseks ei ole serveris faile!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Analüüsi päringut" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Kontrollsüsteem" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Võimalikud jõudlusprobleemid" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Probleem" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Soovitus" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Reegli detailid" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Põhjendus" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Kasutatud muutuja / valem" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Testi" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "SQL vormindamine…" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "Parameetrid puuduvad!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1686,60 +1690,60 @@ msgstr "Parameetrid puuduvad!" msgid "Cancel" msgstr "Katkesta" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Lehega seonduvad sätted" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Rakenda" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Laadimine…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Päring katkestatud!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "Töödeldakse taotlust" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "Päring nurjus!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Taotluse töötlemisel esines viga" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Vea kood: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Vea tekst: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Ühtegi andmebaasi ei ole valitud." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Kustutatakse veergu" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Lisatakse primaarvõtit" -#: js/messages.php:367 +#: js/messages.php:369 #: 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,55 +1753,55 @@ msgstr "Lisatakse primaarvõtit" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Selle teate sulgemiseks kliki sellel" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Andmebaase nimetatakse ümber" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Andmebaasi kopeeritakse" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Märgitabeli muutmine" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Luba võõrvõtme(te) kontrollid" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Ridade tegeliku arvu ei suudetud hankida." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Otsimine" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Peida otsingu tulemused" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Näita otsingu tulemusi" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Vaatamine" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Kustutamine" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Salvestatud funktsioon peab sisaldama RETURN käsku!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1813,44 +1817,44 @@ msgstr "Salvestatud funktsioon peab sisaldama RETURN käsku!" msgid "Export" msgstr "Ekspordi" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET toimeti" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "%s veeru väärtused" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Uue veeru väärtused" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Sisesta iga väärtus eraldi väljale." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Lisa %d väärtus(t)" -#: js/messages.php:403 +#: js/messages.php:405 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:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Peida päringu kast" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Näita päringu kasti" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1860,7 +1864,7 @@ msgstr "Näita päringu kasti" msgid "Edit" msgstr "Muuda" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1871,41 +1875,41 @@ msgstr "Muuda" msgid "Delete" msgstr "Kustuta" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 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:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Sirvi võõrvõtme väärtusi" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Automaatselt salvestatud päringuid ei ole" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Muutuja %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Vali" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Veeru valija" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Otsi sellest loendist" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1914,15 +1918,15 @@ msgstr "" "Keskne loend ei sisalda veerge. Palun kontrolli, et andmebaasi %s keskne " "veergude loend sisaldaks veerge, mis puuduvad aktiivsest tabelist." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Vaata lisaks" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Oled sa kindel?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1930,51 +1934,51 @@ msgstr "" "See tulemusel võivad muutuda mõnede veergude kirjeldused.
Kas sa oled " "kindel, et jätkata?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Jätka" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Lisa primaarvõti" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Primaarvõti lisatud." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Viiakse sind järgmisele sammule…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Sammu lõpp" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Normaliseeriminse teine samm (2NK)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Valmis" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Kinnita osalised sõltuvused" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Valitud osalised sõltuvused on järgnevad:" -#: js/messages.php:444 +#: js/messages.php:446 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1982,21 +1986,21 @@ msgstr "" "Märkus: a, b -> d, f kaasab väärtused veergudest a ja b, mis kombineeritult " "määravad väärtused veergudes d ja f." -#: js/messages.php:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Ühtegi osalist sõltuvust ei ole valitud!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Peida osaliste sõltuvuste nimekiri" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2004,41 +2008,41 @@ msgstr "" "Palun oota! See võib võtta aega mõned sekundid olenevalt andmete suurused ja " "tabeli veergude arvust." -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Samm" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Teostatakse järgnevad päringud:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "Kustuta (DROP) veerud %s tabelist %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Loo järgmine tabel" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Normaliseerimise kolmas samm (3NK)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Kinnita transitiivsed sõltuvused" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Valitud sõltuvused on järgnevad:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Ühtegi sõltuvust ei ole valitud!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2048,123 +2052,123 @@ msgstr "Ühtegi sõltuvust ei ole valitud!" msgid "Save" msgstr "Salvesta" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Peida otsingu kriteerium" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Näita otsingu kriteeriumi" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Vahemiku otsing" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Veeru maksimum:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Veeru miinimum:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Väikseim väärtus:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Suurim väärtus:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Peida 'leia ja asenda' kriteerium" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Kuva 'leia ja asenda' kriteeriumi" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Iga punkt tähendab andmete rida." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Kursori üleliigutamisel näitab punkt selle nime." -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Vali graafiku suumitav ala hiirega." -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "Algoleku taastamiseks vajuta suurenduse lähtestamise nuppu." -#: js/messages.php:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Vali kaks veergu" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Vali kaks erinevat veergu" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Andmepunkti sisu" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignoreeri" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Kopeeri" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Punkt" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Rea sõne" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Hulktahukas" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geomeetria" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "Sisemine ring" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Välimine ring" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Kas sa soovid kopeerida krüpteerimisvõtme?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Krüpteerimisvõti" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2172,24 +2176,24 @@ msgstr "" "Näitab, et lehel on tehtud muudatusi; muudatustest loobumisel küsitakse su " "käest kinnitust" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Vali osutatud võti" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Vali võõrvõti" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Palun vali primaarvõti või unikaalne nimi!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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,76 +2201,76 @@ msgstr "" "Sa ei ole muudatusi salvestanud. Kui sa neid ei salvesta, siis need lähevad " "kaotsi. Kas soovid jätkata?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Lehe nimi" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Salvesta leht" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Ava lehe" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Kustuta leht" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Nimetu" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Palun vali jätkamiseks leht" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Palun sisesta korrektne lehe nimi" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "Kas sa soovid salvestada muudatused sellel leheküljel?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Lehekülje kustutamine õnnestus" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Ekspordi seosteskeem" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Muutused on salvestatud" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Lisa säte veerule \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "Loodi %d objekt(i)." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Saada" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Muutmisest loobumiseks vajuta ESC." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2274,15 +2278,15 @@ msgstr "" "Sa muutsid mõningaid andmed ja neid pole veel salvestatud. Oled kindel, et " "soovid enne andmete salvestamist sellelt lehelt lahkuda?" -#: js/messages.php:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Järjekorra muutmiseks lohista." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Klõpsa selle veeru järgi sortimiseks." -#: js/messages.php:567 +#: js/messages.php:569 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 " @@ -2292,26 +2296,26 @@ msgstr "" "režiimi.
- Ctrl+klõps või Alt+klõps (Mac: Shift+Option+klõps) eemaldab " "veeru ORDER BY klauslist" -#: js/messages.php:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Klõpsa valimiseks/mittevalimiseks." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Veeru nime kopeerimiseks tee sellel topeltklõps." -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Veeru nähtavuse muutmiseks
vajuta alla suunatud noolele." -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Näita kõiki" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2320,12 +2324,12 @@ msgstr "" "märkeruutudega, muutmisega, kopeerimisega ja kustutamisega seotud " "funktsionaalsus ei pruugi pärast salvestamist toimida." -#: js/messages.php:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2333,100 +2337,100 @@ msgstr "" "Kas sa soovid tõesti näha kõiki ridu? Suur tabel nagu see võib põhjustada " "krahhi lehitsejas." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Algne pikkus" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "katkesta" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Katkestatud" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Õnnestus" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Impordi olek" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Kukuta failid siia" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Vali esmalt andmebaas" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Prindi" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Mine lingile:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Kopeeri veeru nimi." -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "Veeru nime kopeerimiseks lõikelauale paremklõpsa sellel." -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Genereeri parool" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Genereeri" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Rohkem" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Paneeli kuvamine" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Peida paneel" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Kuva peidetud navigeerimispaneeli elemendid." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Lingi peapaneeli" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Kustuta link peapaneeli" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2436,41 +2440,41 @@ msgstr "" "Uusim versioon on %s, välja antud %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", viimane stabiilne versioon:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "ajakohane" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Loo vaade" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Saada vearaport" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Saada vearaport" -#: js/messages.php:656 +#: js/messages.php:658 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:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Muuda raporti sätteid" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Kuva raporti detailid" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2478,7 +2482,7 @@ msgstr "" "Su eksport on mittetäielik, sest PHP skripti töötamiseks lubatud aeg on " "liiga väike!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2487,58 +2491,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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Server tuvastas mõned vead!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Palun vaata selle akna alumisse serva." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Ignoreeri kõiki" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Palun oota, sinu sätteid saadetakse hetkel." -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Kas käivitada see päring uuesti?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Kas sa soovid tõesti kustutada selle järjehoidja?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "SQL silumisinfo hankimisel esines vigu." -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s päringut käivitati %s korda %s sekundiga." -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "edastati %s argument(i)" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Kuva argumendid" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Peida argumendid" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Aega kulus:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2554,349 +2558,349 @@ msgstr "" "kustutada \"Veebisaitide lokaalsed andmed\". Safaris põhjustab seda üsna " "tihti privaatrežiim." -#: js/messages.php:711 +#: js/messages.php:713 msgid "Copy tables to" msgstr "Kopeeri tabelid kohta" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "Lisa tabeli eesliide" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "Asenda tabel eesliitega" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopeeri tabel koos eesliitega" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Eelmine" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Järgmine" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Täna" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Jaanuar" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Veebruar" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Märts" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Aprill" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Mai" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Juuni" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Juuli" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "August" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "September" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Oktoober" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "November" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Detsember" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Jaan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Veebr" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Märts" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Aprill" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Juuni" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Juuli" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Dets" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Pühapäev" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Esmaspäev" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Teisipäev" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Kolmapäev" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Neljapäev" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Reede" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Laupäev" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Püh" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Esm" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Tei" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Kol" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Nel" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Ree" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Lau" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "E" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "T" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "K" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "N" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "R" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "L" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "kalender-kuu-aasta" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "puudub" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Tund" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minut" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Sekund" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "See väli on kohustuslik" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Palun paranda see väli" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Palun sisesta korrektne e-posti aadress" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Palun sisesta korrektne URL" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Palun sisesta korrektne kuupäev" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Palun sisesta korrektne kuupäev (ISO)" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Palun sisesta korrektne number" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Palun sisesta korrektne krediitkaardi number" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Palun sisesta ainult numbrid" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Palun sisesta sama väärtus uuesti" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Palun sisesta kuni {0} märki" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Palun sisesta vähemalt {0} märki" -#: js/messages.php:915 +#: js/messages.php:917 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:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Palun sisesta väärtus vahemikust {0} kuni {1}" -#: js/messages.php:925 +#: js/messages.php:927 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:930 +#: js/messages.php:932 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:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Palun sisesta korrektne kuupäev või kellaaeg" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Palun sisesta korrektne 16-nd väärtus" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Viga" @@ -2946,34 +2950,34 @@ msgstr "Ootamatud sümbolid real %s." msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "Ootamatu sümbol %1$s. real. Oodatud vaheleht, aga leiti \"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Olemasolev seadistusfail (%s) ei ole loetav." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Seadistusfailil on valed õigused. See ei tohiks olla kõikide jaoks " "kirjutatav!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Fondi kõrgus" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Ahenda" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Laienda" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Korduspäring" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2993,76 +2997,59 @@ msgstr "Andmebaas" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Kokku %d järjehoidja" -msgstr[1] "Kokku %d järjehoidjat" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "isiklikku" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "jagatud" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s and %3$s järjehoidjat kaasatud" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Järjehoidjad puuduvad" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Jooksvas sessioonis" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Selgita" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profileerimine" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Järjehoidja" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Päring nurjus" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Päritud aeg" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "SQL päringu konsool" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Konsool" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Puhasta" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Ajalugu" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3080,125 +3067,125 @@ msgstr "Ajalugu" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Valikud" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Järjehoidjad" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Silu SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Vajuta päringu käivitamiseks Ctrl+Enter" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Vajuta päringu käivitamiseks Enter" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "kasvav" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "kahanev" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Järjestus:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Kogus" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Käivitusjärjekord" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Aega kulus" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Järjesta:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Grupeeri päringud" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Tühista päringute grupeering" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Kuva jälitusinfo" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Peida jälitusinfo" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Kogus:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Uuenda" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Lisa" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Lisa järjehoidja" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Nimi" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Sihtandmebaas" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Jaga seda järjehoidjat" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Määra vaikeväärtuseks" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Laienda päringu teated alati" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Kuva päringu ajalugu alguses" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Kuva valitud lehitsemise päring" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3206,35 +3193,34 @@ msgstr "" "Käivita päringud klahviga Enter ja sisesta reavahetused Shift + Enter " "kombinatsiooniga. Selle püsivaks tegemiseks vaata sätteid." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Vali tume teema" -#: libraries/DatabaseInterface.php:1528 -#| msgid "Failed to read configuration file!" +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "Seadistatud sortimise ühenduse määramine ebaõnnestus!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 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:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Server ei vasta." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Palun kontrolli andmebaasi sisaldava kataloogi õigusi." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Detailid…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "Sinu seadistuses määratud kontrollkasutajaga ühendamine ebaõnnestus." @@ -3545,7 +3531,7 @@ msgstr "Võib olla umbkaudne. Vaata [doc@faq3-11]KKK 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Sinu SQL päring teostati edukalt." @@ -3664,16 +3650,16 @@ msgstr "Laiend peatas faili üleslaadimise." msgid "Unknown error in file upload." msgstr "Faili üleslaadimises on tundmatu viga." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Üleslaetud faili liigutamisel esines viga, vaata [doc@faq1-11]KKK 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Üleslaetud faili liigutamisel esines viga." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Ei saa lugeda üleslaaditud faili." @@ -3737,8 +3723,8 @@ msgid "Keyname" msgstr "Võtme nimi" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3788,13 +3774,13 @@ msgstr "%s indeks on kustutatud." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Kustuta" @@ -3895,7 +3881,7 @@ msgstr "Õigused" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Tegevused" @@ -3910,7 +3896,7 @@ msgstr "Jälgimine" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4285,11 +4271,11 @@ msgstr "Viga võõrvõtme loomisel kohas %1$s (kontrolli andmete tüüpe)" msgid "No valid image path for theme %s found!" msgstr "%s välimusele õiget pildi asukohta ei leitud!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Eelvaade pole saadaval." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "võta see" @@ -4606,21 +4592,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Ruumiline" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Maksimaalne: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Staatiline analüüs:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "Analüüsi käigus avastati %d viga." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4631,32 +4617,32 @@ msgstr "Analüüsi käigus avastati %d viga." msgid "MySQL said: " msgstr "MySQL vastas: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Selgita SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Jäta SQL selgitus vahele" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "Analüüsi ja seleta kohal %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "PHP koodita" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "Saada päring" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Loo PHP kood" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Muuda kohapeal" @@ -4744,6 +4730,10 @@ msgstr "tunnis" msgid "per day" msgstr "päevas" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "jagatud" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Otsi:" @@ -4851,11 +4841,11 @@ msgstr "Lisa uus veerg" msgid "Attributes" msgstr "Atribuudid" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Seadistuse faili lugemine ebaõnnestus!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4863,31 +4853,31 @@ msgstr "" "See tähendab tavaliselt, et selles on süntaksi viga, palun kontrolli kõiki " "allolevaid vigu." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Ei saanud laadida vaikimisi seadistuse faili kohast: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Vale serveri indeks: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Vale hostinimi %1$s serverile. Palun kontrolli oma seadistust." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Seadistuses on valitud vale autentimise meetod:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4898,24 +4888,24 @@ msgstr "" "häälestuses sätet [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em]. " "phpMyAdmin kasutab hetkel andmebaasi serveri vaikimisi ajatsooni." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Peaksid uuendama %s %s või uuemale versioonile." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Viga: sobimatu sümbol" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS ülekirjutamise katse" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "võimalik turvaauk" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "tuvastati arvvõti" @@ -5642,13 +5632,13 @@ msgstr "Aseta veergude nimed esimesse ritta" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Veergusid ümbritseb" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Veergusid lõpetab" @@ -5666,12 +5656,12 @@ msgstr "Eemalda veergudest CRLF märgid" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Veerud lõpetab" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Ridasid katkestab" @@ -6255,7 +6245,7 @@ msgid "Column names in first row" msgstr "Veeru nimed esimeses reas" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Ära impordi tühje ridu" @@ -7782,7 +7772,7 @@ msgid "Table %s has been emptied." msgstr "Tabel %s on tühjendatud." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Vaade %s kustutati." @@ -7914,8 +7904,8 @@ msgid "No data to display" msgstr "Puuduvad kuvatavad andmed" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7953,52 +7943,52 @@ msgstr[1] "Nimed '%s' on MySQLi reserveeritud võtmesõnad." msgid "No column selected." msgstr "Veergu ei ole valitud." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Veerud on edukalt liigutatud." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Päringu viga" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Muuda" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Ruumiline" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Täistekst" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Erista väärtusi" @@ -8008,7 +7998,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s laiend on puudu. Palun kontrolli oma PHP seadistust." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ei muudetud" @@ -8791,56 +8781,56 @@ msgstr "MySQL tagastas tühja tulemuse (s.t nulliread)." msgid "[ROLLBACK occurred.]" msgstr "[Toimus tagasipööramine.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "Vaata struktuuri sisu, klõpsates selle nimel." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Selle mistahes sätte muutmiseks klõpsa vastaval viidal \"Valikud\"." -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Struktuuri muutmiseks klõpsa lingil \"Struktuur\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Mine andmebaasi: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Muuda %s sätteid" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Mine tabelisse: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s struktuur" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Mine vaatesse: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8888,55 +8878,55 @@ msgstr "Või" msgid "web server upload directory:" msgstr "veebiserveri üleslaadimiskataloog:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Muuda/Lisa" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Jätka %s rea lisamist" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "ja siis" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Lisa uue reana" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Lisa uue reana ja ignoreeri vigu" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Näita lisamise päringut" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Mine eelmisele lehele tagasi" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Lisa järgmine uus rida" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Mine tagasi sellele lehele" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Muuda järgmist rida" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8948,11 +8938,11 @@ msgstr "" msgid "Value" msgstr "Väärtus" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Näitan SQL päringut" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisatud rea id: %1$d" @@ -9822,7 +9812,7 @@ msgstr "Paranda tabelit" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Kustuta andmed või tabel" @@ -9835,32 +9825,32 @@ msgid "Delete the table (DROP)" msgstr "Kustuta tabel (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analüüsi" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Kontrolli" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimeeri" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Loo uuesti" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Paranda" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Kärbi" @@ -9886,35 +9876,35 @@ msgstr "Eemalda partitsioneerimine" msgid "Check referential integrity:" msgstr "Kontrolli pärinevust:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Ei saa tabelit iseendasse liigutada!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Ei saa tabelit iseendasse kopeerida!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "%s tabel liigutati %s andmebaasi." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "%s tabel kopeeriti %s andmebaasi." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Tabeli nimi on tühi!" @@ -10090,7 +10080,7 @@ msgstr "Andmete tõmmise valikud" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Andmete tõmmistamine tabelile" @@ -10114,21 +10104,21 @@ msgstr "Definitsioon" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tabeli struktuur tabelile" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Vaate struktuur" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Sise-vaate struktuur" @@ -10218,7 +10208,7 @@ msgid "Database:" msgstr "Andmebaas:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Andmed:" @@ -10319,7 +10309,7 @@ msgid "Data creation options" msgstr "Andmete loomise valikud" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Kärbi tabelit enne lisamist" @@ -10402,7 +10392,7 @@ msgstr "Tundub, et su andmebaas kasutab protseduure;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" "aliaste eksportimine võib mõningatel juhtudel töötada mitte usaldusväärselt." @@ -10445,52 +10435,52 @@ msgstr "kasutusel" msgid "It appears your database uses views;" msgstr "Tundub, et su andmebaas kasutab vaateid;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Tõmmistatud tabelite piirangud" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Piirangud tabelile" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indeksid tõmmistatud tabelitele" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indeksid tabelile" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT tõmmistatud tabelitele" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT tabelile" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Tundub, et su tabel kasutab trigereid;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "Vaate %s struktuur eksporditi tabelina" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "(Tegelik vaade on allpool)" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Andmete lugemisel esines viga:" @@ -10522,7 +10512,7 @@ msgstr "" "KEY UPDATE)" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10545,15 +10535,15 @@ msgstr "" msgid "Column names: " msgstr "Veeru nimed: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Vale parameeter CSV importimiseks: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10562,18 +10552,18 @@ msgstr "" "Täpsustati vale veerg (%s)! Veendu, et veergude nimed on õigesti kirjutatud, " "komadega eraldatud ja pole asetatud jutumärkide vahele." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Vale CSV sisendi formaat %d.-ndal real." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Vale veeru hulk CSV sisendis %d.-ndal real." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "See plugin ei toeta tihendatud importe!" @@ -10581,22 +10571,22 @@ msgstr "See plugin ei toeta tihendatud importe!" msgid "MediaWiki Table" msgstr "MediaWiki tabel" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Vale mediawiki sisendi formaat real:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "Impordi protsendid õigete kümnendarvudena (nt 12.00% -> .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Impordi valuutad (nt $5.00 -> 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10604,7 +10594,7 @@ msgstr "" "Täpsustatud XML fail oli kas valesti vormitud või lõpetamata. Palun paranda " "see viga ja proovi uuesti." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "OpenDocument tabeli parsimine ebaõnnestus!" @@ -10612,12 +10602,12 @@ msgstr "OpenDocument tabeli parsimine ebaõnnestus!" msgid "ESRI Shape File" msgstr "ESRI Shape fail" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "ESRI shape faili importimisel esines viga: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10625,12 +10615,12 @@ msgstr "" "Üritasid importida vigast faili või imporditud fail sisaldab vigaseid " "andmeid!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Spatial Extension ei toeta ESRI tüüpi \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Imporditud failis ei ole mitte mingeid andmeid!" @@ -10642,7 +10632,7 @@ msgstr "SQL ühilduvuse meetod:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ära kasuta nulliliste väärtuste puhul AUTO_INCREMENT" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13607,15 +13597,11 @@ msgstr "Oodati %1$d väärtust, kuid leiti %2$d." msgid "An opening bracket followed by a set of values was expected." msgstr "Oodati avanevat sulgu, millele järgnevad väärtused." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "Oodati avanevat sulgu." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "Oodati koma või lõpetavat sulgu" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Oodati koma või lõpetavat sulgu." @@ -13628,17 +13614,18 @@ msgstr "Oodati lõpetavat sulgu." msgid "Unrecognized data type." msgstr "Tundmatu andmetüüp." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Eelnevalt leiti alias." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Ootamatu punkt." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Oodati aliast." @@ -13656,19 +13643,19 @@ msgstr "Oodati nihet." msgid "This option conflicts with \"%1$s\"." msgstr "See säte põhjustab konflikti sättega \"%1$s\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Oodati tabeli vana nime." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Oodati võtmesõna \"TO\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Oodati tabeli uut nime." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Oodati ümbernimetamist." @@ -13694,15 +13681,15 @@ msgstr "Oodati lõpetavat sümbolit %1$s." msgid "Variable name was expected." msgstr "Oodati muutuja nime." -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Ootamatu lause algus." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Tundmatut tüüpi lause." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Transaktsiooni ei olnud eelnevalt alustatud." @@ -13723,15 +13710,15 @@ msgstr "Leiti uus lause, kuid selle ja talle järgneva vahelt puudub eraldaja." msgid "Unrecognized keyword." msgstr "Tundmatu võtmesõna." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Oodati olemi nime." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Oodati vähemalt ühe veeru kirjeldust." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Oodati võtmesõna \"RETURNS\"." @@ -14421,7 +14408,7 @@ msgstr "Vaata tabeli tõmmist (skeemi)" msgid "Invalid table name" msgstr "Vigane tabeli nimi" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Rida: %1$s, veerg: %2$s, viga: %3$s" @@ -15339,7 +15326,7 @@ msgid "at beginning of table" msgstr "tabeli alguses" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Partitsioonid" @@ -15372,7 +15359,7 @@ msgstr "Partitsioonide tabel" msgid "Edit partitioning" msgstr "Muuda partitsioneerimist" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Muuda vaadet" @@ -15487,11 +15474,11 @@ msgstr "VIEW nimi" msgid "Column names" msgstr "Veeru nimed" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Muuda vaate nimeks" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Kustuta vaade (DROP)" @@ -16750,6 +16737,20 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert väärtuseks on määratud 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Kokku %d järjehoidja" +#~ msgstr[1] "Kokku %d järjehoidjat" + +#~ msgid "private" +#~ msgstr "isiklikku" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s and %3$s järjehoidjat kaasatud" + +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Oodati koma või lõpetavat sulgu" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/eu.po b/po/eu.po index 076a052058..645818d2ce 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:26+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Basque " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Bidali" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Reset egin" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Dena hautatu" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Balioa bat falta da formularioan!" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "hitz hauetariko bat gutxienez" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Index" msgid "Add index" msgstr "Indizea" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit next row" msgid "Edit index" msgstr "Editatu hurrengo lerroa" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" msgstr "Gehitu %s zutabe" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Zerbitzariaren bertsioa" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Zerbitzariaren bertsioa" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Eremuak honekin mugatuta:" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %s field(s)" msgid "Please select column(s) for the index." msgstr "Gehitu %s zutabe" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Gutxienez bistaratzeko Zutabe bat hautatu duzu." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "kontsultan" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Start" msgid "Matched rows:" msgstr "Lar" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL kontsulta" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "balioa" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Zerbitzariaren izena hutsik dago!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Erabiltzailearen izena hutsik dago!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Pasahitza hutsik dago!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Pasahitzek ez dute bat egiten!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Hautatutako erabiltzaileak baztertu" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Itxi" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy msgid "Template was created." msgstr "%s taula ezabatu egin da" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profila eguneratua izan da." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Errenkada ezabatua izan da" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Beste" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Konexioak / Prozesuak" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "Konfiguratutako monitore lokal bateraezina" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1224,139 +1228,139 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 #, fuzzy msgid "Query cache efficiency" msgstr "Kontsulta katxe eragikortasuna" -#: js/messages.php:177 +#: js/messages.php:179 #, fuzzy msgid "Query cache usage" msgstr "Kontsulta katxe erabilpena" -#: js/messages.php:178 +#: js/messages.php:180 #, fuzzy msgid "Query cache used" msgstr "Kontsulta katxe erabilia" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Sistema PUZ erabilera" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Sistemaren memoria" -#: js/messages.php:182 +#: js/messages.php:184 #, fuzzy msgid "System swap" msgstr "Sistemaren swap-a" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Bataz besteko karga" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Memoria guztira" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Memoria katxea" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Memoria bufferrean" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Memoria librea" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Memoria erabilia" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Swap osoa" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy msgid "Cached swap" msgstr "Swap katxea" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy msgid "Used swap" msgstr "Swap erabilia" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy msgid "Free swap" msgstr "Sistemaren swap-a" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Jasota" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Konexioak" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Prozesuak" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "Byte" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1364,33 +1368,33 @@ msgid "%d table(s)" msgstr "%s taula" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 #, fuzzy msgid "Questions" msgstr "Eragiketak" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Trafikoa" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1402,47 +1406,47 @@ msgstr "" msgid "None" msgstr "Batez" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1450,154 +1454,154 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Bidali" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Gaituta" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Ezgaituta" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "Kontsulta exekutatzeko denbora %01.4f seg" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:254 +#: js/messages.php:256 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "Fitxategiak inportatu" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 #, fuzzy msgid "Analysing logs" msgstr "Lokal" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 #, fuzzy msgid "Jump to Log table" msgstr "Datu-baserik ez" -#: js/messages.php:285 +#: js/messages.php:287 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Datu-baserik ez" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Aztertu" -#: js/messages.php:290 +#: js/messages.php:292 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "SQL-a azaldu" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1605,7 +1609,7 @@ msgstr "SQL-a azaldu" msgid "Status" msgstr "Egoera" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1615,98 +1619,98 @@ msgstr "Egoera" msgid "Time" msgstr "Denbora" -#: js/messages.php:293 +#: js/messages.php:295 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Gutira" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "SQL emaitza" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Taula" -#: js/messages.php:296 +#: js/messages.php:298 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Karaktere-jokoa" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "Taularen hobespenak" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 #, fuzzy #| msgid "Number of rows per page" msgid "Sum of grouped rows:" msgstr "Errenkada kopurua orriko" -#: js/messages.php:306 +#: js/messages.php:308 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Gutira" -#: js/messages.php:308 +#: js/messages.php:310 #, fuzzy msgid "Loading logs" msgstr "Lokal" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 #, fuzzy msgid "Reload page" msgstr "Taula berrizendatu izen honetara: " -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1716,73 +1720,73 @@ msgstr "" msgid "Import" msgstr "Esportatu" -#: js/messages.php:326 +#: js/messages.php:328 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Import monitor configuration" msgstr "Konfiguratutako monitore lokal bateraezina" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Kontsulta eguneratu" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 -msgid "Issue" -msgstr "" - -#: js/messages.php:338 -#, fuzzy -#| msgid "Documentation" -msgid "Recommendation" -msgstr "Dokumentazioa" - #: js/messages.php:339 -msgid "Rule details" +msgid "Issue" msgstr "" #: js/messages.php:340 #, fuzzy #| msgid "Documentation" -msgid "Justification" +msgid "Recommendation" msgstr "Dokumentazioa" #: js/messages.php:341 -msgid "Used variable / formula" +msgid "Rule details" msgstr "" #: js/messages.php:342 +#, fuzzy +#| msgid "Documentation" +msgid "Justification" +msgstr "Dokumentazioa" + +#: js/messages.php:343 +msgid "Used variable / formula" +msgstr "" + +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Parametro okerrak!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1794,72 +1798,72 @@ msgstr "Parametro okerrak!" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy msgid "Loading…" msgstr "Lokal" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Prozesuak" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy msgid "Request failed!!" msgstr "Kontsulta mota" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Prozesuak" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Ez dago datu-baserik aukeratuta." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Inside column:" msgid "Dropping column" msgstr "Zutabearen barnean:" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "Gehitu %s zutabe" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1869,68 +1873,68 @@ msgstr "Gehitu %s zutabe" msgid "OK" msgstr "Zuzena" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy msgid "Renaming databases" msgstr "Taula berrizendatu izen honetara: " -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy msgid "Copying database" msgstr "Datu-baserik ez" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Karaktere-jokoa" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy msgid "Failed to get real row count." msgstr "Akatsa goiburuak bilatzerakoan" -#: js/messages.php:383 +#: js/messages.php:385 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Bilatu" -#: js/messages.php:384 +#: js/messages.php:386 #, fuzzy msgid "Hide search results" msgstr "SQL kontsulta" -#: js/messages.php:385 +#: js/messages.php:387 #, fuzzy msgid "Show search results" msgstr "SQL kontsulta" -#: js/messages.php:386 +#: js/messages.php:388 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Arakatu" -#: js/messages.php:387 +#: js/messages.php:389 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "%s ezabatzen" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1946,48 +1950,48 @@ msgstr "" msgid "Export" msgstr "Esportatu" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET editorea" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "%s zutaberako balioak" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Zutabe berrirako balioak" -#: js/messages.php:398 +#: js/messages.php:400 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Enter each value in a separate field." msgstr "Sartu balioak banatutako eremuetan" -#: js/messages.php:399 +#: js/messages.php:401 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Erabiltzaile berria gehitu" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 #, fuzzy msgid "Hide query box" msgstr "SQL kontsulta" -#: js/messages.php:408 +#: js/messages.php:410 #, fuzzy msgid "Show query box" msgstr "SQL kontsulta" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1997,7 +2001,7 @@ msgstr "SQL kontsulta" msgid "Edit" msgstr "Editatu" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -2008,96 +2012,96 @@ msgstr "Editatu" msgid "Delete" msgstr "Ezabatu" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Aldagaia" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No databases selected." msgid "Column selector" msgstr "Ez dago datu-baserik aukeratuta." -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Datu-basean bilatu" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Memoria librea" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atributuak" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 #, 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:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Jarraipen informea" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2105,90 +2109,90 @@ msgstr "" msgid "End of step" msgstr "Taularen amaieran" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 #, fuzzy #| msgid "None" msgid "Done" msgstr "Batez" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Ez dago datu-baserik aukeratuta." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Pribilegioak gehitu taula honetan" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Ez dago datu-baserik aukeratuta." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2198,191 +2202,191 @@ msgstr "Ez dago datu-baserik aukeratuta." msgid "Save" msgstr "Gorde" -#: js/messages.php:472 +#: js/messages.php:474 #, fuzzy msgid "Hide search criteria" msgstr "SQL kontsulta" -#: js/messages.php:473 +#: js/messages.php:475 #, fuzzy msgid "Show search criteria" msgstr "SQL kontsulta" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Bilatu" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Zutabe izenak" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Zutabe izenak" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL kontsulta" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL kontsulta" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Edukinen taula" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ezikusi" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Puntu" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Lerro kateak" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Poligono" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Barne eraztuna" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Kanpo eraztuna" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Orri zenbakia:" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2390,237 +2394,237 @@ msgstr "Taulak hautatu" msgid "Open page" msgstr "Erabilpena" -#: js/messages.php:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Taulak hautatu" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Aukeratu editatzeko orria mesedez" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Aldatu edo esportatu erlazio-eskema" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Aldaketak gorde dira" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "\"%s\" zutaberako balioa" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Bidali" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Zutabe izenak" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Dena erakutsi" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "Lerro kateak" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Deuseztatua" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy msgid "Import status" msgstr "Fitxategiak inportatu" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Taulak hautatu" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Inprimatu" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy msgid "Go to link:" msgstr "Datu-baserik ez" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Zutabe izenak" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Pasahitza aldatu" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 #, fuzzy msgid "Generate" msgstr "Egilea:" -#: js/messages.php:628 +#: js/messages.php:630 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Astel" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Dena erakutsi" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indizeak" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Sareta erakutsi" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy msgid "Link with main panel" msgstr "Datu-basea esportatzeko aukerak" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy msgid "Unlink from main panel" msgstr "Datu-basea esportatzeko aukerak" -#: js/messages.php:639 +#: js/messages.php:641 #, 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2628,121 +2632,121 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 #, fuzzy msgid "up to date" msgstr "Datu-baserik ez" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy msgid "Create view" msgstr "Zerbitzariaren bertsioa" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy msgid "Send error report" msgstr "Zerbitzariaren hautaketa" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy msgid "Submit error report" msgstr "Zerbitzariaren hautaketa" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy msgid "Show report details" msgstr "Taulak erakutsi" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ezikusi" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Kontsulta hau hemen berriz erakutsi" -#: js/messages.php:700 +#: js/messages.php:702 #, 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:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL kontsulta" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Taularen iruzkinak" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy msgid "Hide arguments" msgstr "SQL kontsulta" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2751,36 +2755,36 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Datu-basea kopiatu" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "Taularen aurrizkia aldatu" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Taularen aurrizkia aldatu" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Taula aurrizkiarekin kopiatu" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Aurrekoa" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2788,96 +2792,96 @@ msgid "Next" msgstr "Hurrengoa" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Gutira" -#: js/messages.php:755 +#: js/messages.php:757 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarioa " -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:758 +#: js/messages.php:760 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Api" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Mai" -#: js/messages.php:760 +#: js/messages.php:762 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Eka" -#: js/messages.php:761 +#: js/messages.php:763 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Uzt" -#: js/messages.php:762 +#: js/messages.php:764 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Abu" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Urr" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Urt" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Ots" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Api" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2885,78 +2889,78 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Eka" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Uzt" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Abu" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Ira" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Urr" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Aza" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Abe" -#: js/messages.php:801 +#: js/messages.php:803 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Iga" -#: js/messages.php:802 +#: js/messages.php:804 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Astel" -#: js/messages.php:803 +#: js/messages.php:805 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Astea" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Osti" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2964,201 +2968,201 @@ msgid "Sun" msgstr "Iga" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Astel" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Astea" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Astez" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Oste" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Osti" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Lar" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Iga" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Astel" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Astea" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Astez" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Oste" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Osti" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Lar" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Batez" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lanean" -#: js/messages.php:873 +#: js/messages.php:875 #, fuzzy #| msgid "per second" msgid "Second" msgstr "segunduko" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Testu-eremua erabili" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Datu-base bat hautatu mesedez" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please enter a valid date or time" msgstr "Aukeratu editatzeko orria mesedez" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Errorea" @@ -3208,34 +3212,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "in query" msgid "Requery" msgstr "kontsultan" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3254,89 +3258,70 @@ msgid "Database" msgstr "Datu-basea" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Search" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Bilatu" -msgstr[1] "Bilatu" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "Gordetako kontsulta ezabatu da." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "Bilatu" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "SQL-a azaldu" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Search" msgid "Bookmark" msgstr "Bilatu" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy msgid "Query failed" msgstr "Kontsulta mota" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy msgid "SQL Query Console" msgstr "SQL kontsulta" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "SQL-historia" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3354,10 +3339,10 @@ msgstr "SQL-historia" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 @@ -3365,188 +3350,188 @@ msgstr "SQL-historia" msgid "Options" msgstr "Eragiketak" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Search" msgid "Bookmarks" msgstr "Bilatu" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Ctrl+Enter to execute query" msgstr "Exekutatu aurretik aukeratutako kontsulta" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Enter to execute query" msgstr "Exekutatu aurretik aukeratutako kontsulta" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Goranzko" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Beherantz" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Other" msgid "Order:" msgstr "Beste" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "Zutabea" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execution order" msgstr "Exekutatu aurretik aukeratutako kontsulta" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Other" msgid "Order by:" msgstr "Beste" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy msgid "Group queries" msgstr "SQL kontsulta" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy msgid "Ungroup queries" msgstr "SQL kontsulta" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Kolorea erakutsi" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Indexes" msgid "Hide trace" msgstr "Indizeak" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "Zutabea" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "Eta" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Search" msgid "Add bookmark" msgstr "Bilatu" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "Etiketa" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy msgid "Target database" msgstr "Datu-basean bilatu" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Search" msgid "Share this bookmark" msgstr "Bilatu" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy msgid "Set default" msgstr "Fitxategiak inportatu" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy msgid "Show query history at start" msgstr "SQL kontsulta" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Kopiatutako taulara aldatu" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Failed to set configured collation connection!" msgstr "Konfiguratutako monitore lokal bateraezina" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3910,7 +3895,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4042,15 +4027,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4117,8 +4102,8 @@ msgid "Keyname" msgstr "Giltza-izena" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4169,13 +4154,13 @@ msgstr "%s indizea ezabatu da." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Ezabatu" @@ -4273,7 +4258,7 @@ msgstr "Pribilegioak" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Eragiketak" @@ -4288,7 +4273,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4696,11 +4681,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -4971,21 +4956,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Gutira" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4996,38 +4981,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL-ek zera dio: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL-a azaldu" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "SQL-ren azalpena saltatu" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP Koderik gabe" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Kontsulta bidali" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP kodea sortu" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5120,6 +5105,10 @@ msgstr "orduko" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5240,44 +5229,44 @@ msgstr "Gehitu %s zutabe" msgid "Attributes" msgstr "Atributuak" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Failed to read configuration file!" msgstr "Konfiguratutako monitore lokal bateraezina" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Zerbitzaria" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5285,24 +5274,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6006,7 +5995,7 @@ msgstr "Eremuen izenak lehenengo errenkadan jarri" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6014,7 +6003,7 @@ msgstr "Eremuak honekin mugatuta:" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6036,14 +6025,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Honetan bukatutako lerroak: " #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6666,7 +6655,7 @@ msgid "Column names in first row" msgstr "Eremuen izenak lehenengo errenkadan jarri" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -8154,7 +8143,7 @@ msgid "Table %s has been emptied." msgstr "%s taula hustu egin da." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8298,8 +8287,8 @@ msgid "No data to display" msgstr "Datu-baserik ez" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." @@ -8347,56 +8336,56 @@ msgstr[1] "" msgid "No column selected." msgstr "Ez dago datu-baserik aukeratuta." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Kontsulta mota" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Aldatu" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indizea" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Testu osoa" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Session value" msgid "Distinct values" @@ -8408,7 +8397,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Aldaketarik ez" @@ -9203,55 +9192,55 @@ msgstr "MySQL-k emaitza hutsa itzuli du. (i.e. zero errenkada)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Datu-baserik ez" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Datu-baserik ez" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Egitura soilik" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9302,55 +9291,55 @@ msgstr "Edo" msgid "web server upload directory:" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Txertatu" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "eta orduan" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Txertatu errenkada berri batean" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Itzuli" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Erregistro berria gehitu" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Egin atzera orri honetara" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Editatu hurrengo lerroa" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9362,11 +9351,11 @@ msgstr "" msgid "Value" msgstr "balioa" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10251,7 +10240,7 @@ msgstr "Taula konpondu" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10267,34 +10256,34 @@ msgid "Delete the table (DROP)" msgstr "Datu-baserik ez" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Aztertu" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 #, fuzzy msgid "Check" msgstr "Txekiera" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 #, fuzzy msgid "Repair" msgstr "Taula konpondu" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10323,37 +10312,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Erreferentzien integritatea egiaztatu:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Ezin taula berberara mugitu!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Ezinezkoa da taula berberera kopiatzea!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "%s taula hona mugitu da: %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "%s taula hona kopiatua izan da: %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Taularen izena hutsik dago!" @@ -10545,7 +10534,7 @@ msgstr "Datu-basea esportatzeko aukerak" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Taula honen datuak irauli" @@ -10572,14 +10561,14 @@ msgstr "Deskribapena" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Taularen egitura taula honentzat" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10587,7 +10576,7 @@ msgstr "Egitura soilik" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10699,7 +10688,7 @@ msgid "Database:" msgstr "Datu-basea" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10814,7 +10803,7 @@ msgid "Data creation options" msgstr "Eraldaketen hobespenak" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10883,7 +10872,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10934,60 +10923,60 @@ msgstr "lanean" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Iraulitako taulentzako murrizketak" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Taularentzako murrizketak" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Iraulitako taulentzako murrizketak" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Taulen barnean:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Gehitu AUTO_INCREMENT balioa" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Gehitu AUTO_INCREMENT balioa" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Egitura soilik" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11023,7 +11012,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11043,33 +11032,33 @@ msgstr "" msgid "Column names: " msgstr "Zutabe izenak" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11077,28 +11066,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11108,23 +11097,23 @@ msgstr "Dokumentazioa" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -11136,7 +11125,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14176,15 +14165,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14199,17 +14184,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14231,19 +14217,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14272,17 +14258,17 @@ msgstr "%s taula ezabatu egin da" msgid "Variable name was expected." msgstr "Txantiloi-fitxategiaren izena" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Taularen hasieran" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14303,17 +14289,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15024,7 +15010,7 @@ msgstr "Ikusi taularen iraulketa (eskema)" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16137,7 +16123,7 @@ msgid "at beginning of table" msgstr "Taularen hasieran" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -16182,7 +16168,7 @@ msgstr "Erlazioak" msgid "Edit partitioning" msgstr "Inprimatzeko ikuspegia" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16318,12 +16304,12 @@ msgstr "" msgid "Column names" msgstr "Zutabe izenak" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Taula berrizendatu izen honetara: " -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Datu-baserik ez" @@ -17437,6 +17423,18 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Search" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Bilatu" +#~ msgstr[1] "Bilatu" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "Gordetako kontsulta ezabatu da." + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/fa.po b/po/fa.po index 41e5809b80..925d5f2a14 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-11-21 11:45+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Persian " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "ذخيره به صورت پرونده" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "پاک سازی" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "انتخاب همه" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "مقداري در فرم وارد نشده !" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "حداقل يكي از كلمات" -#: js/messages.php:118 +#: js/messages.php:120 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number!" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:119 +#: js/messages.php:121 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid length!" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add Index" msgid "Add index" msgstr "افزودن index" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "ویرایش کردن ایندکس" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format #| msgid "Add %d column(s) to index" msgid "Add %s column(s) to index" msgstr "افزودن %d ستون جديد به index" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "نسخه سرور" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "نسخه سرور" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "ستونهاي درميان‌گرفته با" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %d column(s) to index" msgid "Please select column(s) for the index." msgstr "افزودن %d ستون جديد به index" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "داخل کوئری" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "سطر تحت تاثیر قرار گرفته:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "پرس و جوي SQL" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "مقدار" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "نام ميزبان خالي است!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "نام كاربر خالي است!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "اسم رمز خالي است!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "اسم رمزها مانند هم نمي‌باشد!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "حذف کاربران انتخاب شده" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "بستن" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "Page has been created." msgid "Template was created." msgstr "صفحه مورد نظر ایجاد گردید" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "تنظيمات به هنگام گرديد." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "سطر حذف گرديد" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "دیگر" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "اتصالات / پروسه ها" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "تنظیمات مانیتور محلی سازگار نیست" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1217,167 +1220,167 @@ msgstr "" "monitor dialog سازگار نیست. احتمالاً تنظیمات فعلی شما دیگر کار نکند. لطفاً از " "منوی تنظیمات تنظیمات خود را به حالت اولیه برگردانید." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "میزان کارایی کش کوئری" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "فضاي استفاده‌شده" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "فضاي استفاده‌شده" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "میزان استفاده از CPU سیستم" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "حافظه سیستم" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "swap سیستم" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "بار میانگین" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "کل حافظه" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "حافظه کش" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "حافظه بافر" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "حافظه آزاد" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "حافظه استفاده شده" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Swap کل" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Swap کش شده" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Swap استفاده شده" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Swap آزاد" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "میزان بایت ارسالی" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "میزان بایت دریافتی" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "اتصالات" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "پروسه ها" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "بايت" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "كيلوبايت" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "مگا بايت" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "گيگا بايت" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "ترابايت" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "پتا بايت" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "اگزا بايت" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d جدول" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "سوالات" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "ترافیک" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "تنظیم" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "اضافه کردن نمودار به جدول" -#: js/messages.php:218 +#: js/messages.php:220 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "لطفا حداقل یک مقدار به این سری اضافه نمایید" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1389,47 +1392,47 @@ msgstr "لطفا حداقل یک مقدار به این سری اضافه نما msgid "None" msgstr "هیچ یک" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "به حالت قبل برگرداندن مانیتور" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "توقف مانیتور" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log و slow_query_log فعال شدند." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log فعال شد." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log فعال است." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log و general_log are غیر فعال می باشند." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output به جدول تنظیم نشده است." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output به جدول تنظیم شده است." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1440,43 +1443,43 @@ msgstr "" "ثانیه طول کشیده باشند. بهتر است این مقدار را بین 0-2 بسته به سیستم خود قرار " "دهید." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time روی %d ثانیه تنظیم شده است." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "بعد از ری استارت سرور این تنظیمات به حالت پیش فرض برمیگردد:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "ذخيره به صورت پرونده %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "فعال سازی %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "غیر فعال سازی %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Set long_query_time to %ds" msgid "Set long_query_time to %d seconds." msgstr "long_query_time را به %ds تنظیم نمایید" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1484,58 +1487,58 @@ msgstr "" "شما این مقادیر را نمی توانید تغییر دهید. لطفا به عنوان root وارد شوید و یا " "با مدیر پایگاه داده تماس بگیرید." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "تغيير تنظیمات" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "تنظیمات فعلی" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy msgid "Chart title" msgstr "No tables" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "تفاوت" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "تقسیم بر %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "واحد" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "از slow log" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "از لاگ عمومی" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "آنالیز لاگ ها" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "در حال آنالیز و بارگیری لاگ. ممکن است مدتی زمان بگیرد." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "لغو کردن" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1545,7 +1548,7 @@ msgstr "" "کوئری SQL به عنوان ضابطه استفاده شده است، بنابراین بقیه مشخصات کوئری ها " "مانند زمان شروع ممکن است متفاوت باشند." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1554,31 +1557,31 @@ msgstr "" "چون دسته بندی کوئری Insert انتخاب شده است ، کوئری Insert در همان جدول نیز " "دسته بندی می شود بدون در نظر گرفتن داده های ورودی." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "لاگ داده ها بارگیری شد. کوئری هایی که در این دوره اجرا شده اند:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "پرش به جدول لاگ ها" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "اطلاعاتی یافت نشد" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "لاگ ها آنالیز شد، اما چیزی در این بازه زمانی یافت نشد." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "در حال آنالیز…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "شرح دادن خروجی" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1586,7 +1589,7 @@ msgstr "شرح دادن خروجی" msgid "Status" msgstr "وضعیت" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1596,58 +1599,58 @@ msgstr "وضعیت" msgid "Time" msgstr "زمان" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "زمان کل:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "دسته بندی نتایج" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "جدول" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "نمودار" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "آمار پايگاههاي داده" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "فیلتر" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "فیلتر کوئری ها به وسیله لغت/عبارت باقاعده:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "دسته کوئری ها،در نظر نگرفتن قسمت Where" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "تعداد سطرها در هر صفحه:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "مجموع:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "بارگیری لاگ ها" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "مانیتور رفرش ریت" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1656,28 +1659,28 @@ msgstr "" "هنگامی که اطلاعات جدید نمودار ارسال شد ، سرور جواب غلطی داد. این بیشتر به " "دلیل پایان زمان سشن شما می باشد.صفحه را رفرش کنید و دوباره وارد شوید." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "باز کردن مجدد صفحه" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "سطر تحت تاثیر قرار گرفته:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "تجزیه ی فایل های پیکربندی شده ناموفق بود .این کد معتبر برای JSON به نظر " "نمیرسد." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "ایجاد خطا در تقسیم بندی نمودار(چارت گرید) به واسطه تنظیمات غلط.باز گرداندن " "به تنظیمات پیش فرض …" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1686,69 +1689,69 @@ msgstr "" msgid "Import" msgstr "صدور" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "وارد کردن تنظیمات مانیتور" -#: js/messages.php:328 +#: js/messages.php:330 #, fuzzy #| msgid "Please select the file you want to import" msgid "Please select the file you want to import." msgstr "لطفا فایلی را که میخواهید وارد کنید را انتخاب کنید" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "آنالیز پرسجو" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "سیستم مشاور" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "امکان وجود مشکلات اجرایی" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "موضوع" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "پیشنهادات" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "جزئیات قانون" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "توجیهات" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "متغیر استفاده شده / فورمول" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "امتحان کردن" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "ورودی های اشتباه!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1760,72 +1763,72 @@ msgstr "ورودی های اشتباه!" msgid "Cancel" msgstr "لغو کردن" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "تغيير تنظیمات" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "در حال بارگیری…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "پردازش درخواست" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Query" msgid "Request failed!!" msgstr "پرس و جو" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "خطا در پردازش درخواست" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "هیچ پایگاه داده ای انتخاب نشده است." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "حذف ستون" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Adding Primary Key" msgid "Adding primary key" msgstr "اضافه کردن کلید اولیه" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1835,65 +1838,65 @@ msgstr "اضافه کردن کلید اولیه" msgid "OK" msgstr "تاييد" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "برای حذف کردن این اطلاعات کلیک کن" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "بازناميدن پایگاه داده" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "کپی کردن پایگاه داده" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "تغییر نویسهگان" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Select Foreign Key" msgid "Enable foreign key checks" msgstr "انتخاب کلید خارجی" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "دریافت سرصفحه ها مقدور نمی باشد" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "جستجو" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "مخفی کردن نتایج جستجو" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "نمایش نتایج" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "مشاهده" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "پاک کردن" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "تعریف یک تابع ذخیره شده باید شامل یک دستور بازگشت باشد!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1909,48 +1912,48 @@ msgstr "تعریف یک تابع ذخیره شده باید شامل یک دست msgid "Export" msgstr "صدور" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ویرایشگر ENUM/SET" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "تعداد ستون ها %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "مقادیر ستون جدید" -#: js/messages.php:398 +#: js/messages.php:400 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Enter each value in a separate field." msgstr "هر کدام از مقادیر را در یک فیلد وارد کنید" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "اضافه کردن مقدار %d" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "توجه داشته باشید:اگر این فایل شامل جداول چند گانه میباشد,انها به یکی تبدیل " "خواهند شد." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "مخفی کردن جعبه پرس و جو" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "نمایش جعبه پرس و جو" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1960,7 +1963,7 @@ msgstr "نمایش جعبه پرس و جو" msgid "Edit" msgstr "ويرايش" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1971,96 +1974,96 @@ msgstr "ويرايش" msgid "Delete" msgstr "حذف" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d شماره ردیف معتبر نمی باشد." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "متغییر" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "هیچ سطری انتخاب نشده است" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "جستجو در پايگاه‌ داده" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "حافظه آزاد" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "همکاری" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "يك كليد اصلي در %s اضافه شد" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "گزارشات دنبال شده" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2068,88 +2071,88 @@ msgstr "" msgid "End of step" msgstr "در انتهاي جدول" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "انجام شد" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "هیچ پایگاه داده ای انتخاب نشده است." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Create table on database %s" msgid "Create the following table" msgstr "ساخت جدول جديد در پايگاه داده %s" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "هیچ پایگاه داده ای انتخاب نشده است." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2159,166 +2162,166 @@ msgstr "هیچ پایگاه داده ای انتخاب نشده است." msgid "Save" msgstr "ذخيره" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "پنهان سازی ضوابط جستجو" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "نمایش معیارهای جستجو" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "جستجو" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "نام ستونها" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "نام ستونها" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "پنهان سازی ضوابط جستجو" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "نمایش معیارهای جستجو" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "هر نقطه نشان دهنده یک سطر داده ها." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "برچسب ن برفزار یک نقطه نشان داده خواهد شد." -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "برای بزرگنمایی,یک بخش را با موس انتخاب نمایید." -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" "با کیک بر روی داده ها ان ها را بینید و احتمالا ردیف داده ها راویرایش کنید." -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "تغییر اندازه طرح با کشیدن آن در امتداد گوشه پایین سمت راس میتواند انجام " "گیرد." -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "انتخاب دو ستون" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "انتخاب دو ستون متفاوت" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "محتوای داده ها" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "در نظر نگرفتن" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "کپی" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "درجه" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "رشته خطی" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "چند گوشه" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "هندسه" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "حلقه داخلی" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "حلقه بیرونی:" -#: js/messages.php:520 +#: js/messages.php:522 #, fuzzy #| msgid "Do you want to import remaining settings?" msgid "Do you want to copy encryption key?" msgstr "آیا میخواهید تنظیمات باقی مانده را وارد کنید؟" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "انتخاب کلید اشاره" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "انتخاب کلید خارجی" -#: js/messages.php:533 +#: js/messages.php:535 #, 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "ستون را براي نمايش انتخاب نماييد" -#: js/messages.php:536 +#: js/messages.php:538 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2326,97 +2329,97 @@ msgstr "" "تغییر در طرح شما ذخیره نشده است. آنها از دست خواهد رفت اگر شما آنها را ذخیره " "نکنید. ایا شما میخواهید ادامه دهید؟" -#: js/messages.php:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "شماره صفحه:" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Select Tables" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "واحد" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "لطفا يك صفحه را براي ويرايش انتخاب نماييد" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "ویرایش یا صدور نمای رابطه ای" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "اصلاحات ذخيره گرديد" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "اضافه کردن تنظیمات برای ستون " -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "ارسال" -#: js/messages.php:559 +#: js/messages.php:561 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "دکمه ی escape را برای صرفنظر کردن از ویرایش" -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2424,49 +2427,49 @@ msgstr "" "شما مقداری داده ویرایش کردید و ان ها ذخیره نشده اند.ایا شما برای ترک این " "صفحه بدون ذخیره کردن داده ها اطمینان دارید؟" -#: js/messages.php:564 +#: js/messages.php:566 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "برای دوباره مرتب کردن drag کنید" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "برای علامتگذاری / برداشتن علامت اینجا را کلبک کن" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "نام ستونها" -#: js/messages.php:574 +#: js/messages.php:576 #, 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "نمايش همه" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2474,60 +2477,60 @@ msgstr "" "این جدول هیچ مقدار کلیدی ندارد. امکانات ویرایش جدولی، چک باکس ها ، ویرایش ، " "کپی و حذف ممکن است کار نکنند." -#: js/messages.php:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "موقعیت اصلی" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "لغو کردن" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "وارد کردن فایل ها" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Select Tables" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "چاپ" -#: js/messages.php:606 +#: js/messages.php:608 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -2535,7 +2538,7 @@ msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "شما همچنین می توانید بیشتر ستون ها را
با کلیک روی آنها ویرایش کنید." -#: js/messages.php:611 +#: js/messages.php:613 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -2543,70 +2546,70 @@ msgid "You can also edit most values
by clicking directly on them." msgstr "" "شما همچنین می توانید بیشتر ستون ها را
با کلیک روی آنها ویرایش کنید." -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "به لینک بروید" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "نام ستونها" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "تغيير اسم رمز" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "توليد‌ کن" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "بیشتر" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "نمايش همه" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "مخفی کردن فهرست ها" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show hint" msgid "Show hidden navigation tree items." msgstr "Show grid" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Customize text input fields" msgid "Link with main panel" msgstr "سفارشی کردن فیلدهای ورودی متن" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize text input fields" msgid "Unlink from main panel" msgstr "سفارشی کردن فیلدهای ورودی متن" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2616,123 +2619,123 @@ msgstr "" "نسخه %s و در %s بیرون آمده است." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "نسخه قبلی:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "به روز" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy msgid "Create view" msgstr "نسخه سرور" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "پورت سرور" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "پورت سرور" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "تغيير تنظیمات" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy msgid "Show report details" msgstr "نمايش جدولها" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "در نظر نگرفتن" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "نمايش دوباره اين پرس و جو در اينجا" -#: js/messages.php:700 +#: js/messages.php:702 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "آيا مطمئن هستيد " -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "توضيحات جدول" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "مخفی کردن نتایج جستجو" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2741,34 +2744,34 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "کپی کردن پابگاه داده به" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "جایگزینی پیشوند جدول" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "جایگزینی پیشوند جدول" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "کپی کردن جدول با پیشوند" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "قبل" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2776,352 +2779,352 @@ msgid "Next" msgstr "بعد" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "امروز" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "ژانویه" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "فوریه" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "مارس" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "آوريل" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "مي" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "ژوئن" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "جولاي" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "آگوست" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "سپتامبر" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "اكتبر" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "نوامبر" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "دسامبر" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "ژانويه" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "فوريه" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "آوريل" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "مي" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "ژوئن" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "جولاي" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "آگوست" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "سپتامبر" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "اكتبر" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "نوامبر" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "دسامبر" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "يكشنبه" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "دوشنبه" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "سه‌شنبه" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "چهارشنبه" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "پنجشنبه" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "جمعه" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "شنبه" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "يكشنبه" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "دوشنبه" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "سه‌شنبه" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "چهارشنبه" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "پنج‌شنبه" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "جمعه" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "شنبه" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "يكشنبه" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "دوشنبه" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "سه‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "چهارشنبه" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "پنج‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "جمعه" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "شنبه" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "تقویم-ماه-سال" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "هیچ" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "ساعت" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "دقیقه" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "ثانیه" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Text fields" msgid "Please fix this field" msgstr "فیلد های متنی" -#: js/messages.php:886 +#: js/messages.php:888 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:887 +#: js/messages.php:889 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:925 +#: js/messages.php:927 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:930 +#: js/messages.php:932 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "خطا" @@ -3171,34 +3174,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "فایل تنظیمات فعلی (%s) قابل خواندن نیست." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "تنظمیات دسترسی اشتباه در فایل تنظیمات ، نباید قابل نوشتن جهانی باشد!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "اندازه فونت" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "in query" msgid "Requery" msgstr "کوئری داخلی" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3217,94 +3220,75 @@ msgid "Database" msgstr "پايگاه داده" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Delete relation" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "حذف رابطه" -msgstr[1] "حذف رابطه" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "به اشتراک گذاشته شده" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "تاریخچه حذف شد ." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "حذف رابطه" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "شرح دادن SQL" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "استفاده از پروفایل" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Delete relation" msgid "Bookmark" msgstr "حذف رابطه" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query" msgid "Query failed" msgstr "پرس و جو" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "Query execution time" msgid "Queried time" msgstr "زمان اجرای پرس و جو" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "جعبه پرس و جوي SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 #, fuzzy msgid "Clear" msgstr "تقویم" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL Validator" msgid "History" msgstr "معتبرسازي SQL" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3322,10 +3306,10 @@ msgstr "معتبرسازي SQL" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 @@ -3333,190 +3317,190 @@ msgstr "معتبرسازي SQL" msgid "Options" msgstr "عمليات" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Delete relation" msgid "Bookmarks" msgstr "حذف رابطه" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy msgid "Press Ctrl+Enter to execute query" msgstr "پرس و جوي SQL" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy msgid "Press Enter to execute query" msgstr "پرس و جوي SQL" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "صعودي" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "نزولي" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Other" msgid "Order:" msgstr "دیگر" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "ستون" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute" msgid "Execution order" msgstr "اجرا" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Other" msgid "Order by:" msgstr "دیگر" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "پرس و جوي SQL" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "پرس و جوي SQL" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "نمايش رنگ" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide indexes" msgid "Hide trace" msgstr "مخفی کردن فهرست ها" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "ستون" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "بارگیری مجدد" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "و" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Delete relation" msgid "Add bookmark" msgstr "حذف رابطه" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Data Label" msgid "Label" msgstr "پايگاه داده" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy msgid "Target database" msgstr "جستجو در پايگاه‌داده" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Delete relation" msgid "Share this bookmark" msgstr "حذف رابطه" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Default" msgid "Set default" msgstr "پيش‌ فرض" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "SQL query history table" msgid "Show query history at start" msgstr "جدول تاریخ دستورات اس کیو ال" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied database" msgid "Switch to dark theme" msgstr "تعویض به پایگاه داده ی کپی شده" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "در خواندن فایل تنظیمات ناموفق بود" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3869,7 +3853,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4001,15 +3985,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "خطای ناشناخته در آپلود فایل." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "خطا در موقع جابجا کردن فایل آپلود شده." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "File was not an uploaded file." msgid "Cannot read uploaded file." @@ -4079,8 +4063,8 @@ msgid "Keyname" msgstr "نام کلید" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4130,13 +4114,13 @@ msgstr "فهرست %s حذف گرديد." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "حذف" @@ -4234,7 +4218,7 @@ msgstr "امتيازات" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "عمليات" @@ -4249,7 +4233,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4660,11 +4644,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "آدرس تصاویر برای تم %s یافت نمی شود!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "نمای قبلی موجود نمی باشد." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "دریافت کنید" @@ -4936,23 +4920,23 @@ msgctxt "spatial types" msgid "Spatial" msgstr "جمع كل" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "حداکثر: %s %s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "اطلاعات ثابت" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4963,38 +4947,38 @@ msgstr "" msgid "MySQL said: " msgstr "پيغام MySQL : " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "شرح دادن SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "رد شدن از توضیحات SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "بدون كد PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "ثبت کوئری" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "ساخت كد PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5090,6 +5074,10 @@ msgstr "در ساعت" msgid "per day" msgstr "هر روز" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "به اشتراک گذاشته شده" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5208,46 +5196,46 @@ msgstr "افزودن ستون جديد" msgid "Attributes" msgstr "ويژگيها" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to read configuration file!" msgstr "در خواندن فایل تنظیمات ناموفق بود" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" "معمولا به معنی وجود خطا می باشد، لطفا خطاهای نمایش داده شده زیر را چک کنید." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "فایل تنظیمات اولیه را نمی توان بارگیری نمود: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "ایندکس غلط در سرور : %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "نام هاست برای سرور %1$s اشتباه است. لطفا تنظیمات خود را بازبینی نمایید." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "سرور" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "روش احراز هویت در تنظیمات صحیح نمی باشد:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5255,24 +5243,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "شما باید به %s %s یا جدیدتر به روز شوید." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "احتمال وجود exploit" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "کلید عددی یافت شد" @@ -5985,7 +5973,7 @@ msgstr "قراردادن نام ستونها در اولين سطر" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -5993,7 +5981,7 @@ msgstr "ستونهاي درميان‌گرفته با" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6013,14 +6001,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "ستون های از بین رفته به وسیله" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6645,7 +6633,7 @@ msgid "Column names in first row" msgstr "نام ستونها در اولين سطر" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "ردیف خالی وارد کنید" @@ -8112,7 +8100,7 @@ msgid "Table %s has been emptied." msgstr "جدول %s خالی شد." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8251,8 +8239,8 @@ msgid "No data to display" msgstr "اطلاعاتی یافت نشد" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8300,57 +8288,57 @@ msgstr[1] "" msgid "No column selected." msgstr "هیچ سطری انتخاب نشده است" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "پايگاه داده %s حذف گرديد." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query" msgid "Query error" msgstr "پرس و جو" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "تغيير" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "فهرست" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "كاملا متن" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -8362,7 +8350,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -9147,55 +9135,55 @@ msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "No databases" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "No databases" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "فقط ساختار" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9244,55 +9232,55 @@ msgstr "يا" msgid "web server upload directory:" msgstr "انتخاب از مسیر آپلود در سرور %s:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "درج" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "و سپس" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "درج به عنوان يك سطر جديد" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "برو به صفحه قبل" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "درج يك سطر جديد ديگر" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "برگرد به این صفحه" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "ویرایش کردن ردیف بعدی" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9304,11 +9292,11 @@ msgstr "" msgid "Value" msgstr "مقدار" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10214,7 +10202,7 @@ msgstr "بازسازی جدول" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10230,32 +10218,32 @@ msgid "Delete the table (DROP)" msgstr "No databases" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "تعمیر" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10284,37 +10272,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "جدول %s به %s انتقال داده‌شد." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "جدول %s به %s كپي شد." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "نام جدول وارد نشده‌است !" @@ -10504,7 +10492,7 @@ msgstr "آمار پايگاههاي داده" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "حذف داده‌هاي جدول" @@ -10530,14 +10518,14 @@ msgstr "توضیحات" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10545,7 +10533,7 @@ msgstr "فقط ساختار" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10653,7 +10641,7 @@ msgid "Database:" msgstr "پايگاه داده" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10767,7 +10755,7 @@ msgid "Data creation options" msgstr "آمار پايگاههاي داده" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10836,7 +10824,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10882,60 +10870,60 @@ msgstr "در حال استفاده" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for dumped tables" msgstr "درجدول های:" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "درجدول های:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "مقدار افزایشی خودکار اضافه شود" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "مقدار افزایشی خودکار اضافه شود" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "فقط ساختار" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10967,7 +10955,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10987,33 +10975,33 @@ msgstr "" msgid "Column names: " msgstr "نام ستونها" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11021,28 +11009,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11052,23 +11040,23 @@ msgstr "مستندات باز" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -11082,7 +11070,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13998,15 +13986,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14021,17 +14005,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14053,19 +14038,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14093,17 +14078,17 @@ msgstr "جدول %s حذف گرديد" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "در ابتداي جدول" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14124,17 +14109,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "سطر حذف گرديد" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14847,7 +14832,7 @@ msgstr "نمايش الگوي جدول" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15942,7 +15927,7 @@ msgid "at beginning of table" msgstr "در ابتداي جدول" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -15987,7 +15972,7 @@ msgstr "موقعیت" msgid "Edit partitioning" msgstr "نماي چاپ" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16120,12 +16105,12 @@ msgstr "" msgid "Column names" msgstr "نام ستونها" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "بازناميدن جدول به" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "No databases" @@ -17250,6 +17235,18 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "مقدار concurrent_insert صفر شده است" +#, fuzzy +#~| msgid "Delete relation" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "حذف رابطه" +#~ msgstr[1] "حذف رابطه" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "تاریخچه حذف شد ." + #, fuzzy #~| msgid "Replace table prefix" #~ msgid "Replace table prefix:" diff --git a/po/fi.po b/po/fi.po index 04e541e220..450c068963 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-02-11 19:47+0000\n" "Last-Translator: Jouni Kähkönen \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" @@ -47,7 +47,7 @@ msgid "Table comments:" msgstr "Taulun kommentit:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -101,7 +101,7 @@ msgstr "Tyyppi" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -163,16 +163,16 @@ msgid "Comments" msgstr "Kommentit" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Perusavain" -#: db_datadict.php:165 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:376 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:141 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:446 @@ -196,17 +196,17 @@ msgstr "Perusavain" msgid "No" msgstr "Ei" -#: db_datadict.php:165 js/messages.php:519 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:521 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:143 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -260,7 +260,7 @@ msgstr "Taulut" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -408,23 +408,23 @@ msgid "Point:" msgstr "Piste:" #: gis_data_editor.php:216 gis_data_editor.php:243 gis_data_editor.php:299 -#: gis_data_editor.php:372 js/messages.php:508 +#: gis_data_editor.php:372 js/messages.php:510 msgid "X" msgstr "X" #: gis_data_editor.php:219 gis_data_editor.php:247 gis_data_editor.php:303 -#: gis_data_editor.php:378 js/messages.php:509 +#: gis_data_editor.php:378 js/messages.php:511 msgid "Y" msgstr "Y" #: gis_data_editor.php:241 gis_data_editor.php:297 gis_data_editor.php:370 -#: js/messages.php:511 +#: js/messages.php:513 #, php-format msgid "Point %d" msgstr "Piste %d" #: gis_data_editor.php:254 gis_data_editor.php:310 gis_data_editor.php:388 -#: js/messages.php:517 +#: js/messages.php:519 msgid "Add a point" msgstr "Lisää piste" @@ -446,7 +446,7 @@ msgstr "Sisäkehä %d:" msgid "Add a linestring" msgstr "Lisää rivimerkkijono" -#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:518 +#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:520 msgid "Add an inner ring" msgstr "Lisää sisäympyrä" @@ -463,12 +463,12 @@ msgstr "Lisää monikulmio" msgid "Add geometry" msgstr "Lisää geometria" -#: gis_data_editor.php:411 js/messages.php:349 libraries/DbSearch.php:463 +#: gis_data_editor.php:411 js/messages.php:351 libraries/DbSearch.php:463 #: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:139 #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -498,7 +498,7 @@ msgstr "Lisää geometria" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Siirry" @@ -518,7 +518,7 @@ msgstr "" msgid "Succeeded" msgstr "Kirjanmerkki lisätty onnistuneesti" -#: import.php:58 js/messages.php:592 +#: import.php:58 js/messages.php:594 msgid "Failed" msgstr "Tuonti epäonnistui" @@ -526,7 +526,7 @@ msgstr "Tuonti epäonnistui" msgid "Incomplete params" msgstr "Vaillinaiset parametrit" -#: import.php:184 +#: import.php:185 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -535,15 +535,15 @@ msgstr "" "Yritit ehkä lähettää palvelimelle liian suurta tiedostoa. Katso %sohjeista" "%s, kuinka tämän rajoituksen voi poistaa." -#: import.php:360 import.php:665 +#: import.php:361 import.php:666 msgid "Showing bookmark" msgstr "Näytetään kirjanmerkki" -#: import.php:376 import.php:661 +#: import.php:377 import.php:662 msgid "The bookmark has been deleted." msgstr "Kirjanmerkki on poistettu." -#: import.php:474 +#: import.php:475 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -552,12 +552,12 @@ msgstr "" "Ladattua tiedostoa ei voida siirtää, koska palvelimella on open_basedir " "käytössä ilman pääsyä hakemistoon %s väliaikaistiedostoja varten." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:491 import.php:568 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "Tiedostoa ei voi lukea!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:502 import.php:517 import.php:542 import.php:557 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -567,7 +567,7 @@ msgstr "" "kyseiselle muodolle ei joko ole toteutettu, tai se on asetuksin poistettu " "käytöstä." -#: import.php:574 +#: import.php:575 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -577,21 +577,24 @@ msgstr "" "ylitti PHP:n asetusten salliman enimmäiskoon. Katso [doc@faq1-16]FAQ 1.16[/" "doc]." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:627 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "Tuontiin tarvittavaa lisäosaa ei voida tuoda, tarkista asetukset!" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:669 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "Kirjanmerkki %s on nyt luotu." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "Tuonti onnistui, %d kyselyä suoritettu." +#: import.php:679 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "Tuonti onnistui, %d kyselyä suoritettu." +msgstr[1] "Tuonti onnistui, %d kyselyä suoritettu." -#: import.php:705 +#: import.php:710 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -600,7 +603,7 @@ msgstr "" "Skriptin suoritus aikakatkaistiin. Jos haluat suorittaa tuonnin loppuun, " "%slähetä sama tiedosto uudestaan%s, ja tuonti jatkuu." -#: import.php:715 +#: import.php:720 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -613,8 +616,8 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Tuonnin tilaa ei voitu ladata." -#: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: import_status.php:116 js/messages.php:450 js/messages.php:602 +#: libraries/Util.php:795 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Takaisin" @@ -638,7 +641,7 @@ msgstr "" msgid "General settings" msgstr "Yleiset asetukset" -#: index.php:191 js/messages.php:625 +#: index.php:191 js/messages.php:627 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:287 msgid "Change password" @@ -710,10 +713,11 @@ msgstr "Näytä PHP:n asetustiedot" msgid "Version information:" msgstr "Versiotiedot:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:442 libraries/Util.php:509 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Ohjeet" @@ -842,96 +846,96 @@ msgstr "" "Palvelin käyttää Suhosin-suojausjärjestelmää. Lue %sohjeista%s tietoja " "mahdollisista ongelmista." -#: js/messages.php:39 libraries/import.lib.php:207 sql.php:161 +#: js/messages.php:41 libraries/import.lib.php:207 sql.php:161 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" -kyselyjen käyttö on estetty." -#: js/messages.php:45 +#: js/messages.php:47 msgid "Confirm" msgstr "Vahvista" -#: js/messages.php:46 +#: js/messages.php:48 #, php-format msgid "Do you really want to execute \"%s\"?" msgstr "Haluatko varmasti suorittaa \"%s\"?" -#: js/messages.php:48 libraries/mult_submits.lib.php:440 +#: js/messages.php:50 libraries/mult_submits.lib.php:440 msgid "You are about to DESTROY a complete database!" msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!" -#: js/messages.php:50 +#: js/messages.php:52 msgid "You are about to DESTROY a complete table!" msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen taulun!" -#: js/messages.php:52 +#: js/messages.php:54 msgid "You are about to TRUNCATE a complete table!" msgstr "Olet aikeissasi poistaa kaikki rivit taulusta (TRUNCATE)!" -#: js/messages.php:53 +#: js/messages.php:55 msgid "Delete tracking data for this table?" msgstr "Haluatko poistaa tämän taulun seurantatiedot?" -#: js/messages.php:55 +#: js/messages.php:57 msgid "Delete tracking data for these tables?" msgstr "Haluatko poistaa tämän taulun seurantatiedot?" -#: js/messages.php:57 +#: js/messages.php:59 msgid "Delete tracking data for this version?" msgstr "Haluatko poistaa tämän version seurantatiedot?" -#: js/messages.php:59 +#: js/messages.php:61 msgid "Delete tracking data for these versions?" msgstr "Haluatko poistaa näiden versioiden seurantatiedot?" -#: js/messages.php:60 +#: js/messages.php:62 msgid "Delete entry from tracking report?" msgstr "Poista tämän taulun seurantatiedot?" -#: js/messages.php:61 +#: js/messages.php:63 msgid "Deleting tracking data" msgstr "Seurantatietojen poisto" -#: js/messages.php:62 +#: js/messages.php:64 msgid "Dropping Primary Key/Index" msgstr "Pääavaimen tai indeksin poisto" -#: js/messages.php:63 +#: js/messages.php:65 msgid "Dropping Foreign key." msgstr "Poistetaan liiteavainta." -#: js/messages.php:65 +#: js/messages.php:67 msgid "This operation could take a long time. Proceed anyway?" msgstr "Tämä toiminto voi kestää kauan. Jatketaanko silti?" -#: js/messages.php:67 +#: js/messages.php:69 #, php-format msgid "Do you really want to delete user group \"%s\"?" msgstr "Haluatko varmasti poistaa käyttäjäryhmän ”%s”?" -#: js/messages.php:69 +#: js/messages.php:71 #, php-format msgid "Do you really want to delete the search \"%s\"?" msgstr "Haluatko varmasti poistaa haun ”%s”?" -#: js/messages.php:71 +#: js/messages.php:73 msgid "You have unsaved changes; are you sure you want to leave this page?" msgstr "" "Sinulla on tallentamattomia muutoksia. Haluatko varmasti poistua tältä " "sivulta?" -#: js/messages.php:73 +#: js/messages.php:75 msgid "Do you really want to revoke the selected user(s) ?" msgstr "Haluatko varmasti peruuttaa valittujen käyttäjien oikeudet?" -#: js/messages.php:75 +#: js/messages.php:77 msgid "Do you really want to delete this central column?" msgstr "Haluatko varmasti poistaa tämän kirjanmerkin?" -#: js/messages.php:77 +#: js/messages.php:79 msgid "Do you really want to delete the selected items?" msgstr "Haluatko varmasti poistaa haun ”%s”?" -#: js/messages.php:79 +#: js/messages.php:81 msgid "" "Do you really want to DROP the selected partition(s)? This will also DELETE " "the data related to the selected partition(s)!" @@ -940,19 +944,19 @@ msgstr "" "huomioon että tämä toiminto myös poistaa (DELETE) kaiken ositukseen " "liittyvän datan!" -#: js/messages.php:83 +#: js/messages.php:85 msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "Haluatko varmasti poistaa osituksen ”%s”?" -#: js/messages.php:85 +#: js/messages.php:87 msgid "Do you really want to remove partitioning?" msgstr "Haluatko varmasti poistaa osituksen ”%s”?" -#: js/messages.php:86 +#: js/messages.php:88 msgid "Do you really want to RESET SLAVE?" msgstr "Haluatko varmasti suorittaa RESET SLAVE - toiminnon?" -#: js/messages.php:88 +#: js/messages.php:90 msgid "" "This operation will attempt to convert your data to the new collation. In " "rare cases, especially where a character doesn't exist in the new collation, " @@ -965,22 +969,15 @@ msgstr "" "prosessi voi aiheuttaa datan ilmaantumisen väärin. Tässä tapauksessa " "suosittelemme datan palauttamista alkuperäiseen kollaatioon. " -#: js/messages.php:94 +#: js/messages.php:96 msgid "Garbled Data" msgstr "Vääristynyt data" -#: js/messages.php:96 +#: js/messages.php:98 msgid "Are you sure you wish to change the collation and convert the data?" msgstr "Oletko varma että haluat vaihtaa kollaatiota ja kääntää datan?" -#: js/messages.php:98 -#| 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. " +#: js/messages.php:100 msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -996,167 +993,167 @@ msgstr "" "tietojen muuntamiseen suositellaan käytettävän sarakkeen " "muokkausominaisuutta (\"Muuta\"-linkki) taulun rakennesivulla. " -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" "Oletko varma että haluat vaihtaa sarakekollaatiota ja kääntää kaiken datan?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Tallenna & sulje" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Palauta" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Palauta kaikki" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Tarvittava tieto puuttuu lomakkeesta!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Valitse vaihtoehdoista vähintään yksi!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Annathan kelvollisen porttinumeron!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Annathan kelvollisen pituuden!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Lisää indeksi" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Muokkaa indeksiä" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Lisää indeksiin %s kolumni(a)" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Luo yhden sarakkeen avain" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Luo komposiitti-indeksi" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Yhdistä:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Ole hyvä ja valitse sarakkeet avainta varten." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Sinun tulee lisätä vähintään yksi sarake." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Esikatsele SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Jäljittele kyselyä" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Täsmänneet rivit:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL-kysely:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Y-Arvot" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Palvelimen nimi puuttuu!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Käyttäjän nimi puuttuu!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Salasana puuttuu!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Salasanat eivät ole samat!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Poista valitut käyttäjät" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Sulje" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Malli on luotu." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Malli on ladattu." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Malli on päivitetty." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Malli on poistettu." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Toinen" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "," -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Yhteyttä / Prosessi" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Paikallisen seurannan asetukset ovat yhteensopimattomat!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1168,155 +1165,155 @@ msgstr "" "hyvin todennäköistä, että nykyiset asetukset eivät toimi enää. Palauta " "Asetukset-valikosta oletusasetukset." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Kyselyvälimuistin tehokkuus" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Kyselyvälimuistin käyttö" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Kyselyvälimuistia käytetty" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Järjestelmän prosessorikuormitus" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Järjestelmän muisti" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Järjestelmän sivutusmuisti" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Keskimääräinen kuormitus" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Muistia yhteensä" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Puskuroitua muistia" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Puskuroitu muisti" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Vapaata muistia" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Käytetty muisti" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Sivumuistia yhteensä" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Välimuistissa oleva sivumuisti" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Käytössä oleva sivutusmuisti" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Vapaa sivutusmuisti" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Tavua lähetetty" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Tavua vastaanotettu" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Yhteydet" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Prosessit" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "tavua" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "kt" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "Mt" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "Gt" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "Tt" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "Pt" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "Et" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d taulu(a)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Kysymykset" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Liikenne" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Asetukset" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Lisää taulukko ruudukkoon" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Lisää sarjaan vähintään yksi muuttuja!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1328,47 +1325,47 @@ msgstr "Lisää sarjaan vähintään yksi muuttuja!" msgid "None" msgstr "Ei mitään" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Jatka seurantaa" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Keskeytä seuranta" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Aloita automaattinen päivittäminen" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Lopeta automaattinen päivittäminen" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log ja slow_query_log ovat käytössä." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log on käytössä." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log on käytössä." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log ja general_log ovat poissa käytöstä." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output ei ole TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output on asetettu TABLE:ksi." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1379,12 +1376,12 @@ msgstr "" "kestävät yli %d sekuntia. On suositeltavaa asettaa long_query_time 0-2 " "sekuntiin riippuen järjestelmästäsi." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time on asetettu %d sekuntiin." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1393,30 +1390,30 @@ msgstr "" "palautetaan oletuksiin palvelimen uudelleenkäynnistyksen yhteydessä:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Aseta log_output arvoon %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Ota %s käyttöön" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Ota %s pois käytöstä" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Aseta long_query_time arvoon %d sekuntia." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1424,59 +1421,59 @@ msgstr "" "Et voi muuttaa näitä muuttujia. Ole hyvä, ja kirjaudu root-käyttäjällä tai " "ota yhteyttä tietokantasi järjestelmänvalvojaan." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Muuta asetuksia" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Nykyiset asetukset" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Kaavion otsikko" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Ero" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Jaettu millä: %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Yksikkö" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Hitaasta lokista" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Yleisestä lokista" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" "Tietokannan nimi ei ole tiedossa palvelimen lokitiedostoissa tätä " "hakukyselyä varten." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Analyysilokit" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Analysoidaan ja ladataan lokeja. Tämä kestää hetken." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Peruuta pyyntö" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1486,7 +1483,7 @@ msgstr "" "lukumäärän. Ryhmittelyn perusteena käytetään kuitenkin vain itse SQL-" "kyselyä, joten kyselyjen ominaisuudet, kuten aloitusaika, voivat olla muuta." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1495,31 +1492,31 @@ msgstr "" "Koska INSERT-kyselyjen ryhmittely on valittu, ryhmitellään INSERT-kyselyt " "samaan tauluun, riippumatta lisätyistä tiedoista." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "Lokin tiedot on ladattu. Kyselyt suoritetaan tällä aikajänteellä:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Siirry lokitauluun" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Tietoa ei löydy" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "Loki on analysoitu, mutta tietoja ei löydy annetulta aikajänteeltä." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analysointi…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Selitä SQL-kysely" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1527,7 +1524,7 @@ msgstr "Selitä SQL-kysely" msgid "Status" msgstr "Tila" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1537,58 +1534,58 @@ msgstr "Tila" msgid "Time" msgstr "Aika" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Kokonaisaika:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Profiloinnin tulokset" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Taulu" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Kaavio" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Kirjaa taulun suodatusvalinnat lokiin" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Suodatin" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Suodata kyselyjä hakusanalla/regexp-ilmaisulla:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Ryhmitä kyselyt, sivuuttaen WHERE-lauseiden muuttujatiedot" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Ryhmitettyjen rivien määrä:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Yhteensä:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Lokien lataus" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Seurannan päivitys epäonnistui" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1598,28 +1595,28 @@ msgstr "" "pyydettäessä. Tämä johtuu todennäköisimmin vanhentuneesta istunnosta. Lataa " "sivu uudestaan ja syötä kirjautumistiedot." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Lataa sivu uudelleen" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Käsitellyt rivit:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Asetustiedoston jäsennys epäonnistui. Vaikuttaa, että kyseessä on " "virheellistä JSON-koodia." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Kaavioruudukon luonti ei onnistunut tuoduilla määrityksillä. Käytetään " "oletusmäärityksiä…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1628,64 +1625,63 @@ msgstr "" msgid "Import" msgstr "Tuonti" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Tuo seuranta-asetukset" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Valitse tuotava tiedosto." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Tuotavia tiedostoja ei ole saatavilla palvelimella!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Analysoi kysely" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Neuvontajärjestelmä" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Mahdollisia suorituskykyongelmia" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Ongelma" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Suositus" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Säännön lisätiedot" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Perustelut" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Käytetty muuttuja / kaava" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Testaa" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Formatoidaan SQL-kyselyä…" -#: js/messages.php:346 -#| msgid "Bad parameters!" +#: js/messages.php:348 msgid "No parameters found!" msgstr "Parametrit puuttuvat!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1697,60 +1693,60 @@ msgstr "Parametrit puuttuvat!" msgid "Cancel" msgstr "Peruuta" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Sivuun liittyvät asetukset" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Käytä" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Lataa…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Pyyntö keskeytetty!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "Pyyntöä käsitellään" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "Pyyntö epäonnistui!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Virhe pyynnön käsittelyssä" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Virhekoodi: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Virhekoodi: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Yhtään tietokantaa ei ole valittu." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Saraketta poistetaan" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Lisätään pääavain" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1760,55 +1756,55 @@ msgstr "Lisätään pääavain" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Poista tämä huomautus napsauttamalla" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Uudelleennimetään tietokantoja" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Kopioidaan tietokantoja" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Vaihdetaan merkistökoodausta" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Kytke viiteavaimien tarkistus päälle" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Oikean rivimäärän nouto epäonnistui." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Etsi" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Piilota hakutulokset" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Näytä hakutulokset" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Selaaminen" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Poisto" -#: js/messages.php:391 +#: js/messages.php:393 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:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1824,45 +1820,45 @@ msgstr "Tallennettavan funktion määritelmässä tulee olla RETURN-lause!" msgid "Export" msgstr "Vienti" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET-muokkaus" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Arvot sarakkeelle %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Arvot uudelle sarakkeelle" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Syötä jokainen arvo eri kenttään." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Lisää %d arvo(a)" -#: js/messages.php:403 +#: js/messages.php:405 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:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Piilota SQL-kyselykenttä" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Näytä kyselykenttä" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1872,7 +1868,7 @@ msgstr "Näytä kyselykenttä" msgid "Edit" msgstr "Muokkaa" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1883,41 +1879,41 @@ msgstr "Muokkaa" msgid "Delete" msgstr "Poista" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 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:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Selaa viitearvoja" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Ei automaattisesti tallennettuja kyselyitä" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Muuttuja %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Poimi sarake" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Sarakkeenvalitsin" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Hae tästä listasta" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1927,15 +1923,15 @@ msgstr "" "sarakelistaus tietokantaa %s varten sisältää sarakkeita jotka eivät ole " "tämän hetkisessä taulussa." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Katso lisää" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Oletko varma?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1943,51 +1939,51 @@ msgstr "" "Tämä toiminto saattaa muuttaa joidenkin sarakkeiden määritelmiä.
Oletko " "varma että haluat jatkaa?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Jatka" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Lisää pääavain" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Pääavain lisätty." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Viedään sinut seuraavaan vaiheeseen…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Vaiheen loppu" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Normalisaation toinen askel (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Valmis" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Vahvista todeksi osittaiset riippuvuudet" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Osittaiset riippuvuudet ovat seuraavat:" -#: js/messages.php:444 +#: js/messages.php:446 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,20 +1991,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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Osittaisia riippuvuuksia ei ole valittu!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Piilota osittaisten riippuvuuksien lista" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2017,41 +2013,41 @@ msgstr "" "viedä sekunnin tai kaksi riippuen tietojen koosta ja taulun sarakkeiden " "määrästä." -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Askel" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Seuraavat toiminnot tullaan suorittamaan:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP sarakkeet %s taulusta %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Luo seuraava taulu" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Normalisaation kolmas askel (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Vahvista todeksi transitiiviset riippuvuudet" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Valitut riippuvuudet ovat seuraavat:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Yhtään riippuvuutta ei ole valittu!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2061,122 +2057,122 @@ msgstr "Yhtään riippuvuutta ei ole valittu!" msgid "Save" msgstr "Tallenna" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Piilota hakukriteerit" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Näytä hakukriteerit" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Aluehaku" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Sarakkeiden enimmäismäärä:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Sarakkeiden vähimmäismäärä:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Vähimmäisarvo:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Enimmäisarvo:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Piilota etsi ja korvaa kriteerit" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Näytä etsi ja korvaa kriteerit" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Kukin piste kuvaa tietoriviä." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Pisteen nimi näkyy, kun osoitin viedään sen ylle." -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Lähennä, valitse kohta hiirellä." -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "Palaa alkuperäiseen tilaan napsauttamalla nollaa zoomaus painikeeta." -#: js/messages.php:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Valitse kaksi saraketta" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Valitse kaksi eri saraketta" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Tietopisteen sisältö" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Älä huomioi" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Kopioi" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Piste" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Rivimerkkijono" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Monikulmio" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "Sisäkehä" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Ulkokehä" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Haluatko kopioida salausavaimen?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Salausavain" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2184,24 +2180,24 @@ msgstr "" "Olet tehnyt muutoksia tähän sivuun; sinua pyydetään vahvistamaan ennen kuin " "hylkäät muutokset" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Valitse viitattava avain" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Valitse liiteavain" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Valitse pää- tai uniikkiavain!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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?" @@ -2209,76 +2205,76 @@ msgstr "" "Asettelumuutoksia ei ole tallennettu. Tallentamattomat muutokset menetetään. " "Haluatko silti jatkaa?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Sivun nimi" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Tallenna sivu" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Avaa sivu" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Poista sivu" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Nimetön" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Valitse sivu jatkaaksesi" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Annathan kelvollisen sivun nimen" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "Haluatko tallentaa nykyisen sivun muutokset?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Sivu poistettu onnistuneesti" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Vie relaatioskeema" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Muutokset tallennettu" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Lisää valinta sarakkeelle ”%s”." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d objekti(a) luotu." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Lähetä" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Peruuta muokkaaminen painamalla Esc-näppäintä." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2286,15 +2282,15 @@ msgstr "" "Olet muuttanut joitakin tietoja ja niitä ei ole tallennettu. Haluatko " "varmasti poistua tältä sivulta ennen tietojen tallentamista?" -#: js/messages.php:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Muuta järjestystä vetämällä." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Järjestä tämän sarakkeen tulokset napsauttamalla." -#: js/messages.php:567 +#: js/messages.php:569 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 " @@ -2304,26 +2300,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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Merkitse tai poista merkintä napsauttamalla." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Kopioi kentän nimi kaksoisnapsauttamalla." -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Muuta sarakkeen näkyvyyttä
napsauttamalla pudotusvalikon nuolta." -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Näytä kaikki" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2332,13 +2328,13 @@ msgstr "" "valintaneliöihin, Muokkaa-, Kopioi- ja Poista-linkkeihin liittyvät " "ominaisuudet eivät ehkä ole toiminnassa tallennuksen jälkeen." -#: js/messages.php:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2346,104 +2342,104 @@ msgstr "" "Oletko varma että haluat nähdä kaikki rivit? Suuret taulut voivat kaataa " "selaimesi." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Alkuperäinen pituus" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "peruuta" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Keskeytetty" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Onnistui" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Tuo tila" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Vedä tiedostot tähän" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Valitse ensin tietokanta" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Tulosta" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Siirry linkkiin:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Kopioi kentän nimi." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Keksi salasana" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Keksi" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Lisää" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Näytä paneeli" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Piilota paneeli" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Näytä piilotetut navigointipuun kohteet." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Linkitä pääpaneelin kanssa" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Poista pääpaneelin linkki" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2453,48 +2449,48 @@ msgstr "" "Uusin versio on %s, ja se on julkaistu %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", viimeisin vakaa versio:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "ajan tasalla" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Luo näkymä" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Lähetä virheraportti" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Lähetä virheraportti" -#: js/messages.php:656 +#: js/messages.php:658 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:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Muuta raportin asetuksia" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Näytä raportin tarkemmat tiedot" -#: js/messages.php:662 +#: js/messages.php:664 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:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2504,60 +2500,60 @@ msgstr "" "lomake jotkut kentät voidaan jättää huomiotta, PHP:n max_input_vars " "konfiguraation vuoksi." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Palvelimella on havaittu joitakin virheitä!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Ole hyvä ja katso tämän ikkunan alalaitaan." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Sivuuta kaikki" -#: js/messages.php:688 +#: js/messages.php:690 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:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Suoritetaanko tämä kysely uudelleen?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Haluatko varmasti poistaa tämän kirjanmerkin?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "SQL-virheenkorjauksen tietoja haettaessa tapahtui virhe." -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s SQL-kyselyä suoritettu %s kertaa %s sekunnissa." -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "%s argumenttia syötetty" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Näytä argumentit" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Piilota argumentit" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Aikaa kului:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2572,353 +2568,351 @@ msgstr "" "tyhjennys voi auttaa. Safari-selaimella tällaisen ongelman aiheuttaa yleensä " "\"yksityisen tilan selaus\"." -#: js/messages.php:711 -#| msgid "Copy database to" +#: js/messages.php:713 msgid "Copy tables to" msgstr "Kopioi taulut tietokantaan" -#: js/messages.php:712 -#| msgid "Apply index(s)" +#: js/messages.php:714 msgid "Add table prefix" msgstr "Lisää tauluun etuliite" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Korvaa taulun etuliite" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopioi taulun etuliite" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Edellinen kuukausi" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Seuraava kuukausi" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Tänään" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Tammikuu" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Helmikuu" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Maaliskuu" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Huhtikuu" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Toukokuu" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Kesäkuu" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Heinäkuu" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Elokuu" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Syyskuu" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Lokakuu" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Marraskuu" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Joulukuu" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Tammi" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Helmi" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Maalis" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Huhti" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Touko" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Kesä" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Heinä" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Elo" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Syys" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Loka" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Marras" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Joulu" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Sunnuntai" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Maanantai" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Tiistai" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Keskiviikko" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Torstai" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Perjantai" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Lauantai" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Su" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Ti" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Ke" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "To" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Pe" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "La" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Ti" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Ke" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "To" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "La" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "kalenteri-kuukausi-vuosi" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Tunti" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minuutti" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Sekunti" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Kenttä on pakollinen" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Ole hyvä ja korjaa tämä kenttä" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Ole hyvä ja anna pätevä sähköpostiosoite" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Ole hyvä ja anna pätevä URL" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Ole hyvä ja anna pätevä päivämäärä" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Ole hyvä ja anna pätevä päivämäärä (ISO)" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Ole hyvä ja anna pätevä numero" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Ole hyvä ja anna pätevä luottokortin numero" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Ole hyvä ja kirjoita vain numeroita" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Ole hyvä ja annat saman arvon uudelleen" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Ole hyvä ja kirjoita maksimissaan {0} merkkiä" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Ole hyvä ja kirjoita vähintään {0} merkkiä" -#: js/messages.php:915 +#: js/messages.php:917 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:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Ole hyvä ja kirjoita arvo väliltä {0} ja {1}" -#: js/messages.php:925 +#: js/messages.php:927 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:930 +#: js/messages.php:932 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:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Ole hyvä ja anna pätevä päivämäärä tai aika" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Ole hyvä ja anna pätevä heksadesimaalinen arvo" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Virhe" @@ -2972,34 +2966,34 @@ msgstr "" "Odottamattomia merkkejä rivillä %1$s. Pitäisi olla sarkain (tab), mutta " "löytyi \"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Olemassa oleva asetustiedosto (%s) ei ole luettavissa." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Väärät pääsyasetukset asetustiedostolla, sen ei kuuluisi olla kaikkien " "kirjoitettavissa!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Fonttikoko" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Paina kokoon" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Laajenna" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Suorita hakulause uudelleen" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3019,76 +3013,59 @@ msgstr "Tietokanta" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Yhteensä %d kirjanmerkki" -msgstr[1] "Yhteensä %d kirjanmerkkiä" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "yksityinen" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "jaettu" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s ja %3$s kirjanmerkit on luettu mukaan" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Ei kirjanmerkkejä" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Nykyisen istunnon aikana" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Selitä" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profilointi" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Aseta kirjanmerkki" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Kysely epäonnistui" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Hakulauseen suoritusaika" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "SQL-kyselykonsoli" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Konsoli" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Tyhjennä" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Historia" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3106,125 +3083,125 @@ msgstr "Historia" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Valinnat" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Kirjanmerkit" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Etsi virheitä SQL-kyselystä" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Suorita kysely painamalla Ctrl+Enter" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Paina Enter suorittaaksesi kyselyn" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "nouseva" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "laskeva" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Järjestys:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Laske" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Suoritusjärjestys" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Aikaa kului" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Järjestä mukaan:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Ryhmäkyselyt" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Pura ryhmäkyselyt" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Näytä seuranta" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Piilota seuranta" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Luku:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Päivitä" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Lisää" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Lisää kirjanmerkki" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Nimiö" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Kohdetietokanta" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Jaa tämä kirjanmerkki" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Aseta oletukseksi" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Laajenna jokainen hakulauseen viesti" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Näytä kyselyhistoria käynnistyksessä" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Näytä tämän hetkinen selaushakulause" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3232,16 +3209,15 @@ msgstr "" "Suorita hakukyselyt painamalla Enter ja lisää uusi rivi painamalla Shift + " "Enter. Mikäli haluat tehdä tästä pysyvän, katso asetukset." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Vaihda tummaan teemaan" -#: libraries/DatabaseInterface.php:1528 -#| msgid "Failed to read configuration file!" +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "Konfiguroidun lajitteluyhteyden asettaminen epäonnistui!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3249,19 +3225,19 @@ msgstr "" "Palvelin ei vastaa (tai paikallisen palvelimen pistokke ei ole määritelty " "oikein)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Palvelin ei vastaa." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Tarkista käyttöoikeudet hakemisto sisältää tietokannan." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Lisätiedot…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Yhteyden muodostus asetuksissa määriteltyyn superuser-käyttäjään epäonnistui." @@ -3573,7 +3549,7 @@ msgstr "Saattaa olla likimääräinen. Katso [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "SQL-kyselysi on suoritettu onnistuneesti." @@ -3696,16 +3672,16 @@ msgstr "Laajennus keskeytti tiedoston lähetyksen." msgid "Unknown error in file upload." msgstr "Tuntematon virhe tiedostoa lähetettäessä." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Virhe siirrettäessä ladattua tiedostoa, katso [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Virhe siirrettäessä ladattua tiedostoa." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Ladattua tiedostoa ei voi lukea." @@ -3769,8 +3745,8 @@ msgid "Keyname" msgstr "Avaimen nimi" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3820,13 +3796,13 @@ msgstr "Indeksi %s on poistettu." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Tuhoa" @@ -3928,7 +3904,7 @@ msgstr "Käyttöoikeudet" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Toiminnot" @@ -3943,7 +3919,7 @@ msgstr "Seuranta" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4320,11 +4296,11 @@ msgstr "Virhe luotaessa kohteen %1$s viiteavainta (tarkista tietotyypit)" msgid "No valid image path for theme %s found!" msgstr "Kelvollista kuvapolkua teemalle %s ei löytynyt!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Esikatselu ei ole saatavilla." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "käytä tätä" @@ -4640,21 +4616,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Geometrinen" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Enimmäiskoko: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Staattinen analyysi:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "%d virhettä havaittu analyysin aikana." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4665,34 +4641,32 @@ msgstr "%d virhettä havaittu analyysin aikana." msgid "MySQL said: " msgstr "MySQL ilmoittaa: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Selitä SQL-kysely" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Älä selitä SQL-kyselyä" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "Analyysin selostus %s" -#: libraries/Util.php:1250 -#| msgid "Without PHP Code" +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "Ilman PHP-koodia" -#: libraries/Util.php:1262 -#| msgid "Submit Query" +#: libraries/Util.php:1261 msgid "Submit query" msgstr "Suorita kysely" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Luo PHP-koodi" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Muokkaa inline-koodia" @@ -4780,6 +4754,10 @@ msgstr "tunnissa" msgid "per day" msgstr "päivässä" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "jaettu" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Haku:" @@ -4887,11 +4865,11 @@ msgstr "Lisää uusi sarake" msgid "Attributes" msgstr "Attribuutit" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Asetustiedoston lukeminen epäonnistui!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4899,31 +4877,31 @@ msgstr "" "Tämä johtuu tavallisesti siinä olevasta syntaksivirheestä, tarkista kaikki " "alla näkyvät virheet." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Oletusasetuksia ei voitu ladata kohteesta: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Virheellinen palvelimen indeksi: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Palvelimella %1$s virheellinen nimi. Tarkista asetukset." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Palvelin %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Asetuksissa on virheellinen todennustapa:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4934,24 +4912,24 @@ msgstr "" "konfiguraation asetukset [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em]. " "phpMyAdmin käyttää tällä hetkellä tietokantapalvelimen oletusaikavyöhykettä." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Sinun tulisi päivittää versioon %s %s tai sitä uudempaan." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Virhe: Tunnus ei täsmää" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS ylikirjoitus yritys" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "mahdollinen turva-aukko" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "numeerinen avain tunnistettu" @@ -5608,7 +5586,6 @@ msgid "Whether the table structure actions should be hidden." msgstr "Mikäli taulun rakenteiden toiminnot pitäisi olla piilossa." #: libraries/config/messages.inc.php:117 -#| msgid "Table comments" msgid "Show column comments" msgstr "Näytä sarakekommentit" @@ -5691,13 +5668,13 @@ msgstr "Aseta sarakkeiden nimet ensimmäiselle riville" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Sarakkeet mukana" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Sarakkeet unohtui" @@ -5715,12 +5692,12 @@ msgstr "Poista CRLF-merkit sarakkeista" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Sarakkeet päätetään" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Rivit päätetään" @@ -6302,7 +6279,7 @@ msgid "Column names in first row" msgstr "Sarakenimet ensimmäisessä rivissä" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Älä tuo tyhjiä riviä" @@ -7380,9 +7357,6 @@ msgid "User groups table" msgstr "Käyttäjäryhmät taulukko" #: libraries/config/messages.inc.php:825 -#| msgid "" -#| "Leave blank to disable the feature to hide and show navigation items, " -#| "suggested: [kbd]pma__navigationhiding[/kbd]" msgid "" "Leave blank to disable the feature to hide and show navigation items, " "suggested: [kbd]pma__navigationhiding[/kbd]." @@ -7411,7 +7385,6 @@ msgid "Verbose name of this server" msgstr "Tämän palvelimen yksityiskohtainen nimi" #: libraries/config/messages.inc.php:837 -#| msgid "Whether a user should be displayed a \"show all (rows)\" button" msgid "Whether a user should be displayed a \"show all (rows)\" button." msgstr "Näytetäänkö käyttäjälle \"Näytä kaikki (rivit)\" -painike." @@ -7420,11 +7393,6 @@ msgid "Allow to display all the rows" msgstr "Salli kaikkien rivien näyttäminen" #: libraries/config/messages.inc.php:841 -#| msgid "" -#| "Please note that enabling this has no effect with [kbd]config[/kbd] " -#| "authentication mode because the password is hard coded in the " -#| "configuration file; this does not limit the ability to execute the same " -#| "command directly" msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -7447,7 +7415,6 @@ msgid "Show or hide a column displaying the comments for all tables." msgstr "Näytä tai piilota kommentti -sarake kaikista tauluista." #: libraries/config/messages.inc.php:850 -#| msgid "Table comments" msgid "Show table comments" msgstr "Näytä taulun kommentit" @@ -7457,7 +7424,6 @@ msgstr "" "Näytä tai piilota sarake, joka näyttää kaikkien taulujen luontiajankohdan." #: libraries/config/messages.inc.php:854 -#| msgid "Show Creation timestamp" msgid "Show creation timestamp" msgstr "Näytä luontiajankohta" @@ -7469,7 +7435,6 @@ msgstr "" "ajankohdan." #: libraries/config/messages.inc.php:858 -#| msgid "Show Last check timestamp" msgid "Show last update timestamp" msgstr "Näytä viime päivityksen ajankohta" @@ -7479,7 +7444,6 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:862 -#| msgid "Show Last check timestamp" msgid "Show last check timestamp" msgstr "Näytä viime tarkistuksen ajankohta" @@ -7494,7 +7458,6 @@ msgid "Show field types" msgstr "Näytä kenttätyypit" #: libraries/config/messages.inc.php:869 -#| msgid "Display the function fields in edit/insert mode" msgid "Display the function fields in edit/insert mode." msgstr "Näytä funktiokentät muokkaus- ja lisäystilassa." @@ -7503,7 +7466,6 @@ msgid "Show function fields" msgstr "Näytä funktiokentät" #: libraries/config/messages.inc.php:872 -#| msgid "Where to show the table row links" msgid "Whether to show hint or not." msgstr "Näytetäänkö vihjeet." @@ -7512,9 +7474,6 @@ msgid "Show hint" msgstr "Näytä vihje" #: libraries/config/messages.inc.php:875 -#| msgid "" -#| "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " -#| "output" msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output." @@ -7531,8 +7490,6 @@ msgid "Show detailed MySQL server information" msgstr "Näytä MySQL-palvelimen tarkat tiedot" #: libraries/config/messages.inc.php:881 -#| msgid "" -#| "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgid "" "Defines whether SQL queries generated by phpMyAdmin should be displayed." msgstr "Määrittelee pitääkö phpMyAdminin luomat SQL-kyselyt näyttää." @@ -7551,7 +7508,6 @@ msgid "Retain query box" msgstr "Säilytä SQL-kyselylaatikko" #: libraries/config/messages.inc.php:889 -#| msgid "Allow to display database and table statistics (eg. space usage)" msgid "Allow to display database and table statistics (eg. space usage)." msgstr "Salli tietokannan ja taulun tilastojen (eli tilankäytön) näyttäminen." @@ -7560,8 +7516,6 @@ msgid "Show statistics" msgstr "Näytä tilastot" #: libraries/config/messages.inc.php:893 -#| 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 "" @@ -7879,7 +7833,7 @@ msgid "Table %s has been emptied." msgstr "Taulu %s on tyhjennetty." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8019,8 +7973,8 @@ msgid "No data to display" msgstr "Tietoa ei löydy" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8068,57 +8022,57 @@ msgstr[1] "" msgid "No column selected." msgstr "Ei valittua saraketta." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Ignore errors" msgid "Query error" msgstr "Älä välitä virheistä" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Muokkaa" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeksi" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Koko teksti" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8130,7 +8084,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ei muutoksia" @@ -8956,18 +8910,18 @@ msgstr "MySQL palautti tyhjän tulosjoukon (siis nolla riviä)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 #, 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:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -8976,42 +8930,42 @@ msgid "" msgstr "" "muuttaa mitä tahansa sen asetuksia painamalla vastaavaa \"Valinnat\"-linkkiä" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 #, 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:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Siirry tietokantaan: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Muokkaa asetuksia: %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Siirry taulukkoon: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Rakenne %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Siirry näkymään: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9061,50 +9015,50 @@ msgstr "Tai" msgid "web server upload directory:" msgstr "palvelimen lähetyshakemisto" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Muokkaa/lisää" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, 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:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "ja sen jälkeen" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Lisää uutena rivinä" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 #, fuzzy msgid "Show insert query" msgstr "Näytetään SQL-kysely" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Takaisin" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Lisää uusi rivi" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Palaa tälle sivulle" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Muokkaa seuraavaa riviä" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9114,7 +9068,7 @@ msgstr "" "Sarkaimella voi siirtyä arvosta seuraavaan, Ctrl- ja nuolinäppäimillä pystyy " "siirtymään minne suuntaan tahansa" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9126,11 +9080,11 @@ msgstr "" msgid "Value" msgstr "Arvo" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Näytetään SQL-kysely" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisätyn rivin tunnus: %1$d" @@ -10020,7 +9974,7 @@ msgstr "Korjaa taulu" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" @@ -10037,32 +9991,32 @@ msgid "Delete the table (DROP)" msgstr "Siirry tietokantaan" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analysoi" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Tarkasta" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimoi" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Rakenna uudestaan" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Korjaa" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10090,37 +10044,37 @@ msgstr "Poista ositus" msgid "Check referential integrity:" msgstr "Tarkista viitteiden eheys:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Taulua ei voi siirtää itseensä!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Taulua ei voi kopioida itseensä!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Taulu %s on siirretty %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Taulu %s on kopioitu uuteen tauluun %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Taulun nimi puuttuu!" @@ -10310,7 +10264,7 @@ msgstr "Tiedon vedostusasetukset" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Vedos taulusta" @@ -10334,21 +10288,21 @@ msgstr "Määritys" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Rakenne taululle" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Näkymän rakenne" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Näkymän vararakenne" @@ -10454,7 +10408,7 @@ msgid "Database:" msgstr "Tietokanta" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10561,7 +10515,7 @@ msgid "Data creation options" msgstr "Objektin luontivaihtoehdot" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10630,7 +10584,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10676,61 +10630,61 @@ msgstr "käytössä" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Rajoitteet vedostauluille" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Rajoitteet taululle" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Rajoitteet vedostauluille" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Tauluissa:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Lisää AUTO_INCREMENT-arvo" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYYPIT TAULULLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELAATIOT TAULULLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -10766,7 +10720,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10786,34 +10740,34 @@ msgstr "" msgid "Column names: " msgstr "Sarakkeiden nimet" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Virheellinen CSV-tuonnin parametri: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Virheellinen muoto CSV-syötteessä rivillä %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Virheellinen kenttien määrä CSV-syötteessä rivillä %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Tämä lisäosa ei tue pakattujen tuontien käyttöä!" @@ -10821,27 +10775,27 @@ msgstr "Tämä lisäosa ei tue pakattujen tuontien käyttöä!" msgid "MediaWiki Table" msgstr "MediaWiki-taulu" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." msgstr "Virheellinen muoto CSV-syötteessä rivillä %d." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "Tuo prosenttiyksiköt sopivin desimaaliluvuin (12.00% muotoon .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 #, fuzzy #| msgid "Import currencies ($5.00 to 5.00)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Tuo valuutta-arvot ($5.00 muotoon 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10849,7 +10803,7 @@ msgstr "" "Määritetty XML-tiedosto on joko epämuotoinen tai vaillinainen. Korjaa " "ongelma ja yritä uudestaan." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -10859,23 +10813,23 @@ msgstr "Open Document -laskentataulukko" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -10893,7 +10847,7 @@ msgstr "SQL-yhteensopiva tila" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Älä käytä nolla-arvoissa AUTO_INCREMENT:iä" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14222,15 +14176,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14245,17 +14195,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14277,23 +14228,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Avoinna olevien taulujen määrä." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Avoinna olevien taulujen määrä." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14326,17 +14277,17 @@ msgstr "Taulu %1$s on luotu." msgid "Variable name was expected." msgstr "Taulunimen pohja" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Taulun alkuun" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14359,19 +14310,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15125,7 +15076,7 @@ msgstr "Tee vedos taulusta" msgid "Invalid table name" msgstr "Virheellinen taulun nimi" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16242,7 +16193,7 @@ msgid "at beginning of table" msgstr "Taulun alkuun" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16291,7 +16242,7 @@ msgstr "ositettu" msgid "Edit partitioning" msgstr "Poista ositus" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16427,12 +16378,12 @@ msgstr "VIEW-arvon nimi" msgid "Column names" msgstr "Sarakkeiden nimet" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Nimeä taulu uudelleen" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Go to database" msgid "Delete the view (DROP)" @@ -17639,6 +17590,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert on asetettu arvoon 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Yhteensä %d kirjanmerkki" +#~ msgstr[1] "Yhteensä %d kirjanmerkkiä" + +#~ msgid "private" +#~ msgstr "yksityinen" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s ja %3$s kirjanmerkit on luettu mukaan" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/fr.po b/po/fr.po index 04b9db303a..b961fd79a1 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: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-02-08 13:33+0000\n" "Last-Translator: Marc-Antoine Thevenet \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" @@ -48,7 +48,7 @@ msgid "Table comments:" msgstr "Commentaires sur la table : " #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -102,7 +102,7 @@ msgstr "Type" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -164,16 +164,16 @@ msgid "Comments" msgstr "Commentaires" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Primaire" -#: db_datadict.php:165 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:376 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:141 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:446 @@ -197,17 +197,17 @@ msgstr "Primaire" msgid "No" msgstr "Non" -#: db_datadict.php:165 js/messages.php:519 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:521 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:143 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -261,7 +261,7 @@ msgstr "Tables" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -413,23 +413,23 @@ msgid "Point:" msgstr "Point : " #: gis_data_editor.php:216 gis_data_editor.php:243 gis_data_editor.php:299 -#: gis_data_editor.php:372 js/messages.php:508 +#: gis_data_editor.php:372 js/messages.php:510 msgid "X" msgstr "X" #: gis_data_editor.php:219 gis_data_editor.php:247 gis_data_editor.php:303 -#: gis_data_editor.php:378 js/messages.php:509 +#: gis_data_editor.php:378 js/messages.php:511 msgid "Y" msgstr "Y" #: gis_data_editor.php:241 gis_data_editor.php:297 gis_data_editor.php:370 -#: js/messages.php:511 +#: js/messages.php:513 #, php-format msgid "Point %d" msgstr "Point %d" #: gis_data_editor.php:254 gis_data_editor.php:310 gis_data_editor.php:388 -#: js/messages.php:517 +#: js/messages.php:519 msgid "Add a point" msgstr "Ajouter un point" @@ -451,7 +451,7 @@ msgstr "Anneau intérieur %d : " msgid "Add a linestring" msgstr "Ajouter une ligne" -#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:518 +#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:520 msgid "Add an inner ring" msgstr "Ajouter un anneau intérieur" @@ -468,12 +468,12 @@ msgstr "Ajouter un polygone" msgid "Add geometry" msgstr "Ajouter géométrie" -#: gis_data_editor.php:411 js/messages.php:349 libraries/DbSearch.php:463 +#: gis_data_editor.php:411 js/messages.php:351 libraries/DbSearch.php:463 #: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:139 #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -503,7 +503,7 @@ msgstr "Ajouter géométrie" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Exécuter" @@ -523,7 +523,7 @@ msgstr "" msgid "Succeeded" msgstr "Succès" -#: import.php:58 js/messages.php:592 +#: import.php:58 js/messages.php:594 msgid "Failed" msgstr "Échec" @@ -531,7 +531,7 @@ msgstr "Échec" msgid "Incomplete params" msgstr "Paramètres incomplets" -#: import.php:184 +#: import.php:185 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -541,15 +541,15 @@ msgstr "" "Veuillez vous référer à la %sdocumentation%s pour trouver le moyen de " "contourner cette limite." -#: import.php:360 import.php:665 +#: import.php:361 import.php:666 msgid "Showing bookmark" msgstr "Affichage du signet" -#: import.php:376 import.php:661 +#: import.php:377 import.php:662 msgid "The bookmark has been deleted." msgstr "Le signet a été effacé." -#: import.php:474 +#: import.php:475 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -559,12 +559,12 @@ msgstr "" "open_basedir activée mais n'a pas accès au répertoire %s (pour les fichiers " "temporaires)." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:491 import.php:568 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "Le fichier n'a pu être lu !" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:502 import.php:517 import.php:542 import.php:557 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -573,7 +573,7 @@ msgstr "" "Vous avez tenté d'importer un fichier dont le mode de compression (%s) n'est " "pas supporté par votre configuration PHP ou est désactivé dans celle-ci." -#: import.php:574 +#: import.php:575 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -583,23 +583,26 @@ msgstr "" "n'a été fourni, ou encore la taille du fichier a dépassé la limite permise " "par votre configuration de PHP. Voir [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:627 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "" "Chargement impossible des greffons d'importation, veuillez vérifier votre " "installation !" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:669 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "Signet %s créé." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "L'importation s'est terminée avec succès, %d requêtes exécutées." +#: import.php:679 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "L'importation s'est terminée avec succès, %d requêtes exécutées." +msgstr[1] "L'importation s'est terminée avec succès, %d requêtes exécutées." -#: import.php:705 +#: import.php:710 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -608,7 +611,7 @@ msgstr "" "La limite de temps a été atteinte; si vous voulez terminer l'importation, " "%ssoumettez à nouveau%s le même fichier et l'importation continuera." -#: import.php:715 +#: import.php:720 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -621,8 +624,8 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Impossible de charger l'état d'avancement de l'importation." -#: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: import_status.php:116 js/messages.php:450 js/messages.php:602 +#: libraries/Util.php:795 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Retour" @@ -646,7 +649,7 @@ msgstr "" msgid "General settings" msgstr "Paramètres généraux" -#: index.php:191 js/messages.php:625 +#: index.php:191 js/messages.php:627 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:287 msgid "Change password" @@ -718,10 +721,11 @@ msgstr "Afficher les informations relatives à PHP" msgid "Version information:" msgstr "Version : " -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:442 libraries/Util.php:509 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Documentation" @@ -855,96 +859,96 @@ msgstr "" "Ce serveur utilise Suhosin. Veuillez vous référer à la %sdocumentation%s " "pour en connaître les conséquences possibles." -#: js/messages.php:39 libraries/import.lib.php:207 sql.php:161 +#: js/messages.php:41 libraries/import.lib.php:207 sql.php:161 msgid "\"DROP DATABASE\" statements are disabled." msgstr "La commande «DROP DATABASE» est désactivée." -#: js/messages.php:45 +#: js/messages.php:47 msgid "Confirm" msgstr "Confirmer" -#: js/messages.php:46 +#: js/messages.php:48 #, php-format msgid "Do you really want to execute \"%s\"?" msgstr "Voulez-vous vraiment exécuter «%s» ?" -#: js/messages.php:48 libraries/mult_submits.lib.php:440 +#: js/messages.php:50 libraries/mult_submits.lib.php:440 msgid "You are about to DESTROY a complete database!" msgstr "Vous êtes sur le point de DÉTRUIRE une base de données !" -#: js/messages.php:50 +#: js/messages.php:52 msgid "You are about to DESTROY a complete table!" msgstr "Vous êtes sur le point de DÉTRUIRE une table au complet !" -#: js/messages.php:52 +#: js/messages.php:54 msgid "You are about to TRUNCATE a complete table!" msgstr "Vous êtes sur le point de VIDER une table au complet !" -#: js/messages.php:53 +#: js/messages.php:55 msgid "Delete tracking data for this table?" msgstr "Supprimer les données de suivi pour cette table ?" -#: js/messages.php:55 +#: js/messages.php:57 msgid "Delete tracking data for these tables?" msgstr "Supprimer les données de suivi pour ces tables ?" -#: js/messages.php:57 +#: js/messages.php:59 msgid "Delete tracking data for this version?" msgstr "Supprimer les données de suivi pour cette version ?" -#: js/messages.php:59 +#: js/messages.php:61 msgid "Delete tracking data for these versions?" msgstr "Supprimer les données de suivi pour ces versions ?" -#: js/messages.php:60 +#: js/messages.php:62 msgid "Delete entry from tracking report?" msgstr "Supprimer l'entrée du rapport de suivi ?" -#: js/messages.php:61 +#: js/messages.php:63 msgid "Deleting tracking data" msgstr "Suppression des données de suivi" -#: js/messages.php:62 +#: js/messages.php:64 msgid "Dropping Primary Key/Index" msgstr "Destruction de clé primaire / index" -#: js/messages.php:63 +#: js/messages.php:65 msgid "Dropping Foreign key." msgstr "Suppression de la clé étrangère." -#: js/messages.php:65 +#: js/messages.php:67 msgid "This operation could take a long time. Proceed anyway?" msgstr "Cette opération pourrait être longue. Procéder quand même ?" -#: js/messages.php:67 +#: js/messages.php:69 #, php-format msgid "Do you really want to delete user group \"%s\"?" msgstr "Voulez-vous vraiment supprimer le groupe «%s» ?" -#: js/messages.php:69 +#: js/messages.php:71 #, php-format msgid "Do you really want to delete the search \"%s\"?" msgstr "Voulez-vous vraiment supprimer la recherche «%s» ?" -#: js/messages.php:71 +#: js/messages.php:73 msgid "You have unsaved changes; are you sure you want to leave this page?" msgstr "" "Des changements n'ont pas été sauvegardés; êtes-vous sûr de vouloir quitter " "cette page ?" -#: js/messages.php:73 +#: js/messages.php:75 msgid "Do you really want to revoke the selected user(s) ?" msgstr "Voulez-vous vraiment supprimer les utilisateurs sélectionnés ?" -#: js/messages.php:75 +#: js/messages.php:77 msgid "Do you really want to delete this central column?" msgstr "Voulez-vous vraiment supprimer cette colonne centrale ?" -#: js/messages.php:77 +#: js/messages.php:79 msgid "Do you really want to delete the selected items?" msgstr "Voulez-vous vraiment supprimer les éléments sélectionnés ?" -#: js/messages.php:79 +#: js/messages.php:81 msgid "" "Do you really want to DROP the selected partition(s)? This will also DELETE " "the data related to the selected partition(s)!" @@ -952,19 +956,19 @@ msgstr "" "Voulez-vous vraiment supprimer les partitions sélectionnées ? Cela va " "également supprimer les données associées aux partitions sélectionnées !" -#: js/messages.php:83 +#: js/messages.php:85 msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "Voulez-vous vraiment tronquer les partitions sélectionnées ?" -#: js/messages.php:85 +#: js/messages.php:87 msgid "Do you really want to remove partitioning?" msgstr "Voulez-vous vraiment enlever le partitionnement ?" -#: js/messages.php:86 +#: js/messages.php:88 msgid "Do you really want to RESET SLAVE?" msgstr "Voulez-vous vraiment exécuter « RESET SLAVE » ?" -#: js/messages.php:88 +#: js/messages.php:90 msgid "" "This operation will attempt to convert your data to the new collation. In " "rare cases, especially where a character doesn't exist in the new collation, " @@ -978,17 +982,17 @@ msgstr "" "affichage des données dans le nouveau classement; dans ce cas nous vous " "suggérons de revenir au classement original et de consulter les conseils à " -#: js/messages.php:94 +#: js/messages.php:96 msgid "Garbled Data" msgstr "Données déformées" -#: js/messages.php:96 +#: js/messages.php:98 msgid "Are you sure you wish to change the collation and convert the data?" msgstr "" "Êtes-vous certain de vouloir modifier le classement et de convertir les " "données ?" -#: js/messages.php:98 +#: js/messages.php:100 msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -1005,7 +1009,7 @@ msgstr "" "d'édition de colonne (le lien \"Modifier\") sur la page de structure de " "table." -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1013,160 +1017,160 @@ msgstr "" "Êtes-vous certain de vouloir modifier le classement de toutes les colonnes " "et de convertir les données ?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Sauvegarder et fermer" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Réinitialiser" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Tout réinitialiser" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Formulaire incomplet !" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Sélectionnez au moins l'une des options !" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Veuillez saisir un nombre valide !" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Veuillez saisir une longueur valide !" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Ajouter un index" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Modifier un index" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Ajouter %s colonne(s) à l'index" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Créer un index sur une seule colonne" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Créer un index sur plusieurs colonnes" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Autres colonnes formant l'index :" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Veuillez sélectionner les colonnes de l'index." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Vous devez ajouter au moins une colonne." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Aperçu SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Simuler la requête" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Lignes correspondantes :" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "Requête SQL : " #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Valeurs en Y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Le nom de serveur est vide !" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Le nom d'utilisateur est vide !" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Le mot de passe est vide !" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Les mots de passe doivent être identiques !" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Effacement des utilisateurs sélectionnés" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Fermer" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Le modèle a été créé." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Le modèle a été chargé." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Le modèle a été modifié." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Le modèle a été supprimé." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Autres" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "," -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Connexions / Processus" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "La configuration locale de la surveillance est incompatible !" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1178,155 +1182,155 @@ msgstr "" "courante ne fonctionnera probablement pas. Veuillez réinitialiser votre " "configuration via le menu Paramètres." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Efficacité du cache de requêtes" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Utilisation du cache de requêtes" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Cache de requêtes utilisé" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Utilisation processeur" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Mémoire système" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Zone d'échange" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Charge moyenne" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Mémoire système" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Mémoire cache" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Mémoire-tampon" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Mémoire libre" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Mémoire utilisée" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Zone d'échange totale" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Zone d'échange en cache" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Zone d'échange utilisée" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Zone d'échange libre" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Octets envoyés" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Octets reçus" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Connexions" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Processus" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "o" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "Kio" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "Mio" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "Gio" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "Tio" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "Pio" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "Eio" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d table(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Questions" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Trafic" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Paramètres" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Ajouter graphique à la grille" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Veuillez ajouter au moins une variable à la série !" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1338,47 +1342,47 @@ msgstr "Veuillez ajouter au moins une variable à la série !" msgid "None" msgstr "Aucune" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Reprendre la surveillance" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Mettre la surveillance en pause" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Lancer l'actualisation automatique" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Arrêter l'actualisation automatique" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log et slow_query_log sont activés." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log est activé." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log est activé." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "general_log et slow_query_log sont désactivés." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output n'est pas réglé à TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output est réglé à TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1389,12 +1393,12 @@ msgstr "" "prennent plus de %d secondes. Il est recommandé de régler long_query_time à " "0-2 secondes, selon votre système." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time est réglé à %d seconde(s)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1403,30 +1407,30 @@ msgstr "" "défaut lors du rémarrage du serveur : " #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Régler log_output à %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Activer %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Désactiver %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Régler long_query_time à %d secondes." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1434,61 +1438,61 @@ msgstr "" "Vous ne pouvez changer ces variables. Connectez-vous en tant que root ou " "contactez l'administrateur du serveur." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Changer les paramètres" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Paramètres courants" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Titre du graphique" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Différentiel" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Divisé par %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Unité" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Depuis le journal des requêtes lentes" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Depuis le journal général" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" "Le nom de la base de données n'est pas connu pour cette requête dans les " "logs du serveur." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Analyse des journaux en cours" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" "Analyse et chargement des journaux en cours. Ceci peut prendre un certain " "temps." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Annuler la requête" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1499,7 +1503,7 @@ msgstr "" "de regroupement, donc les autres propriétés des requêtes, comme l'heure de " "début, peuvent différer." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1508,31 +1512,31 @@ msgstr "" "Puisque le groupement des requêtes INSERT a été sélectionné, les requêtes " "INSERT vers une même table sont groupées, peu importe les données insérées." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "Fichier journal chargé. Requêtes exécutées dans ce laps de temps : " -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Aller à la table du journal" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Aucune donnée" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "Journal analysé, mais aucune donnée trouvée pour ce laps de temps." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analyse en cours…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Expliquer les résultats" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1540,7 +1544,7 @@ msgstr "Expliquer les résultats" msgid "Status" msgstr "État" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1550,58 +1554,58 @@ msgstr "État" msgid "Time" msgstr "Moment" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Temps total : " -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Profilage des résultats" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Table" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Tableau" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Options de filtrage de la table journal" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filtre" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filtrer les requêtes par mot ou expression régulière : " -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Grouper les requêtes en ignorant la partie variable des clauses WHERE" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Somme des lignes regroupées : " -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Total : " -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Chargement des journaux en cours" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Échec de rafraîchissement de la surveillance" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1610,28 +1614,28 @@ msgstr "" "Le serveur a retourné une réponse invalide. Votre session a probablement " "expiré. Veuillez recharger la page et vous connecter à nouveau." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Recharger la page" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Lignes modifiées : " -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Échec d'analyse du fichier de configuration. Il ne contient pas de code JSON " "valide." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Échec de construction du graphique avec la configuration importée. " "Réinitialisation à la configuration par défaut…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1640,63 +1644,63 @@ msgstr "" msgid "Import" msgstr "Importer" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Importer la configuration de surveillance" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Veuillez choisir le fichier à importer." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Aucun fichier disponible sur le serveur pour une importation !" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Analyser la requête" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Conseiller" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Impact de performance possible" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Problème" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Recommandation" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Détails de règle" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Alignement" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Variable / formule utilisée" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Test" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Formatage SQL…" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "Paramètres manquants !" -#: js/messages.php:350 +#: js/messages.php:352 #: 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,60 +1712,60 @@ msgstr "Paramètres manquants !" msgid "Cancel" msgstr "Annuler" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Paramètres liés à la page" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Appliquer" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Chargement en cours…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Requête abandonnée !" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "Requête en traitement" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "Échec de cette requête !" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Erreur dans le traitement de la requête" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Code d'erreur : %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Texte de l'erreur : %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Aucune base de données n'a été sélectionnée." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Suppression de la colonne" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Ajout de clé primaire" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1771,55 +1775,55 @@ msgstr "Ajout de clé primaire" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Cliquer pour éliminer ce message" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Changement de nom de la base de données" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Copie de la base de données" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Changement du jeu de caractères" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Activer la vérification des clés étrangères" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Impossible d'obtenir le nombre réel de lignes." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "En recherche" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Cacher les résultats de recherche" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Afficher les résultats de recherche" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Affichage en cours" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Destruction en cours" -#: js/messages.php:391 +#: js/messages.php:393 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:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1835,45 +1839,45 @@ msgstr "La définition d'une fonction doit comporter un énoncé RETURN !" msgid "Export" msgstr "Exporter" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "Éditeur ENUM/SET" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Valeurs pour la colonne %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Valeurs pour une nouvelle colonne" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Saisir chaque valeur dans un champ séparé." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Ajouter %d valeur(s)" -#: js/messages.php:403 +#: js/messages.php:405 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:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Cacher zone SQL" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Montrer zone SQL" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1883,7 +1887,7 @@ msgstr "Montrer zone SQL" msgid "Edit" msgstr "Modifier" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1894,41 +1898,41 @@ msgstr "Modifier" msgid "Delete" msgstr "Effacer" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 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:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Afficher les valeurs de la table liée" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Aucune requête sauvegardée automatiquement" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Variable %d :" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Choisir" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Sélecteur de colonne" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Chercher dans cette liste" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1938,15 +1942,15 @@ msgstr "" "centrales pour la base de données %s comporte des colonnes qui ne sont pas " "présentes dans la table actuelle." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Plus" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Êtes-vous certain ?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1954,51 +1958,51 @@ msgstr "" "Cette action peut changer certaines définitions de colonnes.
Êtes-vous " "sûr de vouloir continuer ?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Continuer" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Ajouter une clé primaire" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Une clé primaire a été ajoutée." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Vous êtes redirigé vers l'étape suivante…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Fin d'étape" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Deuxième étape de la normalisation (2FN)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Fermer" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Confirmer les dépendances partielles" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Les dépendances partielles sélectionnées sont les suivantes :" -#: js/messages.php:444 +#: js/messages.php:446 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,21 +2010,21 @@ msgstr "" "Remarque: a, b -> d, f implique que les valeurs des colonnes a et b " "combinées peuvent déterminer les valeurs des colonnes d et f." -#: js/messages.php:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Pas de dépendances partielles sélectionnées !" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Masquer la liste des dépendances partielles" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2028,41 +2032,41 @@ 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:456 +#: js/messages.php:458 msgid "Step" msgstr "Étape" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Les actions suivantes seront effectuées :" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "Supprimer les colonnes %s de la table %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Créer la table suivante :" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Troisième étape de la normalisation (3FN)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Confirmer les dépendances transitives" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Les dépendances sélectionnées sont les suivantes :" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Aucune dépendance sélectionnée !" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2072,125 +2076,125 @@ msgstr "Aucune dépendance sélectionnée !" msgid "Save" msgstr "Sauvegarder" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Cacher les critères de recherche" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Afficher les critères de recherche" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Recherche en intervalle" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Maximum pour la colonne :" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Valeur minimum pour la colonne :" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Valeur minimum :" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Valeur maximum :" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Cacher les critères de recherche et remplacement" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Afficher les critères de recherche et remplacement" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Chaque point représente une ligne de données." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Survoler un point montrera sa description." -#: js/messages.php:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Sélectionnez deux colonnes" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Sélectionnez deux colonnes différentes" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Données reliées à ce point" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Copier" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Point" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Ligne" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Polygone" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Géométrie" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "Anneau intérieur" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Anneau extérieur" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Voulez-vous copier la clé de cryptage ?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Clé de cryptage" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2198,24 +2202,24 @@ msgstr "" "Indique que vous avez fait des modifications à cette page; on vous demandera " "confirmation avant d'abandonner les modifications" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Sélectionnez la clé référencée" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Choisissez la clé étrangère" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Veuillez choisir la clé primaire ou un index unique !" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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,76 +2227,76 @@ msgstr "" "Vous n'avez pas sauvegardé les changements. Ils seront perdus si vous ne les " "sauvegardez pas. Voulez-vous continuer ?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Nom de la page" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Sauvegarder la page" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Ouvrir la page" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Supprimer la page" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sans titre" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Veuillez sélectionner une page pour continuer" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Veuillez saisir un nom de page valide" -#: js/messages.php:548 +#: js/messages.php:550 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:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "La page a été correctement supprimée" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Exporter un schéma relationnel" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Les modifications ont été sauvegardées" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Ajouter une option pour la colonne «%s»." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d objet(s) créé(s)." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Exécuter" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Appuyez sur la touche d'échappement pour annuler l'édition." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2300,15 +2304,15 @@ msgstr "" "Vous avez modifier des données non encore sauvegardées, êtes vous sûr de " "vouloir quitter cette page avant de sauvegarder ?" -#: js/messages.php:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Faire glisser pour réordonner." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Cliquer pour trier les résultats sur cette colonne." -#: js/messages.php:567 +#: js/messages.php:569 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 " @@ -2318,26 +2322,26 @@ msgstr "" "ASC/DESC.
- Ctrl + clic ou Alt + clic (sur Mac : Maj + Option + Clic) " "pour enlever la colonne de la clause ORDER BY" -#: js/messages.php:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Cliquer pour marquer/enlever les marques." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Double-cliquez pour copier le nom de la colonne." -#: js/messages.php:574 +#: js/messages.php:576 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Tout afficher" -#: js/messages.php:578 +#: js/messages.php:580 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2346,13 +2350,13 @@ msgstr "" "cases à cocher ainsi que les liens Edition, Copie et Supprimer pourrait ne " "plus fonctionner après prise en compte de la modification." -#: js/messages.php:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2360,106 +2364,106 @@ msgstr "" "Voulez-vous vraiment voir toutes les lignes ? Pour une grande table, cela " "pourrait faire planter le navigateur." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Longueur originale" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "annuler" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Arrêts prématurés" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Succès" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "État de l'importation" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Déposez des fichiers ici" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Choisissez d'abord une base de données" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Imprimer" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Suivre le lien :" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Copier le nom de la colonne." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Générer un mot de passe" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Générer" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "plus" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Montrer le panneau" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Cacher le panneau" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Montrer les éléments de navigation cachés." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Relier au panneau principal" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Supprimer la liaison au panneau principal" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2469,27 +2473,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:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", dernière version stable : " -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "à jour" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Créer une vue" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Envoyer le rapport d'erreurs" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Soumettre un rapport d'erreurs" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2497,15 +2501,15 @@ msgstr "" "Une erreur JavaScript fatale s'est produite. Désirez-vous envoyer un rapport " "d'erreur ?" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Changer les paramètres du rapport" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Montrer les détails du rapport" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2513,7 +2517,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:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2523,61 +2527,61 @@ msgstr "" "l'envoi, certains des champs pourraient être ignorés, en raison de la " "configuration max_input_vars de PHP." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Des erreurs ont été détectées sur le serveur !" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Veuillez regarder au bas de cette fenêtre." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Ignorer tout" -#: js/messages.php:688 +#: js/messages.php:690 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:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Exécuter cette requête à nouveau ?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Voulez-vous vraiment supprimer ce signet ?" -#: js/messages.php:702 +#: js/messages.php:704 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:704 +#: js/messages.php:706 #, 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:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "%s arguments passés" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Montrer les arguments" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Cacher les arguments" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Temps nécessaire :" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2593,349 +2597,349 @@ msgstr "" "Dans Safari, ce problème est habituellement causé par l'utilisation de la « " "Navigation en mode privé »." -#: js/messages.php:711 +#: js/messages.php:713 msgid "Copy tables to" msgstr "Copier les tables vers" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "Ajouter un préfixe de table" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "Remplacer la table ayant le préfixe" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copier la table avec un préfixe" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Précédent" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Suivant" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Aujourd'hui" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Janvier" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Février" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Mars" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Avril" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Mai" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Juin" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Juillet" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Août" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Septembre" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Octobre" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Novembre" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Décembre" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Janvier" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Février" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mars" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Avril" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Juin" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Juillet" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Août" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Septembre" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Octobre" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Novembre" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Décembre" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Dimanche" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Lundi" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Mardi" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Mercredi" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Jeudi" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Vendredi" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Samedi" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Dim" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Jeu" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sam" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Je" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Heure" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minute" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Seconde" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Ce champ est obligatoire" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Corrigez ce champ" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Veuillez saisir une adresse courriel valide" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Veuillez saisir une URL valide" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Veuillez saisir une date valide" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Veuillez saisir une date valide (ISO)" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Veuillez saisir un nombre valide" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Veuillez saisir un numéro de carte de crédit valide" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Veuillez saisir uniquement des chiffres" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Veuillez saisir la même valeur à nouveau" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Veuillez saisir au maximum {0} caractères" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Veuillez saisir au moins {0} caractères" -#: js/messages.php:915 +#: js/messages.php:917 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:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Veuillez saisir une valeur entre {0} et {1}" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "Veuillez saisir une valeur inférieure ou égale à {0}" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "Veuillez saisir une valeur supérieure ou égale à {0}" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Veuillez saisir une date ou une heure valide" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Veuillez saisir une valeur hexadécimale valide" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Erreur" @@ -2989,34 +2993,34 @@ msgstr "" "Caractère imprévu à la ligne %1$s. Une tabulation était attendue, mais \"%2$s" "\" a été trouvé." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Le fichier de configuration (%s) est illisible." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permissions sur le fichier de configuration incorrectes, il ne doit pas être " "en écriture pour tout le monde !" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Taille du texte" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Réduire" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Développer" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Exécuter la requête à nouveau" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3036,76 +3040,59 @@ msgstr "Base de données" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Total de %d signet" -msgstr[1] "Total de %d signets" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "privé" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "partagé" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, incluant les signets de type «%2$s» et «%3$s»" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Aucun signet" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Durant la session en cours" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Expliquer" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profilage" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Signet" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "La requête a échoué" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Daté du" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "Console de requête SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Console de requêtes SQL" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Vider" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Historique" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3123,125 +3110,125 @@ msgstr "Historique" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Options" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Signets" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Déboguer SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Faites Ctrl+Entrée pour exécuter la requête" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Faites Entrée pour exécuter la requête" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "croissant" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "décroissant" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Ordre :" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Nombre" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Ordre d'exécution" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Temps nécessaire" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Trier par :" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Regrouper les requêtes" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Dissocier les groupes" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Montrer l'itinéraire d'appel" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Cacher l'itinéraire d'appel" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Nombre :" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Actualiser" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Ajouter" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Ajouter un signet" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Intitulé" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Base de données cible" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Partager ce signet" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Mettre par défaut" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Toujours développer les messages" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Afficher l'historique des requêtes au début" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Montrer la requête courante" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3249,17 +3236,17 @@ msgstr "" "Exécuter les requêtes avec Entrée et insérer une nouvelle ligne avec Maj + " "Entrée. Ce choix peut être rendu permanent via les paramètres." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Passer au thème sombre" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Impossible de lire le fichier de configuration !" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3267,20 +3254,20 @@ 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:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Le serveur ne répond pas." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 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:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Détails…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "La connexion au controluser tel que défini dans votre configuration a échoué." @@ -3592,7 +3579,7 @@ msgstr "Peut être approximatif. Voir [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Votre requête SQL a été exécutée avec succès." @@ -3716,17 +3703,17 @@ msgstr "Téléchargement arrêté par l'extension." msgid "Unknown error in file upload." msgstr "Erreur inconnue durant le téléchargement." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Erreur lors du déplacement du fichier téléchargé, voir [doc@faq1-11]FAQ " "1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Erreur lors du déplacement du fichier téléversé." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Impossible de lire le fichier téléversé." @@ -3790,8 +3777,8 @@ msgid "Keyname" msgstr "Nom de l'index" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3841,13 +3828,13 @@ msgstr "L'index %s a été effacé." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Supprimer" @@ -3949,7 +3936,7 @@ msgstr "Privilèges" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Opérations" @@ -3964,7 +3951,7 @@ msgstr "Suivi" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4344,11 +4331,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "Chemin des images inexistant pour le thème %s !" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Prévisualisation non disponible." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "utiliser celui-ci" @@ -4676,21 +4663,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Spatial" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Taille maximum: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Analyse statique :" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "%d erreurs trouvées lors de l'analyse." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4701,32 +4688,32 @@ msgstr "%d erreurs trouvées lors de l'analyse." msgid "MySQL said: " msgstr "MySQL a répondu: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Expliquer SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Ne pas expliquer SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "Analyser les explications au %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "Sans source PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "Exécuter la requête" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Créer code source PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Éditer en ligne" @@ -4815,6 +4802,10 @@ msgstr "par heure" msgid "per day" msgstr "par jour" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "partagé" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Rechercher : " @@ -4923,11 +4914,11 @@ msgstr "Ajouter une colonne" msgid "Attributes" msgstr "Attributs" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Impossible de lire le fichier de configuration !" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4935,34 +4926,34 @@ msgstr "" "Ceci indique habituellement qu'il y a une erreur de syntaxe, veuillez " "vérifier si une erreur s'affiche plus bas." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Chargement de la configuration par défaut impossible depuis %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Indice de serveur invalide: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nom d'hôte invalide pour le serveur %1$s. Veuillez vérifier votre " "configuration." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Serveur %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" "Le fichier de configuration contient un type d'authentification invalide : " -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4974,24 +4965,24 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin utilise actuellement le fuseau horaire " "par défaut du serveur de base de données." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format 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:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Erreur: disparité du jeton" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Tentative d'écrasement de GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "vulnérabilité possible" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "Clé numérique détectée" @@ -5733,13 +5724,13 @@ msgstr "Afficher les noms de colonnes en première ligne" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Colonnes entourées par" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Caractère d'échappement" @@ -5757,12 +5748,12 @@ msgstr "Enlève les caractères de fin de ligne à l'intérieur des colonnes" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Colonnes terminées par" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Lignes terminées par" @@ -6354,7 +6345,7 @@ msgid "Column names in first row" msgstr "Noms de colonnes en première ligne" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Ne pas importer les lignes vides" @@ -7930,7 +7921,7 @@ msgid "Table %s has been emptied." msgstr "La table %s a été vidée." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "La vue %s a été supprimée." @@ -8064,8 +8055,8 @@ msgid "No data to display" msgstr "Rien à afficher" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8103,53 +8094,53 @@ msgstr[1] "Les identifiants '%s' sont des mots-clés MySQL réservés." msgid "No column selected." msgstr "Aucune colonne n'a été sélectionnée." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Les colonnes ont été déplacées avec succès." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Erreur de requête" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Modifier" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Index" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spatial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Texte entier" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Valeurs distinctes" @@ -8159,7 +8150,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Il manque l'extension %s. Veuillez vérifier votre configuration PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Pas de modifications" @@ -8966,58 +8957,58 @@ msgstr "MySQL a retourné un résultat vide (aucune ligne)." msgid "[ROLLBACK occurred.]" msgstr "[Un ROLLBACK a eu lieu]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Modifier sa structure via le lien «Structure»." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Aller à la base de données : %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Paramètres de modification pour %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Aller à la table : %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Structure de %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Aller à la vue : %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9067,55 +9058,55 @@ msgstr "Ou" msgid "web server upload directory:" msgstr "répertoire de transfert du serveur web : " -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Modifier/Insérer" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuer l'insertion avec %s lignes" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "et ensuite" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Sauvegarder une nouvelle ligne" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Sauvegarder une nouvelle ligne en ignorant les erreurs" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Afficher l'énoncé d'insertion" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Retourner à la page précédente" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Insérer une nouvelle ligne" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Demeurer sur cette page" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Modifier la ligne suivante" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9127,11 +9118,11 @@ msgstr "" msgid "Value" msgstr "Valeur" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Affichage de la requête SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Identifiant de la ligne insérée : %1$d" @@ -10010,7 +10001,7 @@ msgstr "Réparer la table" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Supprimer les données ou la table" @@ -10023,32 +10014,32 @@ msgid "Delete the table (DROP)" msgstr "Supprimer la table (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analyser" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Vérifier" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimiser" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Reconstruire" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Réparer" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Tronquer" @@ -10074,35 +10065,35 @@ msgstr "Supprimer le partitionnement" msgid "Check referential integrity:" msgstr "Vérifier l'intégrité référentielle : " -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "On ne peut déplacer la table sur elle-même !" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "On ne peut copier la table sur elle-même !" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, 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:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "La table %s a été copiée vers %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Le nom de la table est vide !" @@ -10281,7 +10272,7 @@ msgstr "Options d'exportation" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Contenu de la table" @@ -10305,21 +10296,21 @@ msgstr "Définition" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Structure de la table" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Structure de la vue" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Doublure de structure pour la vue" @@ -10409,7 +10400,7 @@ msgid "Database:" msgstr "Base de données : " #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Données : " @@ -10511,7 +10502,7 @@ msgid "Data creation options" msgstr "Options de création de données" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Vider la table avant d'insérer" @@ -10596,7 +10587,7 @@ msgstr "Il semble que votre base de données utilise des procédures;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 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 " @@ -10640,52 +10631,52 @@ msgstr "utilisé" msgid "It appears your database uses views;" msgstr "Il semble que votre base de données utilise des vues;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Contraintes pour les tables exportées" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Contraintes pour la table" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Index pour les tables exportées" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Index pour la table" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT pour les tables exportées" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT pour la table" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "TYPES MIME POUR LA TABLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS POUR LA TABLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Il semble que votre table utilise des déclencheurs;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "(Voir ci-dessous la vue réelle)" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Erreur de lecture des données : " @@ -10717,7 +10708,7 @@ msgstr "" "l'importation (Ajouter ON DUPLICATE KEY UPDATE)" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10741,15 +10732,15 @@ msgstr "" msgid "Column names: " msgstr "Nom des colonnes : " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Paramètres invalides pour l'importation CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10759,18 +10750,18 @@ msgstr "" "orthographiés correctement, séparés par des virgules et non entourés de " "guillemets." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Format invalide pour les données CSV à la ligne %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Nombre de colonnes invalide dans les données CSV à la ligne %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Ce greffon ne supporte pas les importations en format comprimé !" @@ -10778,23 +10769,23 @@ msgstr "Ce greffon ne supporte pas les importations en format comprimé !" msgid "MediaWiki Table" msgstr "Tableau MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Format mediawiki invalide à la ligne :
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" "Importer les pourcentages en tant que décimales (12.00% devient .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importer les valeurs de monnaie ($5.00 devient 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10802,7 +10793,7 @@ msgstr "" "Le fichier XML spécifié était mal formé ou incomplet. Veuillez le corriger " "et essayer à nouveau." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "La feuille de calcul OpenDocument n'a pas pu être parcourue !" @@ -10810,12 +10801,12 @@ msgstr "La feuille de calcul OpenDocument n'a pas pu être parcourue !" msgid "ESRI Shape File" msgstr "Fichier de formes ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Erreur lors de l'importation du fichier de formes ESRI :«%s»." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10823,12 +10814,12 @@ msgstr "" "Vous avez tenté d'importer un fichier invalide ou ce fichier contient des " "données invalides !" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "Les données spatiales MySQL ne supportent pas le type ESRI «%s»." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Le fichier importé ne contient aucune donnée !" @@ -10840,7 +10831,7 @@ msgstr "Mode de compatibilité SQL : " msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ne pas utiliser AUTO_INCREMENT pour la valeur zéro" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13877,15 +13868,11 @@ msgstr "%1$d valeurs étaient attendues, mais %2$d ont été trouvées." msgid "An opening bracket followed by a set of values was expected." msgstr "Une parenthèse gauche suivie d'un ensemble de valeurs était attendus." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "Une parenthèse gauche était attendue." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "Une virgule ou une parenthèse droite était attendus" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Une virgule ou une parenthèse droite était attendus." @@ -13898,17 +13885,18 @@ 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:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Un alias a été constaté précédemment." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Point inattendu." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Un alias était attendu." @@ -13926,19 +13914,19 @@ msgstr "Un décalage était prévu." msgid "This option conflicts with \"%1$s\"." msgstr "Cette option entre en conflit avec « %1$s »." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "L'ancien nom de la table était attendu." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Le mot clé « TO » était attendu." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Le nouveau nom de la table était attendu." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Une opération de renommage était attendue." @@ -13964,15 +13952,15 @@ 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:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Début d'énoncé inattendu." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Type d'énoncé non reconnu." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Aucune transaction n'a été précédemment démarrée." @@ -13995,15 +13983,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Mot clé non reconnu." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Le nom de l'entité était attendu." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Le mot clé « RETURNS » était attendu." @@ -14699,7 +14687,7 @@ msgstr "Afficher le schéma de la table" msgid "Invalid table name" msgstr "Nom de table invalide" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Ligne : %1$s, Colonne : %2$s, Erreur : %3$s" @@ -15620,7 +15608,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:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Partitions" @@ -15653,7 +15641,7 @@ msgstr "Partitionner la table :" msgid "Edit partitioning" msgstr "Modifier le partitionnement" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Modifier la vue" @@ -15768,11 +15756,11 @@ msgstr "Nom de la vue" msgid "Column names" msgstr "Nom des colonnes" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Changer le nom de la vue pour" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Supprimer la vue (DROP)" @@ -17059,6 +17047,20 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Le paramètre concurrent_insert a une valeur de 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Total de %d signet" +#~ msgstr[1] "Total de %d signets" + +#~ msgid "private" +#~ msgstr "privé" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, incluant les signets de type «%2$s» et «%3$s»" + +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Une virgule ou une parenthèse droite était attendus" + # OK #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " diff --git a/po/fy.po b/po/fy.po index e530fbd941..5cff8be318 100644 --- a/po/fy.po +++ b/po/fy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-12-24 23:02+0000\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: Frisian " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Bewarje & slute" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Ferfarskje" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Reset" msgid "Reset all" msgstr "Ferfarskje" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Yndeks tafoegje" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Yndeks bewurkje" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL-query:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y-wearden" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Slute" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Oare" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "," -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1097,163 +1100,163 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System swap" msgid "System CPU usage" msgstr "Systeemwikseltriem" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Systeemûnthâld" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Systeemwikseltriem" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Totaal ûnthâld" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Totaal wikseltriem" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "System swap" msgid "Used swap" msgstr "Systeemwikseltriem" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "System swap" msgid "Free swap" msgstr "Systeemwikseltriem" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Ferbinings" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabel(len)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Questions" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Ferkear" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Ynstellingen" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1265,47 +1268,47 @@ msgstr "" msgid "None" msgstr "Gjin" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1313,136 +1316,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Ynstellingen wizigjen" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Hjoeddeistige ynstellingen" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Grafyktitel" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Ferskil" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Ienheid" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Gjin gegevens fûn" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1450,7 +1453,7 @@ msgstr "" msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1460,82 +1463,82 @@ msgstr "Status" msgid "Time" msgstr "Tiid" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Totale tiid:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabel" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Grafyk" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Totaal:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1544,67 +1547,67 @@ msgstr "" msgid "Import" msgstr "Ymportearje" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyze" msgid "Analyse query" msgstr "Analysearje" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Probleem" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Rjochtfeardiging" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Test" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "No data found" msgid "No parameters found!" msgstr "Gjin gegevens fûn" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1616,62 +1619,62 @@ msgstr "Gjin gegevens fûn" msgid "Cancel" msgstr "Annulearje" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Ynstellingen wizigjen" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Tapasse" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Flaterkoade: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Flateromskriuwing: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1681,61 +1684,61 @@ msgstr "" msgid "OK" msgstr "" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Search in database" msgid "Renaming databases" msgstr "Sykje yn de database" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "No databases" msgid "Copying database" msgstr "Gjin databases" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Karakterset" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1751,44 +1754,44 @@ msgstr "" msgid "Export" msgstr "Eksportearje" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1798,7 +1801,7 @@ msgstr "" msgid "Edit" msgstr "Bewurkje" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1809,165 +1812,165 @@ msgstr "Bewurkje" msgid "Delete" msgstr "" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Fariabel" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Sykje yn dizze list" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "Mear" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Binne jo wis?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Klear" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Stap" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -1977,374 +1980,374 @@ msgstr "" msgid "Save" msgstr "Bewarje" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Kolommaksimum:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Kolomminimum:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Minimumwearde:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Maksimumwearde:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometry" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Fersiferingskaai" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "Sidenamme" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Side bewarje" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Ferstjoere" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "annulearje" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Wachtwurd generearje" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Generearje" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Mear" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Table comments" msgid "Show panel" msgstr "Tabelopmerkings" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Main panel" msgid "Hide panel" msgstr "Haadpaniel" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2352,113 +2355,113 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Serverpoarte" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Serverpoarte" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Ynstellingen wizigjen" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Tabelopmerkings" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2467,355 +2470,355 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Table comments" msgid "Copy tables to" msgstr "Tabelopmerkings" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add prefix" msgid "Add table prefix" msgstr "Foarheaksel tafoegje" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Folgjende" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Hjoed" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "jannewaris" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "febrewaris" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "maart" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "april" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "maaie" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "juny" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "july" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "augustus" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "septimber" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "oktober" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "novimber" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "desimber" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "des" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "snein" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "moandei" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "tiisdei" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "woansdei" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "tongersdei" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "freed" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "sneon" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "si" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "mo" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "ti" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "wo" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "to" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "fr" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "so" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "si" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "mo" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "ti" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "wo" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "fr" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "so" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Oere" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minút" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Sekonde" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Search in database" msgid "Please enter a valid date" msgstr "Sykje yn de database" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Flater" @@ -2865,32 +2868,32 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Lettertypegrutte" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Gearteare" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2910,76 +2913,59 @@ msgstr "Database" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Gjin blêdwizers" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Blêdwizer" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "SQL-queryconsole" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Console" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Leechmeitsje" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Skiednis" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -2997,173 +2983,173 @@ msgstr "Skiednis" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Opsjes" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Blêdwizers" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Oprinnend" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Ofrinnend" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Order" msgid "Order:" msgstr "Folchoarder" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Oantal" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Order" msgid "Order by:" msgstr "Folchoarder" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "SQL-queries" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "SQL-queries" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Table comments" msgid "Show trace" msgstr "Tabelopmerkings" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Count" msgid "Count:" msgstr "Oantal" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Tafoegje" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Blêdwizer tafoegje" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Label" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Details…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3476,7 +3462,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3595,15 +3581,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3667,8 +3653,8 @@ msgid "Keyname" msgstr "Kaainamme" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3718,13 +3704,13 @@ msgstr "" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Fuortsmite" @@ -3822,7 +3808,7 @@ msgstr "Rjochten" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Hannelingen" @@ -3837,7 +3823,7 @@ msgstr "Trasearje" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4210,11 +4196,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -4477,21 +4463,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Romtlik" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4502,34 +4488,34 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit" msgid "Submit query" msgstr "Ferstjoere" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit routine" msgctxt "Inline edit query" @@ -4619,6 +4605,10 @@ msgstr "per oere" msgid "per day" msgstr "per dei" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Sykje:" @@ -4725,41 +4715,41 @@ msgstr "Nije kolom tafoegje" msgid "Attributes" msgstr "Attributen" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4767,24 +4757,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5455,13 +5445,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5479,12 +5469,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -6045,7 +6035,7 @@ msgid "Column names in first row" msgstr "" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -7445,7 +7435,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "" @@ -7577,8 +7567,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7618,52 +7608,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Queryflater" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Feroarje" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Yndeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Romtlik" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Folsleine tekst" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Underskiedbere wearden" @@ -7673,7 +7663,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8406,54 +8396,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struktuer fan %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8499,53 +8489,53 @@ msgstr "Of" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "en dan" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Werom" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8557,11 +8547,11 @@ msgstr "" msgid "Value" msgstr "Wearde" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9391,7 +9381,7 @@ msgstr "Reparearje tabel" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9404,32 +9394,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analysearje" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Kontrolearje" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimalisearje" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Reparearje" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9457,35 +9447,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9654,7 +9644,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9678,21 +9668,21 @@ msgstr "Definysje" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tabelstruktuer foar tabel" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9782,7 +9772,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Gegevens:" @@ -9881,7 +9871,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9950,7 +9940,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9995,52 +9985,52 @@ msgstr "" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10070,7 +10060,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10088,33 +10078,33 @@ msgstr "" msgid "Column names: " msgstr "Kolomnammen: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10122,28 +10112,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "MediaWiki-table" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Faluta ymportearje ($5.00 nei 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10151,23 +10141,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "ESRI-foarmtriem" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10179,7 +10169,7 @@ msgstr "SQL-kompatibiliteitsmoadus:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -12920,15 +12910,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "" @@ -12941,17 +12927,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "" @@ -12969,19 +12956,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "" @@ -13007,17 +12994,17 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "Number of tables:" msgid "Unexpected beginning of statement." msgstr "Oantal tabellen:" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13038,15 +13025,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13707,7 +13694,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Rige: %1$s, Kolom: %2$s, Flater: %3$s" @@ -14651,7 +14638,7 @@ msgid "at beginning of table" msgstr "Oantal tabellen:" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -14696,7 +14683,7 @@ msgstr "Partysje %s" msgid "Edit partitioning" msgstr "Routine bewurkje" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14815,11 +14802,11 @@ msgstr "" msgid "Column names" msgstr "Kolomnammen" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/gl.po b/po/gl.po index af567cf975..1f30131eac 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-01-17 22:02+0000\n" "Last-Translator: Xosé Calvo \n" "Language-Team: Galician " -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1002,160 +1006,160 @@ msgstr "" "Confirma que desexa cambiar todas as ordenacións alfabéticas das columnas e " "converter os datos?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Gardar e pechar" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Reiniciar" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Restaurar todo" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Falta un valor no formulario!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Seleccione ao menos unha das opcións!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Introduza un número aceptábel!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Introduza un tamaño aceptábel!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Engadir un índice" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Editar o índice" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Engadir %s columna(s) ao índice" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Crear un índice dunha única columnar" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Crear un índice composto" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Compor con:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Seleccione a(s) columna(s) do índice." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Debe engadir ao menos unha columna." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Visualización do SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Simular a consulta" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Filas coincidentes:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "Consulta de SQL:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Valores Y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "O nome do servidor está baleiro!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "O nome do usuario está baleiro!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "O contrasinal está baleiro!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Os contrasinais non son iguais!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "A eliminar os usuarios escollidos" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Fechar" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Creouse un modelo." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Cargouse o modelo." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Actualizouse o modelo." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Eliminouse o modelo." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Outro" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "," -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Conexións/Procesos" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "A configuración local de monitorización é incompatible!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1167,155 +1171,155 @@ msgstr "" "moi probábel que a configuración actual non funcione máis. Restaure a " "configuración ao predeterminado no menú Configuración." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Eficiencia da caché das consultas" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Uso da caché das consultas" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Caché das consultas usada" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Uso da CPU do sistema" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Memoria do sistema" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Memoria de intercambio do sistema" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Carga media" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Memoria total" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Memoria caché" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Memoria de buffer" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Memoria libre" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Memoria usada" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Memoria de intercambio total" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Intercambio en caché" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Intercambio usado" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Intercambio libre" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Bytes enviados" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Bytes recibidos" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Conexións" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Procesos" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d táboa(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Preguntas" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Tráfico" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Configuración" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Engadir unha gráfica á grella" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Engádalle ao menos unha variábel á serie!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1327,47 +1331,47 @@ msgstr "Engádalle ao menos unha variábel á serie!" msgid "None" msgstr "Ningunha" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Recomezar a monitorización" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Deter a monitorización" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Iniciar a anovación automática" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Deter a actualización automática" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log e slow_query_log están activas." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log está activa." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log está activa." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log e general_log están desactivadas." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output non está definido como TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output está definido como TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1378,12 +1382,12 @@ msgstr "" "máis que %d segundos. É recomendábel establecer o long_query_time a 0-2 " "segundos, dependendo do sistema." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time está estabelecido en %d segundo(s)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1392,30 +1396,30 @@ msgstr "" "restaurados aos valores predeterminados ao reiniciar o servidor:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Configurar «log_output» a %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Activar %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Desactivar %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Definir long_query_time como %ds segundos." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1423,59 +1427,59 @@ msgstr "" "Vostede non pode cambiar estas variábeis. Identifíquese como root ou " "contacte co seu administrador." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Cambiar a configuración" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Configuración actual" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Título da gráfica" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Diferencial" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Dividido por %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Unidade" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Do rexistro de consultas lento" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Do rexistro de consultas xeral" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" "O nome da base de datos é descoñecido para esta consulta nos rexistros do " "servidor." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "A analizar os rexistros" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "A analizar e cargar os rexistros. Isto pode tardar un anaco." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Cancelar a petición" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1486,7 +1490,7 @@ msgstr "" "agrupamento, polo que outros atributos das consultas, como o tempo de " "inicio, poden ser diferentes." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1495,34 +1499,34 @@ msgstr "" "Dado que se escolleu agrupar as consultas INSERT, tamén se agrupan estas na " "mesma táboa, sen ter en conta os datos inseridos." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Os datos do Rexistro foron cargados. Consultas executadas neste período de " "tempo:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Ir á táboa de rexistro" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Non se atoparon datos" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Analizouse o rexistro mais non se atoparon datos neste intervalo de tempo." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "A analizar…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Explicar a saída" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1530,7 +1534,7 @@ msgstr "Explicar a saída" msgid "Status" msgstr "Estado" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1540,58 +1544,58 @@ msgstr "Estado" msgid "Time" msgstr "Tempo" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Tempo total:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Perfilando os resultados" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Táboa" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Gráfico" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Opcións de filtro da táboa de rexistro" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filtro" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filtrar as consultas por palabra/expresión regular:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Agrupar as consultas, ignorando os datos variábeis das cláusulas WHERE" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Suma das filas agrupadas:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Total:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "A cargar os rexistros" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Fallou a anovación do monitor" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1601,28 +1605,28 @@ msgstr "" "novos para a gráfica. O máis probábel é que caducase a sesión. Cargar a " "páxina de novo e identificarse de novo debería valer." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Recargar a páxina" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Filas afectadas:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Fallo analizando o ficheiro de configuración. Non parece ser un código JSON " "válido." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Produciuse un erro ao construír a grella da gráfica coa configuración " "importada. Restáurase a configuración predeterminada…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1631,63 +1635,63 @@ msgstr "" msgid "Import" msgstr "Importar" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Importar a configuración do monitor" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Escolla a fila que desexa importar." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Non hai ficheiros dispoñíbeis no servidor para importar!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Analizar a consulta" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Sistema de consellos" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Posíbeis erros de rendemento" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Problema" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Recomendación" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Detalles da regra" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Xustificación" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Variábel/ fórmula utilizada" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Proba" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "A formatar o SQL…" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "Non se atopou ningún parámetro!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1699,60 +1703,60 @@ msgstr "Non se atopou ningún parámetro!" msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Configuración relacionada coas páxinas" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Aplicar" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "A cargar…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Petición interrompida!!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "A procesar a petición" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "Fallou a petición!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Produciuse un erro ao procesar a petición" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Código de erro: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Texto do erro: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Non hai ningunha base de datos escollida." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "A eliminar a columna" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "A engadir unha chave primaria" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1762,55 +1766,55 @@ msgstr "A engadir unha chave primaria" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Prema para descartar esta notificación" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "A renomear as bases de datos" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "A copiar a base de datos" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "A cambiar o xogo de caracteres" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Desactivar as comprobacións de chaves externas" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Non foi posíbel contar o número real de filas." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "A buscar" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Agochar os resultados da busca" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Mostrar os resultados da busca" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "A examinar" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "A eliminar" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "A definición dunha función gardada debe conter unha instrución RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1826,44 +1830,44 @@ msgstr "A definición dunha función gardada debe conter unha instrución RETURN msgid "Export" msgstr "Exportar" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "Editor de ENUM/SET" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Valores para a columna %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Valores para a nova columna" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Introduza cada valor nun campo separado." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Engadir %d valor(es)" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Nota: Se o ficheiro contén varias táboas, estas combínanse nunha." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Agochar a caixa das consultas" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Mostrar a caixa de consultas" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1873,7 +1877,7 @@ msgstr "Mostrar a caixa de consultas" msgid "Edit" msgstr "Editar" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1884,41 +1888,41 @@ msgstr "Editar" msgid "Delete" msgstr "Eliminar" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d non é un número de fileira válido." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Visualizar valores alleos" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Non hai consulta gardada automaticamente" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Variábel %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Escoller" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Selector de columnas" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Buscar nesta lista" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1928,15 +1932,15 @@ msgstr "" "central da base de datos %s ten columnas que non están presentes na táboa " "actual." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Ver máis" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Confírmao?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1944,51 +1948,51 @@ msgstr "" "Esta acción pode cambiar algunha definición das columnas.
Confirma que " "desexa continuar?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Proseguir" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Engadir unha chave primaria" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Engadiuse unha chave primaria." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Procedemos co paso seguinte…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Fin do paso" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Segundo paso da normalización (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Feito" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Confirmar as dependencias parciais" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "As dependencias parciais seleccionadas son as seguintes:" -#: js/messages.php:444 +#: js/messages.php:446 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1996,19 +2000,19 @@ 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Non se seleccionaron dependencias parciais!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Agochar a lista de dependencias parciais" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2016,41 +2020,41 @@ msgstr "" "Séntese comodamente! Pode levar uns segundos dependendo do tamaño dos datos " "e do número de columnas da táboa." -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Paso" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Hanse executar as accións seguintes:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "ELIMINAR (DROP) as columnas %s da táboa %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Crear a táboa seguinte" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Terceiro paso da normalización (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Confirmar as dependencias transitivas" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "As dependencias seleccionadas son as seguintes:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Non hai ningunha dependencia seleccionada!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2060,123 +2064,123 @@ msgstr "Non hai ningunha dependencia seleccionada!" msgid "Save" msgstr "Gardar" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Agochar o criterio de busca" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Mostrar o criterio de busca" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Busca de intervalo" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Máximo de columnas:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Mínimo de columnas:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Valor mínimo:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Valor máximo:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Agochar os criterios de busca e substitución" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Mostrar os criterios de busca e substitución" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Cada punto representa unha fila de datos." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Situar o rato sobre o punto mostra a súa etiqueta." -#: js/messages.php:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Escoller dúas columnas" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Escolle dúas columnas diferentes" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Contido do punto de datos" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Copiar" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Punto" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Cadea de liñas" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Polígono" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Xeometría" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "Anel interno" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Anel externo" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Desexa copiar a clave de cifrado?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Clave de cifrado" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2184,24 +2188,24 @@ msgstr "" "Indica que vostede fixo cambios nesta páxina; háselle pedir confirmación " "antes de abandonar os cambios" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Escoller a chave referida" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Escoller unha chave externa" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Selecciona a clave primaria ou unha clave única!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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?" @@ -2209,76 +2213,76 @@ msgstr "" "Non gardou as alteracións da disposición. Hanse perder se non se gardan. " "Desexa continuar?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Nome da páxina" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Abrir páxina" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Eliminar a páxina" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sen título" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Seleccione unha páxina para continuar" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Introduza un nome de páxina aceptábel" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "Desexa gardar os cambios desta páxina?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "A páxina foi eliminada correctamente" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Exportar o esquema relacional" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Gardáronse as modificacións" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Engadir unha opción para a columna «%s»." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "Creáronse %d obxecto(s)." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Enviar" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Prema escape para cancelar a edición." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2286,15 +2290,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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Arrastre para reordenar." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Prema para ordenar os resultados por esta columna." -#: js/messages.php:567 +#: js/messages.php:569 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 " @@ -2304,27 +2308,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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Prema para marcar/desmarcar." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Prema dúas veces para copiar o nome da columna." -#: js/messages.php:574 +#: js/messages.php:576 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Mostrar todo" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2333,13 +2337,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:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2347,104 +2351,104 @@ msgstr "" "Confirma que desexa ver todas as filas? Se a táboa é grande o navegador " "podería fallar." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Tamaño orixinal" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "cancelar" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Interrompido" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Éxito" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Estado da importación" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Soltar os ficheiros aquí" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Seleccione a base de datos antes" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Imprimir" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Ir á ligazón:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Copiar o nome da columna." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Xerar un contrasinal" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Xerar" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Máis" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Mostrar o panel" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Agochar o panel" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Mostrar os elementos agochados da árbore de navegación." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Ligar co panel principal" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Desligar do panel principal" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2454,42 +2458,42 @@ msgstr "" "A versión máis recente é %s, publicada o %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ",última versión estable:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "actualizada" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Crear unha vista" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Enviar un informe de erro" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Entregar o informe de erro" -#: js/messages.php:656 +#: js/messages.php:658 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:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Cambiar a configuración dos informes" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Mostrar os detalles do informe" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2497,7 +2501,7 @@ msgstr "" "A exportación está incompleta debido a un límite de tempo de execución baixo " "no nivel de PHP!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2507,60 +2511,60 @@ msgstr "" "envialo, algúns dos campos poderían ser ignorados por causa da configuración " "de max_input_vars de PHP." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Detectáronse algúns erros no servidor!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Mire na parte inferior desta xanela." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Ignorar todo" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Segundo as opcións de configuración, están a ser enviados neste momento; " "agarde un anaquiño." -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Executar esta consulta de novo?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Confirma que desexa eliminar este marcador?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "Produciuse un erro ao obter a información de depuración de SQL." -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s consultas executadas %s veces en %s segundos." -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "Paráronse %s argumento(s)" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Mostrar os argumentos" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Agochar os argumentos" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Tempo que levou:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2575,349 +2579,349 @@ msgstr "" "tipo; limpar os «Datos de sitios web sen conexión» podería axudar. No Safari " "este é un problema que causa frecuentemente a «Navegación en modo privado»." -#: js/messages.php:711 +#: js/messages.php:713 msgid "Copy tables to" msgstr "Copiar as táboas a" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "Engadir un prefixo á táboa" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "Substituír a táboa co prefixo" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copiar a táboa con prefixo" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Seguinte" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Hoxe" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Xaneiro" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Febreiro" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Marzo" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Abril" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Maio" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Xuño" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Xullo" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Agosto" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Setembro" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Outubro" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Novembro" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Decembro" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Xan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Xuño" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Xullo" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Dec" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Luns" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Martes" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Mércores" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Xoves" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Venres" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Lu" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Mé" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Xo" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Ve" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sá" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Mé" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "X" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Sá" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendario-mes-ano" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Hora" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minuto" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Segundo" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Este campo é obrigatorio" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Arranxe este campo" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Introduza un enderezo de correo aceptábel" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Introduza un URL aceptábel" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Introduza unha data aceptábel" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Introduza unha data aceptábel (ISO)" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Introduza un número aceptábel" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Introduza un número de tarxeta de crédito aceptábel" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Introduza unicamente díxitos" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Introduza o mesmo valor de novo" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Non introduza máis de {0} caracteres" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Introduza ao menos {0} caracteres" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "Introduza un valor que teña entre {0} e {1} caracteres" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Introduza un valor entre {0} e {1}" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "Introduza valores inferiores ou iguais a {0}" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "Introduza un valor maior ou igual a {0}" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Introduza unha data ou hora aceptábeis" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Introduza unha entrada hexadecimal aceptábel" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Produciuse un erro" @@ -2971,36 +2975,36 @@ msgstr "" "Hai un carácter inesperado na liña %1$s. Agardábase unha tabulación mais " "atopouse «%2$s»." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "O ficheiro de configuración existente (%s) non e lexíbel." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Os permisos do ficheiro de configuración son incorrectos; non debería poder " "escribir nel todo o mundo!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Tamaño da letra" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Contraer" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Expandir" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "subquery" msgid "Requery" msgstr "subconsulta" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3020,78 +3024,61 @@ msgstr "Base de datos" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "%d marcador en total" -msgstr[1] "%d marcadores en total" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "privado" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "compartida" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s and %3$s marcadores incluídos" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Non hai marcadores" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Durante esta sesión" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Explicar" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Análise do desempeño" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Marcador" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Fallou a consulta" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "Query execution time" msgid "Queried time" msgstr "Tempo de execución da consulta" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "Consulta de consultas de SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Consola" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Limpar" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Historial" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3109,125 +3096,125 @@ msgstr "Historial" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Opcións" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Marcadores" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Depurar o SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Prema Ctrl+Intro para executar a consulta" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Prema Intro para executar a consulta" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "ascendente" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "descendente" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Orde:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Cantidade" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Orde de execución" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Tempo que leva" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Ordenar por:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Agrupar as consultas" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Desagrupar as consultas" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Mostrar o trazado" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Agochar o trazado" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Cantidade:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Anovar" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Engadir" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Engadir un marcador" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Etiqueta" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Base de datos de destino" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Compartir este marcador" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Estabelecer o predeterminado" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Expandir sempre as mensaxes de consulta" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Mostrar o historial de consultas no inicio" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Mostrar a consulta de navegación actual" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3235,17 +3222,17 @@ msgstr "" "Executar consultas con Intro e inserir un salto de liña con Maiúsculas + " "Intro. Para que isto sexa permanente vexa a configuración." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Usar o tema escuro" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Foi imposíbel ler o ficheiro de configuración!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3253,19 +3240,19 @@ msgstr "" "O servidor non responde (ou o socket local do servidor non se configurou " "correctamente)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "O servidor non responde." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Comprobe os privilexios do directorio que contén a base de datos." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Detalles…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Fallou a conexión para «controluser» tal e como está definida na " @@ -3579,7 +3566,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "A consulta de SQL executouse sen problemas." @@ -3702,17 +3689,17 @@ msgstr "Detívose o envío do ficheiro por causa da extensión." msgid "Unknown error in file upload." msgstr "Produciuse un erro descoñecido ao enviar o ficheiro." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Produciuse un erro ao mover o ficheiro enviado. Consulte a " "[doc@faq1-11]Pregunta frecuente 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Produciuse un erro ao mover o ficheiro subido." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Non é posíbel ler o ficheiro enviado." @@ -3776,8 +3763,8 @@ msgid "Keyname" msgstr "Nome da chave" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3827,13 +3814,13 @@ msgstr "Eliminouse o índice %s." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Eliminar" @@ -3933,7 +3920,7 @@ msgstr "Privilexios" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operacións" @@ -3948,7 +3935,7 @@ msgstr "Seguimento" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4328,11 +4315,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "Non hai unha ruta válida de imaxe para o tema %s!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Non se dispón de previsualización." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "cóllao" @@ -4658,21 +4645,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Espacial" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Tamaño máximo: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Análise estática:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "Atopáronse %d erros durante a análise." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4683,32 +4670,32 @@ msgstr "Atopáronse %d erros durante a análise." msgid "MySQL said: " msgstr "Mensaxes do MySQL: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Explicar o SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Omitir a explicación de SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "Sen código PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "Enviar esta consulta" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Crear código PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Editar na liña" @@ -4796,6 +4783,10 @@ msgstr "por hora" msgid "per day" msgstr "por día" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "compartida" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Buscar:" @@ -4904,11 +4895,11 @@ msgstr "Engadir unha columna nova" msgid "Attributes" msgstr "Atributos" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Foi imposíbel ler o ficheiro de configuración!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4916,33 +4907,33 @@ msgstr "" "Isto normalmente significa que hai unha erro na sintaxe; comprobe calquera " "erro mostrado embaixo." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Non foi posíbel cargar a configuración predeterminada desde: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "O índice de servidor non é válido: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "O nome de servidor non é válido para o servidor %1$s. Revise a configuración." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Servidor %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" "Na configuración indicouse un método de autenticación que non é válido:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4950,24 +4941,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Debería actualizar a %s %s ou posterior." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Erro: o token non coincide" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Tentouse substituír GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "posíbel vulnerabilidade (exploit)" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "detectouse unha tecla numérica" @@ -5726,13 +5717,13 @@ msgstr "Pór os nomes das columnas na primeira fila" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Columnas delimitadas por" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Carácter de escape das columnas" @@ -5750,12 +5741,12 @@ msgstr "Eliminar os caracteres CRLF nas columnas" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Columnas terminadas en" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Liñas rematadas en" @@ -6350,7 +6341,7 @@ msgid "Column names in first row" msgstr "Nomes das columnas na primeira fileira" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Non importar as fileiras baleiras" @@ -7978,7 +7969,7 @@ msgid "Table %s has been emptied." msgstr "Baleirouse a táboa %s." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8112,8 +8103,8 @@ msgid "No data to display" msgstr "Non hai datos que mostrar" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8159,52 +8150,52 @@ msgstr[1] "Os nomes «%s» son palabras chaves reservadas do MySQL." msgid "No column selected." msgstr "Non seleccionou ningunha columna." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Movéronse as columnas satisfactoriamente." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Hai un erro na consulta" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "Alterouse a táboa %1$s sen problemas. Axustáronse os privilexios." -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Mudar" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Índice" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Espacial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Texto completo" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Valores diferentes" @@ -8214,7 +8205,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Falta a extensión %s. Comprobe a configuración do PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Sen cambios" @@ -9019,16 +9010,16 @@ msgstr "O MySQL retornou un conxunto baleiro (isto é, cero fileiras)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "Ver o contido dunha estrutura premendo no seu nome." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9037,42 +9028,42 @@ msgid "" msgstr "" "Mudar calquera destas opcións premendo a ligazón «Opcións» correspondente" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 #, 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:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Ir á base de datos: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Editar a configuración de %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Ir á táboa: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Estrutura de %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Ir á vista: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9120,48 +9111,48 @@ msgstr "ou" msgid "web server upload directory:" msgstr "directorio de recepción do servidor web:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Editar/Inserir" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuar a inserción con %s fileiras" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "e despois" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Inserir unha columna nova" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Inserir como fila nova e ignorar os erros" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Mostrar a consulta de inserción" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Volver para páxina anterior" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Inserir un rexistro novo" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Volver para esta páxina" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Modificar a fileira seguinte" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9171,7 +9162,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9183,11 +9174,11 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Mostrar a consulta de SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Identificador da fileira inserida: %1$d" @@ -10071,7 +10062,7 @@ msgstr "Reparar a táboa" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Eliminar datos ou táboa" @@ -10084,32 +10075,32 @@ msgid "Delete the table (DROP)" msgstr "Eliminar a táboa (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analizar" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Comprobar" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimizar" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Reconstruír" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Arranxar" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10137,37 +10128,37 @@ msgstr "Eliminar particións" msgid "Check referential integrity:" msgstr "Comprobar a integridade das referencias:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Non se pode mover unha táboa sobre si mesma!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Non se pode copiar unha táboa sobre si mesma!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Moveuse a táboa %s para %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Copiouse a táboa %s para %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "O nome da táboa está baleiro!" @@ -10349,7 +10340,7 @@ msgstr "Opcións de envorcado dos datos" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "A extraer os datos da táboa" @@ -10373,21 +10364,21 @@ msgstr "Definición" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Estrutura da táboa" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Estrutura para a vista" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Estrutura existente para a vista" @@ -10477,7 +10468,7 @@ msgid "Database:" msgstr "Base de datos:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Datos:" @@ -10587,7 +10578,7 @@ msgid "Data creation options" msgstr "Opcións de creación de datos" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Baleirar a táboa antes de inserir" @@ -10675,7 +10666,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10721,61 +10712,61 @@ msgstr "en uso" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Restricións para os envorcados das táboas" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Restricións para a táboa" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, 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:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Dentro das táboas:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Engadir o valor incremental (AUTO_INCREMENT)" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "TIPOS MIME PARA A TÁBOA" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELACIÓNS PARA A TÁBOA" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Produciuse un erro ao ler os datos:" @@ -10807,7 +10798,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10830,15 +10821,15 @@ msgstr "" msgid "Column names: " msgstr "Nomes das columnas: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Hai un parámetro non válido para a importación de CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10848,18 +10839,18 @@ msgstr "" "columnas están ben escritos, separados por vírgulas e non encerrados entre " "aspas." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "O formato de entrada de CSV non é válido na liña %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "O número de columnas é incorrecto na entrada do CSV na liña %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Este engadido non é capaz de realizar importacións comprimidas!" @@ -10867,23 +10858,23 @@ msgstr "Este engadido non é capaz de realizar importacións comprimidas!" msgid "MediaWiki Table" msgstr "Táboa do MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "O formato de entrada de mediawiki non é válido na liña:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" "Importar as porcentaxes como decimais correctos(ex. 12,00% como .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importar as moedas (ex. $5,00 como 5,00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10891,7 +10882,7 @@ msgstr "" "O ficheiro XML especificado estaba estragado ou incompleto. Corrixa o " "problema e ténteo de novo." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Non foi posíbel analizar a folla de cálculo de OpenDocument!" @@ -10899,12 +10890,12 @@ msgstr "Non foi posíbel analizar a folla de cálculo de OpenDocument!" msgid "ESRI Shape File" msgstr "Ficheiro shapefile da ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Produciuse un erro ao importar o ficheiro shapefile da ESRI: «%s»." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 #, fuzzy #| msgid "" #| "You tried to import an invalid file or the imported file contains invalid " @@ -10916,12 +10907,12 @@ msgstr "" "Tentou importar un ficheiro que era incorrecto ou o ficheiro importado " "contén datos incorrectos" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "A Extensión Espacial do MySQL non recoñece o tipo «%s» da ESRI." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "The imported file does not contain any data" msgid "The imported file does not contain any data!" @@ -10935,7 +10926,7 @@ msgstr "Modo de compatibilidade de SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Non empregar AUTO_INCREMENT cos valores cero" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14153,15 +14144,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14176,17 +14163,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14208,23 +14196,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "O número de táboas abertas." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "O número de táboas abertas." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14257,17 +14245,17 @@ msgstr "O acontecemento %1$s foi creado." msgid "Variable name was expected." msgstr "Modelo de nome dos ficheiros" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "No comezo da táboa" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14290,19 +14278,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15016,7 +15004,7 @@ msgstr "Ver o esquema do envorcado da táboa" msgid "Invalid table name" msgstr "O nome de táboa non é correcto" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16064,7 +16052,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:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16113,7 +16101,7 @@ msgstr "particionado" msgid "Edit partitioning" msgstr "Eliminar particións" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Editar a vista" @@ -16240,11 +16228,11 @@ msgstr "Nome da VISTA" msgid "Column names" msgstr "Nomes das columnas" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Renomear a vista como" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Delete the table (DROP)" msgid "Delete the view (DROP)" @@ -17588,6 +17576,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert está definido como 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "%d marcador en total" +#~ msgstr[1] "%d marcadores en total" + +#~ msgid "private" +#~ msgstr "privado" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s and %3$s marcadores incluídos" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/gu.po b/po/gu.po index 853a020ded..1df81530e5 100644 --- a/po/gu.po +++ b/po/gu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-01-08 17:45+0000\n" "Last-Translator: Nijraj Gelani \n" "Language-Team: Gujarati " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "" -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1091,155 +1094,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1251,47 +1254,47 @@ msgstr "" msgid "None" msgstr "" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1299,136 +1302,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1436,7 +1439,7 @@ msgstr "" msgid "Status" msgstr "" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1446,82 +1449,82 @@ msgstr "" msgid "Time" msgstr "" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1530,63 +1533,63 @@ msgstr "" msgid "Import" msgstr "" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1598,60 +1601,60 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1661,55 +1664,55 @@ msgstr "" msgid "OK" msgstr "" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1725,44 +1728,44 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1772,7 +1775,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1783,164 +1786,164 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -1950,368 +1953,368 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2319,105 +2322,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2426,349 +2429,349 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 msgid "Copy tables to" msgstr "" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "" @@ -2818,32 +2821,32 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2863,76 +2866,59 @@ msgstr "" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -2950,157 +2936,157 @@ msgstr "" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3411,7 +3397,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3528,15 +3514,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3600,8 +3586,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3651,13 +3637,13 @@ msgstr "" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -3755,7 +3741,7 @@ msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "" @@ -3770,7 +3756,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4141,11 +4127,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -4408,21 +4394,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4433,32 +4419,32 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" @@ -4546,6 +4532,10 @@ msgstr "" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "" @@ -4650,41 +4640,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4692,24 +4682,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5366,13 +5356,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5390,12 +5380,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -5952,7 +5942,7 @@ msgid "Column names in first row" msgstr "" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -7334,7 +7324,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "" @@ -7464,8 +7454,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7503,52 +7493,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7558,7 +7548,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8277,54 +8267,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8370,53 +8360,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8428,11 +8418,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9252,7 +9242,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9265,32 +9255,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9316,35 +9306,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9513,7 +9503,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9537,21 +9527,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9641,7 +9631,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9733,7 +9723,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9802,7 +9792,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9844,52 +9834,52 @@ msgstr "" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -9919,7 +9909,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -9937,33 +9927,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -9971,28 +9961,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10000,23 +9990,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10028,7 +10018,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -12729,15 +12719,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "" @@ -12750,17 +12736,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "" @@ -12778,19 +12765,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "" @@ -12816,15 +12803,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12845,15 +12832,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13511,7 +13498,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14407,7 +14394,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14440,7 +14427,7 @@ msgstr "" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14555,11 +14542,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/he.po b/po/he.po index c493e0b241..bcba3db8ee 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-07-28 16:36+0200\n" "Last-Translator: Moshe Harush \n" "Language-Team: Hebrew " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "שמירה כקובץ" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "איפוס" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "בחירת הכול" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "ערך ריק בטופס!" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "לפחות אחת מהמילים" -#: js/messages.php:118 +#: js/messages.php:120 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number!" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:119 +#: js/messages.php:121 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid length!" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "הוספת שדה חדש" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "עריכת האינדקס" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "הוספת %s עמודות לאינדקס" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "גרסת שרת" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "גרסת שרת" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "שדות מוקפים ע\"י" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %s column(s) to index" msgid "Please select column(s) for the index." msgstr "הוספת %s עמודות לאינדקס" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "אתה חייב להוסיף לפחות שדה אחד." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "בשאילתה" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Start" msgid "Matched rows:" msgstr "שבת" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "שאילתת SQL" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "ערך" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "שם המארח ריק!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "שם המשתמש ריק!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "הססמה ריקה!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "הססמאות אינן זהות!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "הסרת המשתמש הנבחרים" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "סגירה" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy msgid "Template was created." msgstr "טבלה %s נמחקה" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "הפרופיל עודכן בהצלחה." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "השורה נמחקה" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "אחר" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "חיבורים / תהליכים" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "תצורת מעקב מקומית אינה נתמכת" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1209,172 +1213,172 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 #, fuzzy msgid "Query cache efficiency" msgstr "סוג שאילתה" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "זיכרון מטמון בשימוש" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "שאילתות מטמון בשימוש" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "שימוש במערכת ה-CPU" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "זיכרון מערכת" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "טעינה בממוצע" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "סה\"כ זיכרון" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "זיכרון פנוי" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "זיכרון בשימוש" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "סה\"כ" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "שימוש מקום" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "דפים חופשיים" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "בתים נשלחו" -#: js/messages.php:197 +#: js/messages.php:199 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "התקבל" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "חיבורים" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "תהליכים" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s טבלאות" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 #, fuzzy msgid "Questions" msgstr "Persian" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "תעבורה" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "תכונות קשר כלליות" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "אנא הוסף לפחות משתנה אחד לסידרה" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1386,47 +1390,47 @@ msgstr "אנא הוסף לפחות משתנה אחד לסידרה" msgid "None" msgstr "ללא" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output מוגדר ל-TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1434,153 +1438,153 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "שמירה כקובץ" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "מופעל" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "מבוטל" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "שאילתה לקחה %01.4f שניות" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "תכונות קשר כלליות" -#: js/messages.php:254 +#: js/messages.php:256 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "תכונות קשר כלליות" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "קבצי ייבוא" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 #, fuzzy msgid "Analysing logs" msgstr "מקומי" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 #, fuzzy msgid "Cancel request" msgstr "בקשות כתיבה" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 #, fuzzy msgid "Jump to Log table" msgstr "אין מאגרי נתונים" -#: js/messages.php:285 +#: js/messages.php:287 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "אין מאגרי נתונים" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "הסברת SQL" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1588,7 +1592,7 @@ msgstr "הסברת SQL" msgid "Status" msgstr "מצב" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1598,99 +1602,99 @@ msgstr "מצב" msgid "Time" msgstr "זמן" -#: js/messages.php:293 +#: js/messages.php:295 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "סה\"כ" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "תוצאת SQL" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "טבלה" -#: js/messages.php:296 +#: js/messages.php:298 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "קידוד" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "אפשרויות טבלה" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 #, fuzzy #| msgid "Number of fields" msgid "Sum of grouped rows:" msgstr "מספר שדות" -#: js/messages.php:306 +#: js/messages.php:308 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "סה\"כ" -#: js/messages.php:308 +#: js/messages.php:310 #, fuzzy msgid "Loading logs" msgstr "מקומי" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 #, fuzzy #| msgid "Rename database to" msgid "Reload page" msgstr "שינוי שם מאגר נתונים אל" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1700,73 +1704,73 @@ msgstr "" msgid "Import" msgstr "ייצוא" -#: js/messages.php:326 +#: js/messages.php:328 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Import monitor configuration" msgstr "תצורת מעקב מקומית אינה נתמכת" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "עדכון שאילתה" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 -msgid "Issue" -msgstr "" - -#: js/messages.php:338 -#, fuzzy -#| msgid "Documentation" -msgid "Recommendation" -msgstr "תיעוד" - #: js/messages.php:339 -msgid "Rule details" +msgid "Issue" msgstr "" #: js/messages.php:340 #, fuzzy #| msgid "Documentation" -msgid "Justification" +msgid "Recommendation" msgstr "תיעוד" #: js/messages.php:341 -msgid "Used variable / formula" +msgid "Rule details" msgstr "" #: js/messages.php:342 +#, fuzzy +#| msgid "Documentation" +msgid "Justification" +msgstr "תיעוד" + +#: js/messages.php:343 +msgid "Used variable / formula" +msgstr "" + +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "פרמטרים שגויים!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1778,72 +1782,72 @@ msgstr "פרמטרים שגויים!" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "תכונות קשר כלליות" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy msgid "Loading…" msgstr "מקומי" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "תהליכים" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy msgid "Request failed!!" msgstr "סוג שאילתה" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "תהליכים" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "אף מאגר נתונים לא נבחר." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Inside column:" msgid "Dropping column" msgstr "בתוך העמודה:" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "הוספת %s תאים" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1853,69 +1857,69 @@ msgstr "הוספת %s תאים" msgid "OK" msgstr "אישור" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "שינוי שם מאגר נתונים אל" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "העתקת מאגר נתונים אל" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "קידוד" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "חיפוש" -#: js/messages.php:384 +#: js/messages.php:386 #, fuzzy msgid "Hide search results" msgstr "שאילתת SQL" -#: js/messages.php:385 +#: js/messages.php:387 #, fuzzy msgid "Show search results" msgstr "שאילתת SQL" -#: js/messages.php:386 +#: js/messages.php:388 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "עיון" -#: js/messages.php:387 +#: js/messages.php:389 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "מוחק %s" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1931,47 +1935,47 @@ msgstr "" msgid "Export" msgstr "יצוא" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "מספר שדות" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "הוספת משתמש חדש" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 #, fuzzy msgid "Hide query box" msgstr "שאילתת SQL" -#: js/messages.php:408 +#: js/messages.php:410 #, fuzzy msgid "Show query box" msgstr "שאילתת SQL" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1981,7 +1985,7 @@ msgstr "שאילתת SQL" msgid "Edit" msgstr "עריכה" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1992,96 +1996,96 @@ msgstr "עריכה" msgid "Delete" msgstr "מחיקה" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "משתנה" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "לא נבחרו שורות" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "חיפוש במסד הנתונים" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "זיכרון פנוי" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "תורם" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "מפתח ראשי נוסף אל %s" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "דוח המעקב" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2089,90 +2093,90 @@ msgstr "" msgid "End of step" msgstr "בסוף טבלה" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 #, fuzzy #| msgid "None" msgid "Done" msgstr "ללא" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "אף מאגר נתונים לא נבחר." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "הוספת הראשאות לטבלה הבאה" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "אף מאגר נתונים לא נבחר." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2182,429 +2186,429 @@ msgstr "אף מאגר נתונים לא נבחר." msgid "Save" msgstr "שמירה" -#: js/messages.php:472 +#: js/messages.php:474 #, fuzzy msgid "Hide search criteria" msgstr "שאילתת SQL" -#: js/messages.php:473 +#: js/messages.php:475 #, fuzzy msgid "Show search criteria" msgstr "שאילתת SQL" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "חיפוש" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "שמות עמודה" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "שמות עמודה" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy msgid "Hide find and replace criteria" msgstr "שאילתת SQL" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy msgid "Show find and replace criteria" msgstr "שאילתת SQL" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "הוספת/מחיקת עמודות שדה" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "תוכן עניניים" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "התעלמות" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "העתקה" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "נקודה" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "מחרוזת שורה" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "מצולע" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "פני השטח" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "טבעת פנימית" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "טבעת חיצונית:" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "מספר דף:" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "בחירת הכל" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "אנא בחר עמוד לעריכה" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "עריכה או יצוא של תבנית יחסית" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "שינויים נשמרו" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "ערך עבור העמודה „%s“" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "שליחה" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "שמות עמודה" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "הצגת הכול" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "מיקום מקורי" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "בוטל" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy msgid "Import status" msgstr "קבצי ייבוא" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "בחירת טבלאות" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "הדפסה" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy msgid "Go to link:" msgstr "אין מאגרי נתונים" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "שמות עמודה" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "ייצור סיסמא" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "ייצור" -#: js/messages.php:628 +#: js/messages.php:630 #, fuzzy #| msgid "Mon" msgid "More" msgstr "יום שני" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "הצגת הכול" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "הוספת שדה חדש" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "הראה רשת" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy msgid "Link with main panel" msgstr "אפשרויות ייצוא מאגר נתונים" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy msgid "Unlink from main panel" msgstr "אפשרויות ייצוא מאגר נתונים" -#: js/messages.php:639 +#: js/messages.php:641 #, 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2612,121 +2616,121 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 #, fuzzy msgid "up to date" msgstr "אין מאגרי נתונים" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy msgid "Create view" msgstr "גרסת שרת" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy msgid "Send error report" msgstr "קוד שרת (ID)" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy msgid "Submit error report" msgstr "קוד שרת (ID)" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "תכונות קשר כלליות" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy msgid "Show report details" msgstr "ראיית טבלאות" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "התעלמות" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "הראה את שאילתה כאן שוב" -#: js/messages.php:700 +#: js/messages.php:702 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "האם אכן ברצונך להפעיל את „%s”?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "שאילתת SQL" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "הערות לטבלה" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy msgid "Hide arguments" msgstr "שאילתת SQL" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2735,36 +2739,36 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "העתקת מסד הנתונים אל" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "הוספת שדה חדש" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "החלפת קידומת הטבלה" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "העתקת הטבלה עם קידומת" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "הקודם" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2772,96 +2776,96 @@ msgid "Next" msgstr "הבא" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 #, fuzzy #| msgid "Total" msgid "Today" msgstr "סה\"כ" -#: js/messages.php:755 +#: js/messages.php:757 #, fuzzy #| msgid "Binary" msgid "January" msgstr "בינארי" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 #, fuzzy #| msgid "Mar" msgid "March" msgstr "מרץ" -#: js/messages.php:758 +#: js/messages.php:760 #, fuzzy #| msgid "Apr" msgid "April" msgstr "אפריל" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "מאי" -#: js/messages.php:760 +#: js/messages.php:762 #, fuzzy #| msgid "Jun" msgid "June" msgstr "יוני" -#: js/messages.php:761 +#: js/messages.php:763 #, fuzzy #| msgid "Jul" msgid "July" msgstr "יולי" -#: js/messages.php:762 +#: js/messages.php:764 #, fuzzy #| msgid "Aug" msgid "August" msgstr "אוגוסט" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 #, fuzzy #| msgid "Oct" msgid "October" msgstr "אוקטובר" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "ינואר" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "פברואר" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "מרץ" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "אפריל" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2869,78 +2873,78 @@ msgid "May" msgstr "מאי" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "יוני" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "יולי" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "אוגוסט" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "ספטמבר" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "אוקטובר" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "נובמבר" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "דצמבר" -#: js/messages.php:801 +#: js/messages.php:803 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "יום ראשון" -#: js/messages.php:802 +#: js/messages.php:804 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "יום שני" -#: js/messages.php:803 +#: js/messages.php:805 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "יום שלישי" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "יום שישי" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2948,225 +2952,225 @@ msgid "Sun" msgstr "יום ראשון" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "יום שני" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "יום שלישי" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "יום רביעי" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "יום חמישי" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "יום שישי" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "שבת" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "יום ראשון" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "יום שני" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "יום שלישי" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 #, fuzzy #| msgid "Wed" msgid "We" msgstr "יום רביעי" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "יום חמישי" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "יום שישי" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "שבת" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "ללא" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "בשימוש" -#: js/messages.php:873 +#: js/messages.php:875 #, fuzzy #| msgid "per second" msgid "Second" msgstr "לשנייה" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "השתמש בשדה טקסט" -#: js/messages.php:886 +#: js/messages.php:888 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:887 +#: js/messages.php:889 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:925 +#: js/messages.php:927 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:930 +#: js/messages.php:932 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "שגיאה" @@ -3216,34 +3220,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "in query" msgid "Requery" msgstr "בשאילתה" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3262,90 +3266,71 @@ msgid "Database" msgstr "מסד נתונים" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Search" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "חיפוש" -msgstr[1] "חיפוש" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "הסימנייה נמחקה." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "חיפוש" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "הסברת SQL" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Search" msgid "Bookmark" msgstr "חיפוש" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy msgid "Query failed" msgstr "סוג שאילתה" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy msgid "SQL Query Console" msgstr "שאילתת SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 #, fuzzy msgid "Clear" msgstr "לוח שנה" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "היסטוריית SQL" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3363,10 +3348,10 @@ msgstr "היסטוריית SQL" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 @@ -3374,190 +3359,190 @@ msgstr "היסטוריית SQL" msgid "Options" msgstr "פעולות" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Search" msgid "Bookmarks" msgstr "חיפוש" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Ctrl+Enter to execute query" msgstr "הרצת שאילתה מועדפת" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Enter to execute query" msgstr "הרצת שאילתה מועדפת" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "עולה" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "יורד" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Other" msgid "Order:" msgstr "אחר" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "עמודה" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execution order" msgstr "הרצת שאילתה מועדפת" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Other" msgid "Order by:" msgstr "אחר" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy msgid "Group queries" msgstr "שאילתת SQL" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy msgid "Ungroup queries" msgstr "שאילתת SQL" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "ראיית צבע" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Add new field" msgid "Hide trace" msgstr "הוספת שדה חדש" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "עמודה" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "רענון" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "וגם" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Search" msgid "Add bookmark" msgstr "חיפוש" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "תווית" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy msgid "Target database" msgstr "חפש במסד הנתונים" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Search" msgid "Share this bookmark" msgstr "חיפוש" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy msgid "Set default" msgstr "קבצי ייבוא" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy msgid "Show query history at start" msgstr "שאילתת SQL" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "מעבר לטבלה שהועתקה" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Failed to set configured collation connection!" msgstr "תצורת מעקב מקומית אינה נתמכת" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "השרת אינו מגיב" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3924,7 +3909,7 @@ msgstr "יכול להיות הערכה. ראה [doc@faq3-11]FAQ 3.11[/doc]" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4054,16 +4039,16 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "יכול להיות הערכה. ראה FAQ 3.11" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4131,8 +4116,8 @@ msgid "Keyname" msgstr "שם מפתח" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4183,13 +4168,13 @@ msgstr "אינדקס %s הוסר." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "השמטה" @@ -4287,7 +4272,7 @@ msgstr "הרשאות" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "פעולות" @@ -4302,7 +4287,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4712,11 +4697,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "קח זאת" @@ -4987,21 +4972,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "סה\"כ" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "מירבי: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5012,38 +4997,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL אמר: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "הסברת SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "ללא קוד PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "שליחת שאילתה" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "ייצור קוד PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5137,6 +5122,10 @@ msgstr "לשעה" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "חיפוש:" @@ -5255,44 +5244,44 @@ msgstr "הוספת %s תאים" msgid "Attributes" msgstr "תכונות" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Failed to read configuration file!" msgstr "תצורת מעקב מקומית אינה נתמכת" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "שרת" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5300,24 +5289,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "אתה צריך לשדרג אל %s %s לפחות." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6020,7 +6009,7 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6028,7 +6017,7 @@ msgstr "שדות מוקפים ע\"י" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6050,14 +6039,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "שורות מסתיימות ע\"י" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6683,7 +6672,7 @@ msgid "Column names in first row" msgstr "שמות עמודה" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -8171,7 +8160,7 @@ msgid "Table %s has been emptied." msgstr "הטבלה %s רוקנה." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8312,8 +8301,8 @@ msgid "No data to display" msgstr "אין מאגרי נתונים" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8359,56 +8348,56 @@ msgstr[1] "" msgid "No column selected." msgstr "לא נבחרו שורות" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy msgid "The columns have been moved successfully." msgstr "%s מסדי נתונים נמחקו בהצלחה." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "סוג שאילתה" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "שינוי" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "אינדקס" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Fulltext" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8420,7 +8409,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "ללא שינוי" @@ -9213,55 +9202,55 @@ msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "אין מאגרי נתונים" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "אין מאגרי נתונים" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "מבנה בלבד" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9311,55 +9300,55 @@ msgstr "או" msgid "web server upload directory:" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "הכנסה" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "ואז" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "הכנסה כשורה חדשה" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "חזרה לעמוד הקודם" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "הוספה נוספת של שורה חדשה" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "חזרה אחורה לעמוד זה" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "עריכת השורה הבאה" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9371,11 +9360,11 @@ msgstr "" msgid "Value" msgstr "ערך" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10259,7 +10248,7 @@ msgstr "תיקון טבלה" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10275,34 +10264,34 @@ msgid "Delete the table (DROP)" msgstr "אין מאגרי נתונים" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 #, fuzzy msgid "Check" msgstr "צ'יכית" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 #, fuzzy msgid "Repair" msgstr "תיקון טבלה" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10331,38 +10320,38 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 #, fuzzy msgid "Can't move table to same one!" msgstr "לא ניתן להעתיק טבלה אל אותה אחת!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "לא ניתן להעתיק טבלה אל אותה אחת!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "הטבלה %s הועברה ל- %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "טבלה %s הועתקה אל %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "שם הטבלה ריק!" @@ -10553,7 +10542,7 @@ msgstr "אפשרויות ייצוא מאגר נתונים" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "הוצאת מידע עבור טבלה" @@ -10580,14 +10569,14 @@ msgstr "תיאור" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "מבנה טבלה עבור טבלה" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10595,7 +10584,7 @@ msgstr "מבנה בלבד" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10710,7 +10699,7 @@ msgid "Database:" msgstr "מסד נתונים" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10826,7 +10815,7 @@ msgid "Data creation options" msgstr "לתבנית זאת אין אפשרויות" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10895,7 +10884,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10941,60 +10930,60 @@ msgstr "בשימוש" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "הגבלות לטבלאות שהוצאו" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "הגבלות לטבלה" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "הגבלות לטבלאות שהוצאו" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "בתוך הטבלאות:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "מבנה בלבד" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy msgid "Error reading data:" msgstr "מאפשר מחיקת מידע." @@ -11029,7 +11018,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11049,33 +11038,33 @@ msgstr "" msgid "Column names: " msgstr "שמות עמודה" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11083,28 +11072,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11114,23 +11103,23 @@ msgstr "תיעוד" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -11144,7 +11133,7 @@ msgstr "תואם MySQL 4.0" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14111,15 +14100,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14134,17 +14119,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14166,19 +14152,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14207,17 +14193,17 @@ msgstr "טבלה %s נמחקה" msgid "Variable name was expected." msgstr "תבנית שם קובץ" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "בתחילת טבלה" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14238,17 +14224,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "השורה נמחקה" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14953,7 +14939,7 @@ msgstr "ראיית הוצאה (תבנית) של טבלה" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16067,7 +16053,7 @@ msgid "at beginning of table" msgstr "בתחילת טבלה" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16112,7 +16098,7 @@ msgstr "מיקום" msgid "Edit partitioning" msgstr "הוספת שדה חדש" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16248,12 +16234,12 @@ msgstr "" msgid "Column names" msgstr "שמות עמודה" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "שינוי שם טבלה אל" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "אין מאגרי נתונים" @@ -17371,6 +17357,18 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Search" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "חיפוש" +#~ msgstr[1] "חיפוש" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "הסימנייה נמחקה." + #, fuzzy #~| msgid "Replace table prefix" #~ msgid "Replace table prefix:" diff --git a/po/hi.po b/po/hi.po index ba1aa9ae2b..0b28bfa2f3 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:29+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Hindi " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "फ़ाइल के रूप में सहेजें" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "रीसेट" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "सभी का चयन करें" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "फॉर्म में सूचना गुम हैं!" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "कोई भी एक शब्द" -#: js/messages.php:118 +#: js/messages.php:120 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number!" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:119 +#: js/messages.php:121 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid length!" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "अनुक्रमणिका जोड़" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "अनुक्रमणिका सम्पादित करें" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" msgstr "%s क्षेत्र जोडें" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "संबंध बनायें" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "संबंध बनायें" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Column names" msgid "Composite with:" msgstr "कोलम के नाम" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %s field(s)" msgid "Please select column(s) for the index." msgstr "%s क्षेत्र जोडें" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "आपको कम से कम एक स्तंभ प्रदर्शित करने के लिए चयन करना है." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "Update Query" msgid "Simulate query" msgstr "क्वरी का नवीनीकरण करें" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "प्रभावित पंक्तियाँ:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL क्वरी" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "मूल्य" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "मेज़बान का नाम (hostname) खाली है!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "प्रयोगकर्ता का नाम खाली है!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "कूटशब्द (password) खाली है!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "कूटशब्द (password) समान नहीं हैं!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "चयनित प्रयोक्ताओं को हटायें" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "बंद" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "Page has been created." msgid "Template was created." msgstr "पेज बना दिया गया है" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "प्रोफाइल अपडेट कर दिया ।" -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "रौ को डिलीट कर दिया" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "अन्य" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "कनेक्शन / प्रक्रियाएँ" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "स्थानीय जाँच व्यवस्था असंगत" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1197,167 +1201,167 @@ msgstr "" "तारतम्यता नहीं बैठ पा रही है। हो सकता है कि इस सम्बन्ध में आपका वर्तमान प्रारूप अब काम न " "कर पाए। कृपया, सेटिंग्स मेन्यू में जाकर इसे पुनः डिफ़ॉल्ट पर रिसेट करें।" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "क्वॅरी कैश की कार्यक्षमता" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "क्वॅरी कैश प्रयोग" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "काम में ली गई क्वॅरी कैश" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "मशीन सीपीयू उपयोग" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "सिस्टम मेमोरी" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "सिस्टम स्वॅप" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "औसत दबाव" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "कुल मॅमरी" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "गुप्त एकत्र (cached) मॅमरी" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "बफ़र स्मृति" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "मुक्त स्मृति" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "प्रयुक्त स्मृति" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "कुल स्वॅप" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "एकत्र (cached) स्वॅप" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "प्रयुक्त स्वॅप" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "मुक्त स्वॅप" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "बाइट भेजे गए" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "बाइट प्राप्त हुए" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "कनेक्शन" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "प्रक्रियाएँ" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "बिट्स" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "किलोबाइट" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "मेगाबाइट" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "गीगाबाइट" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "टॅराबाइट" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "पॅटाबाइट" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "अॅग्जाबाइट" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d टेबल" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "प्रश्न" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "व्यस्तता" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "सेटिंग्स" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "चार्ट को जाली (grid) पर लगाएँ" -#: js/messages.php:218 +#: js/messages.php:220 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "कृपया, श्रृंखला में कम से कम एक चर (variable) ज़रूर जोड़ें" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1369,51 +1373,51 @@ msgstr "कृपया, श्रृंखला में कम से कम msgid "None" msgstr "कुछ नहीं" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "देखभाल व्यवस्था को पुनः शुरू करें" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "देखभाल व्यवस्था को एक बार यथास्थिति (pause) रोकें" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" "सामान्य पञ्जिका (general_log) तथा धीमी क्वॅरी पञ्जिका (slow_query_log) समर्थ किये " "गए।" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "सामान्य पञ्जिका (general_log) को समर्थ किया गया।" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "धीमी क्वॅरी पञ्जिका (slow_query_log) को समर्थ किया गया है।" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" "धीमी क्वॅरी पञ्जिका (slow_query_log) तथा सामान्य पञ्जिका (general_log) को निष्क्रिय " "किया गया।" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "टेबल पर पंजिका परिणाम (log_output) सेट नहीं है।" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "टेबल पंजिका परिणाम (log_output) के साथ सेट है।" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1424,12 +1428,12 @@ msgstr "" "में सूचीबद्ध करता है जो %d सेकण्ड्स से ज्यादा समय लेती हैं। अतः आपको सलाह दी जाती है कि " "सिस्टम के अनुरूप अधिक_क्वॅरी_समय (long_query_time) को 0-2 सेकण्ड्स पर सेट कर लें।" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "अधिक_क्वॅरी_समय (long_query_time) को %d सेकण्ड्स पर सेट किया गया।" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1438,31 +1442,31 @@ msgstr "" "डिफ़ॉल्ट पर सेट हो जाएँगी:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "पंजिका परिणाम (log_output) को %s पर सेट करें" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "%s समर्थ करें" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "%s निष्क्रिय करें" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Set long_query_time to %ds" msgid "Set long_query_time to %d seconds." msgstr "अधिक_समय_क्वॅरी (long_query_time) को %ds पर सेट करें" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1470,59 +1474,59 @@ msgstr "" "आप इन चरों (variables) को बदलने की स्थिति में नहीं है। कृपया मूल (root) प्रयोक्ता के " "बतौर लोग इन करें या अपने डॅटाबेस प्रबंधक से संपर्क करें।" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "सेटिंग्स बदलें" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "वर्तमान सेटिंग्स" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Default title" msgid "Chart title" msgstr "डिफ़ॉल्ट शीर्षक" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "अवकलित" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "%s से विभाजित" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "इकाई" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "धीमी पंजिका (slow log) से" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "सामान्य पंजिका (general_log) से" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "पंजिका (log) छान-बीन ज़ारी" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "पंजिका की छान-बीन और लोडिंग हो रही है। इसमें थोड़ा वक्त लग सकता है।" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "अनुरोध रद्द करें" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1532,7 +1536,7 @@ msgstr "" "का मापदण्ड इनका SQL पाठ्य ही है अतः क्वॅरीज के अन्य गुणधर्म जैसे शुरुआत का समय आदि भिन्न " "मान लिए हो सकते हैं।" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1542,35 +1546,35 @@ msgstr "" "गयी INSERT क्वॅरीज को भी एकत्रित (group) किया गया है। टेबल में डाले (insert) गए डॅटा " "से इसका कोई सम्बन्ध नहीं है।" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "पंजिका जानकारी लोड हो चुकी है। क्वॅरीज क्रियान्वन में लगा समय:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "सीधे पंजिका टेबल (log table) पर जाएँ" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "कोई डॅटा नहीं पाया गया" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "पंजिका (log) की छान-बीन की गयी, परन्तु इस समय अन्तराल विशेष में कोई डॅटा नहीं पाया " "गया।" -#: js/messages.php:289 +#: js/messages.php:291 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "विश्लेषण" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "परिणाम को समझाएँ" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1578,7 +1582,7 @@ msgstr "परिणाम को समझाएँ" msgid "Status" msgstr "स्थिति" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1588,61 +1592,61 @@ msgstr "स्थिति" msgid "Time" msgstr "समय" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "कुल समय:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "परिणाम का रूपरेखा बन रही है" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "टेबल" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "चार्ट" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "पंजिका (log) टेबल फ़िल्टर विकल्प" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "फ़िल्टर" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "क्वॅरीज को शब्द / रेग्युलर एक्सप्रेशन के जरिये फ़िल्टर करें:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "WHERE कथन में चर (variable) डॅटा को बिना शामिल किये, क्वॅरीज को एकत्र (group) करें" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "एकत्र (group) पंक्तियों का योग:" -#: js/messages.php:306 +#: js/messages.php:308 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "कुल" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "पंजिका (log) को लोड किया जा रह है" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "देख-रेख तंत्र असफल रहा" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1652,25 +1656,25 @@ msgstr "" "समाप्त हो गयी हो। समाधान के लिए पेज रीलोड करें और अपने परिचय सम्बन्धी जानकारी फिर से " "डालकर देखें।" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "पृष्ठ पुनः लोड करें" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "प्रभावित पंक्तियाँ:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "कॉन्फिग फ़ाईल की को पढ़ पाने असमर्थ। ऐसा प्रतीत होता है कि इसमें मानक JSON कोड नहीं है।" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1679,69 +1683,69 @@ msgstr "" msgid "Import" msgstr "आयात करें" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "देख-रेख (import) विन्यास (configuration) आयात करें" -#: js/messages.php:328 +#: js/messages.php:330 #, fuzzy #| msgid "Please select the file you want to import" msgid "Please select the file you want to import." msgstr "जिस फाईल को आयात करना चाहते हैं, उसे चुनें" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "क्वॅरी का विश्लेष्ण करें" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "परामर्श व्यवस्था" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "कार्यक्षमता के सन्दर्भ में संभावित मुद्दे" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "मसला" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "अनुशंसायें" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "नियमों का विवरण" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "औचित्यकरण" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "प्रयुक्त चर (variable) / सूत्र (formula)" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "जाँच" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "गलत पैरामीटर्स!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1753,72 +1757,72 @@ msgstr "गलत पैरामीटर्स!" msgid "Cancel" msgstr "रद्द" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "सेटिंग्स बदलें" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "लोड हो रहा है…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "अनुरोध क्रियान्वित हो रहा है" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "क्वेरी कैश" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "याचिका प्रसंस्करणमें त्रुटि" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "कोइ डाटाबेस नहीं चुना गया है।" -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "कॉलम को हटाया जाना" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "प्राथमिक कुंजी जोड़ें" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1828,65 +1832,65 @@ msgstr "प्राथमिक कुंजी जोड़ें" msgid "OK" msgstr "ठीक है" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "इस सूचना को खारिज़ करने के लिए क्लिक करें" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "डॅटाबेसों का पुनर्नामकारण" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "डॅटाबेस प्रतिलिपिकरण" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "वर्ण समूह बदलाव" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "निष्क्रिय विदेशी कुंजी चेक" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "हेडर को लाने में विफल" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "ख़ोज" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "खोज परिणाम छिपाएँ" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "खोज परिणाम दिखाएँ" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "ब्राउज़िंग" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "मिटाना" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "एक संगृहीत फंक्शन की परिभाषा (definition) में RETURN कथन होना आवश्यक है!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1902,46 +1906,46 @@ msgstr "एक संगृहीत फंक्शन की परिभा msgid "Export" msgstr "निर्यात" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "%s स्तंभ के लिए मूल्य" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "नए स्तंभ के लिए मूल्य" -#: js/messages.php:398 +#: js/messages.php:400 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Enter each value in a separate field." msgstr "हर एक मान अलग क्षेत्र में दर्ज करें" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "%d मान जोड़ें" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "सूचना: यदि फ़ाईल में एक से अधिक टेबलें हैं तो वे एक में ही संगठित की जाएँगी।" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "क्वॅरी बॉक्स छिपाएँ" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "क्वॅरी बॉक्स दिखाएँ" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1951,7 +1955,7 @@ msgstr "क्वॅरी बॉक्स दिखाएँ" msgid "Edit" msgstr "सम्पादन" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1962,96 +1966,96 @@ msgstr "सम्पादन" msgid "Delete" msgstr "मिटाएँ" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d एक वैध पंक्ति संख्या नहीं है।" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "विदेशी मूल्य ब्राउस करें" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "स्थिति" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "कोई पंक्ति चयनित नहीं" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "डाटाबेस में खोजें" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "मुक्त स्मृति" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "योगदान" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "प्राथमिक कुंजी जोड़ें" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "%s पर एक प्राईमरी की जड़ी गयी है" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "ट्रैकिंग रिपोर्ट" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2059,90 +2063,90 @@ msgstr "" msgid "End of step" msgstr "लाइन के अंत" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "हो गया" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "कोइ डाटाबेस नहीं चुना गया है।" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "निम्नलिखित क्वरीों क्रियान्वित किया गया है" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "इन टेबल के लिये विशेषाधिकार जोडें" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "कोइ डाटाबेस नहीं चुना गया है।" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2152,169 +2156,169 @@ msgstr "कोइ डाटाबेस नहीं चुना गया ह msgid "Save" msgstr "सुरक्षित करें" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "ख़ोज मापदंड छिपाएँ" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "खोज मापदंड दिखाएँ" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "ढूंढें" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "कोलम नाम" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "कोलम नाम" -#: js/messages.php:477 +#: js/messages.php:479 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "अधिकतम सारणी" -#: js/messages.php:478 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "अधिकतम सारणी" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "ख़ोज मापदंड छिपाएँ" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "खोज मापदंड दिखाएँ" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "प्रत्येक बिन्दु एक डॅटा पंक्ति को बताता है।" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "लेबल देखने के लिए कर्सर बिन्दु के ऊपर लेकर जाएँ।" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "और बारीकी से देखने के लिए पुरे क्षेत्र का कोई भाग माउस से सेलेक्ट करें।" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "पंक्ति को देखने और संभावित सम्पादन के लिए डॅटा बिन्दु पर क्लिक करें।" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "दायीं तरफ नीचे के कोने के साथ पॉइंटर घसीटने पर क्षेत्र के अकार को बदला जा सकता है।" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "दो कॉलम चुने" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "दो भिन्न कॉलम चुनें" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "डॅटा बिन्दु सामग्री" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "उपेक्षा करें" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "प्रतिलिपि करें" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "बिन्दु" -#: js/messages.php:512 +#: js/messages.php:514 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "लाईन समाप्त होता है" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "बहुभुज" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "ज्यामिति" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "आंतरिक वृत्त" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "बाहरी वृत्त:" -#: js/messages.php:520 +#: js/messages.php:522 #, fuzzy #| msgid "Do you want to import remaining settings?" msgid "Do you want to copy encryption key?" msgstr "क्या आप शेष सेटिंग्स आयात करना चाहते हैं?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "संदर्भ कुंजी का चयन करें" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "परदेशी कुंजी का चयन करें" -#: js/messages.php:533 +#: js/messages.php:535 #, 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "प्रदर्शित करने के लिए काँलम चुनें" -#: js/messages.php:536 +#: js/messages.php:538 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?" @@ -2322,97 +2326,97 @@ msgstr "" "आपने प्रदर्शन में बदलावों को सुरक्षित नहीं किया है। ये बदलाव खो जायेंगे यदि आपने सुरक्षित नहीं " "किया। क्या आप ज़ारी रखना चाहेंगे?" -#: js/messages.php:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "पृष्ठ नाम:" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "पेज चुनिये" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "इकाई" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "एडिट करने के लिये पेज़ चुने" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "संबंधपरक स्कीमा को संपादित या निर्यात करें" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "संशोधनों को बचाया गया है" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "कॉलम के लिए एक विकल्प जोड़ें " -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "सबमिट" -#: js/messages.php:559 +#: js/messages.php:561 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "सम्पादन को रद्द करने के लिए एस्केप दबाएँ" -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2420,49 +2424,49 @@ msgstr "" "आपने कुछ डॅटा को सम्पादित किया है पर सुरक्षित नहीं किया है। क्या आप उन्हें बिना सुरक्षित " "किये आगे बढ़ना चाहेंगे?" -#: js/messages.php:564 +#: js/messages.php:566 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "पुनः व्यवस्थित करने के लिए घसीटें" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "चिन्हित / अचिन्हित करने के लिए क्लिक करें" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "कोलम के नाम" -#: js/messages.php:574 +#: js/messages.php:576 #, 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "सभी दिखाएँ" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2470,131 +2474,131 @@ msgstr "" "इस टेबल में कोई भी विशिष्ट (unique) कॉलम नहीं है। इस बात कि सम्भावना है कि ग्रिड " "सम्पादन, टिक-बॉक्स, सम्पादन, प्रतिलिपि एवं मिटाने के लिंक से जुडी सुविधाएँ काम न करें।" -#: js/messages.php:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "मूल स्थिति" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "रद्द" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "रद्द" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "आयात" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "टेबल चुनिये" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "छापें" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "लिंक पर जाएँ" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "कोलम के नाम" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "नया पासवर्ड उत्पन्न करें" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "उत्पन्न करें" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "अधिक" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "सभी दिखाएँ" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Add index" msgid "Hide panel" msgstr "अनुक्रमणिका जोड़" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "बाईं फ्रेम में लोगो देखियें" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "मुख्य फ्रेम को अनुकूलित करें" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "मुख्य फ्रेम को अनुकूलित करें" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2603,123 +2607,123 @@ msgstr "" "phpMyAdmin का नवीन संस्करण उपलब्ध है। नया संस्करण %s है जो कि %s को प्रकाशित हुआ है।" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "नवीनतम स्थिर संस्करण:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "अद्यतन" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "दृश्य बनाइये" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "सर्वर" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "सर्वर" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "सेटिंग्स बदलें" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "खुला टेबल शो" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "उपेक्षा करें" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "यह query वापस यहीं दिखायें" -#: js/messages.php:700 +#: js/messages.php:702 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "क्या आप सचमुच \"%s\" निष्पादित चाहते है?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "टेबल की टिप्पणी" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "खोज परिणाम छिपाएँ" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2728,182 +2732,182 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "डेटाबेस को ______ में कॉपी करें" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add index" msgid "Add table prefix" msgstr "अनुक्रमणिका जोड़" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "टेबल के उपसर्ग को पुनर्स्थापना करें" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "टेबल को इस उपसर्ग के साथ प्रतिलिपि बनाएँ" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "पिछला" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "अगला" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "आज" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "जनवरी" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "फरवरी" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "मार्च" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "अप्रैल" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "मई" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "जून" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "जुलाई" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "अगस्त" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "सितम्बर" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "अक्तूबर" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "नवम्बर" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "दिसम्बर" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "जनवरी" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "फरवरी" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "मार्च" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "अप्रैल" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "मई" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "जून" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "जुलाई" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "अगस्त" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "सितम्बर" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "अक्तूबर" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "नवम्बर" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "दिसमबर" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "रविवार" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "सोमवार" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "मंगलवार" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "बुधवार" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "गुरूवार" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "शुक्रवार" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "शनिवार" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2911,205 +2915,205 @@ msgid "Sun" msgstr "रविवार" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "सोमवार" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "मंगलवार" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "बुधवार" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "गुरुवार" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "शुक्रवार" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "शनिवार" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "रवि" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "सोम" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "मंगल" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "बुध" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "गुरु" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "शुक्र" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "शनि" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "कैलेण्डर-माह-वर्ष" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "कुछ नहीं" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "घंटा" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "मिनट" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "सेकण्ड" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Text fields" msgid "Please fix this field" msgstr "पाठ फ़ील्ड" -#: js/messages.php:886 +#: js/messages.php:888 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:887 +#: js/messages.php:889 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:925 +#: js/messages.php:927 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:930 +#: js/messages.php:932 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "त्रुटि" @@ -3160,34 +3164,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "फ़ॉन्ट का आकार" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "Query" msgid "Requery" msgstr "उप-क्वरी" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3206,95 +3210,76 @@ msgid "Database" msgstr "डाटाबेस" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Delete relation" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "संबंध हटाना" -msgstr[1] "संबंध हटाना" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "साझा" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "यह बुकमार्क हटा दिया गया है." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "संबंध हटाना" -#: libraries/Console.php:186 +#: libraries/Console.php:168 #, fuzzy #| msgid "Skip current error" msgid "During current session" msgstr "वर्तमान त्रुटि को छोड़" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "SQL की व्याख्या" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "रूपरेखा" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Bookmark table" msgid "Bookmark" msgstr "बुकमार्क टेबल" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query cache" msgid "Query failed" msgstr "क्वेरी कैश" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "Query execution time" msgid "Queried time" msgstr "क्वॅरी क्रियान्वन में लगा समय" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "SQL क्वरी बॉक्स" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "स्पष्ट" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "SQL- इतिहास" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3312,201 +3297,201 @@ msgstr "SQL- इतिहास" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "विकल्प" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Bookmark table" msgid "Bookmarks" msgstr "बुकमार्क टेबल" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "डिबग SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy msgid "Press Ctrl+Enter to execute query" msgstr "SQL क्वरी" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy msgid "Press Enter to execute query" msgstr "SQL क्वरी" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "आरोही" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "अवरोही" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Other" msgid "Order:" msgstr "अन्य" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "स्तम्भ" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Default sorting order" msgid "Execution order" msgstr "डिफ़ॉल्ट सॉर्ट क्रम" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Other" msgid "Order by:" msgstr "अन्य" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "SQL क्वरी" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "SQL क्वरी" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "रंग दिखाओ" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Add index" msgid "Hide trace" msgstr "अनुक्रमणिका जोड़" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "स्तम्भ" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "ताज़ा करना" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "और" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Delete relation" msgid "Add bookmark" msgstr "संबंध हटाना" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "लेबल" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "लक्ष्य डेटाबेस" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Delete relation" msgid "Share this bookmark" msgstr "संबंध हटाना" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Restore default value" msgid "Set default" msgstr "मूलभूत मान को बहाल" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "SQL query history table" msgid "Show query history at start" msgstr "SQL इतिहास क्वेरी टेबल" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "नकल की टेबल पर स्विच करें" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Could not save configuration" msgid "Failed to set configured collation connection!" msgstr "विन्यास सहेज नहीं सकते" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "सर्वर जवाब नहीं दे रहा" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "विवरण…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3869,7 +3854,7 @@ msgstr "शायद अनुमानित हैं. [doc@faq3-11]FAQ 3.11[/ #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4001,7 +3986,7 @@ msgstr "फ़ाइल एक्सटेंशन द्वारा अपल msgid "Unknown error in file upload." msgstr "फ़ाइल अपलोड करने में अज्ञात त्रुटि." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -4009,11 +3994,11 @@ msgstr "" "अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [doc@faq1-1]अकसर किये गए सवाल " "1,11[/doc] देखें" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4081,8 +4066,8 @@ msgid "Keyname" msgstr "मुख्यनाम" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4132,13 +4117,13 @@ msgstr "सूचकांक %s गिरा दिया गया है." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "रद्द" @@ -4236,7 +4221,7 @@ msgstr "प्रिविलेज" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "कार्रवाई" @@ -4251,7 +4236,7 @@ msgstr "नज़र रखना" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4666,11 +4651,11 @@ msgstr "विदेशी कुंजी बनाने में त्र msgid "No valid image path for theme %s found!" msgstr "विषय %s के लिए कोई वैध छवि पथ नहीं पाया है!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "पूर्वावलोकन उपलब्ध नहीं." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "इसे ले लो" @@ -4943,23 +4928,23 @@ msgctxt "spatial types" msgid "Spatial" msgstr "कुल" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "अधिकतम: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "स्थिर (static) डॅटा" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4970,38 +4955,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL ने कहा: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL की व्याख्या" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "SQL की व्याख्या को छोड़ जाना" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "php कोड के बिना" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "क्वरी भेजें" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP Code बनाओ" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5099,6 +5084,10 @@ msgstr "प्रति घंटा" msgid "per day" msgstr "प्रतिदिन" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "साझा" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "खोज करे:" @@ -5215,44 +5204,44 @@ msgstr "नया काँलम जोडें" msgid "Attributes" msgstr "विशेषता" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Could not save configuration" msgid "Failed to read configuration file!" msgstr "विन्यास सहेज नहीं सकते" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "%1$s से मूलभूत विन्यास लोड नहीं की जा सकी ।" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "अवैध सर्वर सूचकांक: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "%1$s सर्वर के लिए होस्टनाम अवैध कृपया अपना विन्यास की समीक्षा करें।" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "सर्वर" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "विन्यास में अवैध प्रमाणीकरण विधि स्थापित:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5260,24 +5249,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "आपको %s %s या अधिक में नवीनीकृत करना चाहिए।" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6046,7 +6035,7 @@ msgstr "काँलम नाम प्रथम रो में" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Column names" msgid "Columns enclosed with" @@ -6054,7 +6043,7 @@ msgstr "कोलम के नाम" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Column names" msgid "Columns escaped with" @@ -6076,14 +6065,14 @@ msgstr "CRLF चरित्र को कोलम से हटायें" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "काँलम समाप्त होता है" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6763,7 +6752,7 @@ msgid "Column names in first row" msgstr "कोलम के नाम पहली रो में" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "खाली रोयाँ आयात नहीं" @@ -8469,7 +8458,7 @@ msgid "Table %s has been emptied." msgstr "टेबल %s को खाली किया गया है." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8609,8 +8598,8 @@ msgid "No data to display" msgstr "कोइ डाटाबेस नहिं" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8660,57 +8649,57 @@ msgstr[1] "" msgid "No column selected." msgstr "कोई पंक्ति चयनित नहीं" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "Table %1$s has been altered successfully." msgid "The columns have been moved successfully." msgstr "%1$s टेबल को सफलतापूर्वक बदल दिया गया है" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Gather errors" msgid "Query error" msgstr "त्रुटियों को इकट्ठा करें" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "बदलें" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "सूची" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "प्राथमिक" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8722,7 +8711,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s विस्तार गायब है. कृपया अपने PHP विन्यास की जाँच करें।" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "कोइ बदलाव नहीं" @@ -9501,18 +9490,18 @@ msgstr "MySQL ने एक खाली परिणाम सेट लोत msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "निम्नलिखित संरचनाओं या तो बनाया गया है या बदल दिया| यहाँ पर आप:" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 #, 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:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9520,47 +9509,47 @@ msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "सेटिंग्स को बदलने के लिए \"विकल्प\" लिंक पर क्लिक करें" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "इसकी संरचना को संपादित करने के लिए \"संरचना\" लिंक पर क्लिक करें" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "डेटाबेस पर जायें" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "%s के लिए डेटा लापता" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "टेबल पर जायें" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "केवल संरचना" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "दृश्य पर जायें" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9608,55 +9597,55 @@ msgstr "अथवा" msgid "web server upload directory:" msgstr "वेब सर्वर अपलोड निर्देशिका" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "इनसर्ट" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "और फिर" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "इसको नया रौ में जोडे" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "पिछले पृष्ट पर वापस जाएँ" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "एक और नई रो इनसर्ट करें" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "इस पृष्ठ पर वापस जाएँ" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "अगली रो को संपादित करें" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9668,11 +9657,11 @@ msgstr "" msgid "Value" msgstr "मूल्य" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "SQL क्वेरी शो" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "इनसर्ट रो id: %1$d" @@ -10564,7 +10553,7 @@ msgstr "टेबल को मरम्मत करें" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "टेबल या डेटा हटाएँ" @@ -10577,32 +10566,32 @@ msgid "Delete the table (DROP)" msgstr "डेटाबेस को ______ छोड़ें" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "विश्लेषण" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "चेक" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "सुधारना" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "फिर से बनाना" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "मरम्मत" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10630,38 +10619,38 @@ msgstr "विभाजन हटायें" msgid "Check referential integrity:" msgstr "सम्बन्ध की अखंडता की जाँच करें:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "एक ही टेबल में स्थानांतरित नहीं कर सकते!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 #, fuzzy msgid "Can't copy table to same one!" msgstr "एक ही टेबल में प्रतिलिपि नहीं कर सकते!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "%s टेबल को %s में मूव कर दिया." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "%s टेबल को %s में कापी कर दिया." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "टेबल का नाम खाली है!" @@ -10849,7 +10838,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10875,21 +10864,21 @@ msgstr "वर्णन" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "वीएव के लिए संरचना" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -11001,7 +10990,7 @@ msgid "Database:" msgstr "डाटाबेस" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11118,7 +11107,7 @@ msgid "Data creation options" msgstr "परिवर्तन के विकल्प" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11187,7 +11176,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11233,61 +11222,61 @@ msgstr "उपयोग में है" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "दुम्प टेबलओं के लिए प्रतिबन्ध" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "टेबल के लिए प्रतिबन्ध" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "दुम्प टेबलओं के लिए प्रतिबन्ध" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "टेबल में:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "शुन्य मूल्य के लिए AUTO_INCREMENT का प्रयोग न करें" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT मूल्य जोडें" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "टेबल के लिए MIME प्रकार" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "टेबल के लिए संबंध" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "वीएव के लिए संरचना" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11323,7 +11312,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11343,33 +11332,33 @@ msgstr "" msgid "Column names: " msgstr "कोलम नाम" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV आयात के लिए अमान्य पैरामीटर: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "CSV प्रारूप का अवैध इनपुट लाइन %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "CSV इनपुट में अवैध काँलम गिनती लाइन %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "यह प्लगइन संकुचित आयात का समर्थन नहीं करता!" @@ -11377,29 +11366,29 @@ msgstr "यह प्लगइन संकुचित आयात का स msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." msgstr "CSV प्रारूप का अवैध इनपुट लाइन %d." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "प्रतिशत को उचित दशमलव के रूप में आयात करें (उ. 12.00% को .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "आयात मुद्राओं ($5.00 से 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11409,23 +11398,23 @@ msgstr "दस्तावेज़ खोलें" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -11439,7 +11428,7 @@ msgstr "SQL संगतता मोड:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14459,15 +14448,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14482,17 +14467,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14514,21 +14500,21 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "Title of browser window when a table is selected" msgid "The old name of the table was expected." msgstr "ब्राउज़र विंडो का शीर्षक है जब किसी भी सर्वर का चयन नहीं किया है" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14559,17 +14545,17 @@ msgstr "%1$s टेबल बना दिया गया है" msgid "Variable name was expected." msgstr "टेबल नाम टेम्पलेट" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "टेबल के शुरू में" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14590,17 +14576,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "रौ को डिलीट कर दिया" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15325,7 +15311,7 @@ msgstr "टेबल डंप दृश्य" msgid "Invalid table name" msgstr "अवैध टेबल नाम" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16450,7 +16436,7 @@ msgid "at beginning of table" msgstr "टेबल के शुरू में" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16499,7 +16485,7 @@ msgstr "विभाजित" msgid "Edit partitioning" msgstr "विभाजन हटायें" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16632,11 +16618,11 @@ msgstr "दृश्य का नाम" msgid "Column names" msgstr "कोलम के नाम" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "दृश्य का नाम बदलो" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Delete the table (DROP)" msgid "Delete the view (DROP)" @@ -17830,6 +17816,18 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 0 पर सेट है" +#, fuzzy +#~| msgid "Delete relation" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "संबंध हटाना" +#~ msgstr[1] "संबंध हटाना" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "यह बुकमार्क हटा दिया गया है." + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/hr.po b/po/hr.po index 547cff04cd..1ca5e09c46 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Croatian " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Spremi kao datoteku" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Povrat" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Odaberi sve" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "U obrascu nedostaje vrijednost!" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "najmanje jedna riječ" -#: js/messages.php:118 +#: js/messages.php:120 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number!" msgstr "Netočan broj porta" -#: js/messages.php:119 +#: js/messages.php:121 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid length!" msgstr "Netočan broj porta" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Dodaj indeks" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Uredi indeks" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" msgstr "Dodaj %s polja" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Izradi relaciju" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Izradi relaciju" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Polja obuhvaćena po" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %s field(s)" msgid "Please select column(s) for the index." msgstr "Dodaj %s polja" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Morate dodati najmanje jedno polje." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "unutar upita" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Latched pages" msgid "Matched rows:" msgstr "Vezane stranice" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL upit" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Vrijednost" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Ime domaćina je prazno!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Korisničko ime je prazno!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Lozinke se ne podudaraju!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Ukloni odabrane korisnike" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Zatvori" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Broj izrađenih stranica." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profil je ažuriran." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Redak je izbrisan" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Ostalo" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Veze/Procesi" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Local monitor configuration incompatible!" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1251,181 +1256,181 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Pohrana upita" -#: js/messages.php:177 +#: js/messages.php:179 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Pohrana upita" -#: js/messages.php:178 +#: js/messages.php:180 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Pohrana upita" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Korištenje CPU-a" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Sistemska memorija" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Prosječno učitavanje" -#: js/messages.php:185 +#: js/messages.php:187 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "Najveći broj datoteka zapisnika" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Keširana memorija" -#: js/messages.php:187 +#: js/messages.php:189 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Međuspremnik" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Slobodna memorija" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Zauzeta memorija" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Ukupno" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Iskorištenost prostora" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "Slobodne stranice" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Primljeno" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Veze" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Procesi" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "kB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s tablica" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 #, fuzzy msgid "Questions" msgstr "Perzijski" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Promet" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Opće osobine relacija" -#: js/messages.php:215 +#: js/messages.php:217 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Poravnaj s mrežom" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1437,47 +1442,47 @@ msgstr "" msgid "None" msgstr "bez kompresije" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log je omogućen." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log je omogućen." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log and general_log su onemogućeni." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1485,156 +1490,156 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Spremi kao datoteku" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Omogućeno" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Onemogućeno" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "Upit je trajao %01.4f sek" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Opće osobine relacija" -#: js/messages.php:254 +#: js/messages.php:256 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Opće osobine relacija" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Naslov izvještaja" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Diferencijalni" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Jedinica" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 #, fuzzy msgid "Analysing logs" msgstr "Lokalno" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Pročitaj zahtjeve" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 #, fuzzy msgid "Jump to Log table" msgstr "Nema baza podataka" -#: js/messages.php:285 +#: js/messages.php:287 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Nema baza podataka" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Analiziraj" -#: js/messages.php:290 +#: js/messages.php:292 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Objasni SQL" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1642,7 +1647,7 @@ msgstr "Objasni SQL" msgid "Status" msgstr "Stanje" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1652,98 +1657,98 @@ msgstr "Stanje" msgid "Time" msgstr "Vrijeme" -#: js/messages.php:293 +#: js/messages.php:295 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Ukupno" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Izrada profila" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tablica" -#: js/messages.php:296 +#: js/messages.php:298 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Tablica znakova" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 #, fuzzy msgid "Log table filter options" msgstr "Opcije izvoza baze podataka" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 #, fuzzy msgid "Filter" msgstr "Datoteke" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 #, fuzzy msgid "Sum of grouped rows:" msgstr "Broj presloženih redaka." -#: js/messages.php:306 +#: js/messages.php:308 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Ukupno" -#: js/messages.php:308 +#: js/messages.php:310 #, fuzzy msgid "Loading logs" msgstr "Lokalno" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Osvježi" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1752,77 +1757,77 @@ msgstr "" msgid "Import" msgstr "Uvoz" -#: js/messages.php:326 +#: js/messages.php:328 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: js/messages.php:328 +#: js/messages.php:330 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import." msgstr "Odaberite primarni ključ ili jedinstveni ključ" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Ažuriraj upit" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Dokumentacija" -#: js/messages.php:339 +#: js/messages.php:341 #, fuzzy #| msgid "Details…" msgid "Rule details" msgstr "Detalji…" -#: js/messages.php:340 +#: js/messages.php:342 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Dokumentacija" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Test" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Pogrešni parametri!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1834,73 +1839,73 @@ msgstr "Pogrešni parametri!" msgid "Cancel" msgstr "Odustani" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Opće osobine relacija" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy msgid "Loading…" msgstr "Lokalno" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Procesi" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Pohrana upita" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Nema odabrane baze podataka." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Brisanje stupca" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Dodaj primarni ključ" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1910,72 +1915,72 @@ msgstr "Dodaj primarni ključ" msgid "OK" msgstr "U redu" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Preimenuj bazu podataka u" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Kopiraj bazu podataka u" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Tablica znakova" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Onemogući provjere stranih znakova" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy msgid "Failed to get real row count." msgstr "Zapisivanje datoteke na disk nije uspjelo." -#: js/messages.php:383 +#: js/messages.php:385 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Traži" -#: js/messages.php:384 +#: js/messages.php:386 #, fuzzy msgid "Hide search results" msgstr "SQL upit" -#: js/messages.php:385 +#: js/messages.php:387 #, fuzzy msgid "Show search results" msgstr "SQL upit" -#: js/messages.php:386 +#: js/messages.php:388 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Pretraživanje" -#: js/messages.php:387 +#: js/messages.php:389 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Brisanje %s" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1991,48 +1996,48 @@ msgstr "" msgid "Export" msgstr "Izvoz" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET uređivač" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Vrijednosti za stupac %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Vrijednosti za novi stupac" -#: js/messages.php:398 +#: js/messages.php:400 #, 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:399 +#: js/messages.php:401 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Dodaj novog korisnika" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 #, fuzzy msgid "Hide query box" msgstr "SQL upit" -#: js/messages.php:408 +#: js/messages.php:410 #, fuzzy msgid "Show query box" msgstr "SQL upit" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -2042,7 +2047,7 @@ msgstr "SQL upit" msgid "Edit" msgstr "Uređivanje" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -2053,96 +2058,96 @@ msgstr "Uređivanje" msgid "Delete" msgstr "Izbriši" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 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:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Pretraži strane vrijednosti" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Varijabla" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Nema odabranih redova" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Traži u bazi podataka" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Slobodna memorija" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atributi" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Dodaj primarni ključ" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Primarni ključ je dodan na %s." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Izvještaj o praćenju" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2150,89 +2155,89 @@ msgstr "" msgid "End of step" msgstr "Pri završetku tablice" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 #, fuzzy msgid "Done" msgstr "Podaci" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Nema odabrane baze podataka." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Dodaj privilegije za sljedeću tablicu" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Nema odabrane baze podataka." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2242,440 +2247,440 @@ msgstr "Nema odabrane baze podataka." msgid "Save" msgstr "Spremi" -#: js/messages.php:472 +#: js/messages.php:474 #, fuzzy msgid "Hide search criteria" msgstr "SQL upit" -#: js/messages.php:473 +#: js/messages.php:475 #, fuzzy msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Traži" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Nazivi stupaca" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Nazivi stupaca" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 #, fuzzy msgid "Maximum value:" msgstr "Nema baza podataka" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL upit" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL upit" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 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:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Dodaj/Izbriši stupce polja" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Odaberite dva različita stupca" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Veličina pokazatelja podataka" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignoriraj" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Kopiraj" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Točka" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Linija teksta" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometrija" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Unutarnji Prsten" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Vanjski Prsten" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Odaberite referentni ključ" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Odaberite strani ključ" -#: js/messages.php:533 +#: js/messages.php:535 #, 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Broj stranice:" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Odaberite tablice" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Jedinica" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Odaberite tablicu za uređivanje" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Netočan broj porta" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Uredi ili izvozi relacijske šeme" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Izmjene su spremljene" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "Dodaj opciju stupcu " -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Podnesi" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Nazivi stupaca" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Prikaži sve" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Izvorni položaj" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Odustani" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Prekinuto" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy msgid "Import status" msgstr "Uvezi datoteke" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Najveća veličina datoteke zapisnika" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Odaberite tablice" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Ispiši" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy msgid "Go to link:" msgstr "Nema baza podataka" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Nazivi stupaca" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generiraj lozinku" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Generiraj" -#: js/messages.php:628 +#: js/messages.php:630 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Prikaži sve" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indeksi" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Prikaži logo u lijevom okviru" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Postavi glavni okvir" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Postavi glavni okvir" -#: js/messages.php:639 +#: js/messages.php:641 #, 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2685,123 +2690,123 @@ msgstr "" "Najnovija verzija je %s objavljena na %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 #, fuzzy msgid ", latest stable version:" msgstr "Izradi relaciju" -#: js/messages.php:648 +#: js/messages.php:650 #, fuzzy msgid "up to date" msgstr "Nema baza podataka" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy msgid "Create view" msgstr "Izradi relaciju" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy msgid "Send error report" msgstr "ID poslužitelja" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy msgid "Submit error report" msgstr "ID poslužitelja" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Opće osobine relacija" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Prikaži otvorene tablice" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoriraj" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Ovaj upit ponovno prikaži ovdje" -#: js/messages.php:700 +#: js/messages.php:702 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Želite li zaista " -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL upit" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentari tablice" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy msgid "Hide arguments" msgstr "SQL upit" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2810,36 +2815,36 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopiraj bazu podataka u" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add prefix" msgid "Add table prefix" msgstr "Dodaj prefiks" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Zamijeni prefiks tablice" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopiraj tablicu sa prefiksom" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Prethodni" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2847,96 +2852,96 @@ msgid "Next" msgstr "Sljedeće" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:755 +#: js/messages.php:757 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarno" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Veljača" -#: js/messages.php:757 +#: js/messages.php:759 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Ožu" -#: js/messages.php:758 +#: js/messages.php:760 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Tra" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Svi" -#: js/messages.php:760 +#: js/messages.php:762 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Lip" -#: js/messages.php:761 +#: js/messages.php:763 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Srp" -#: js/messages.php:762 +#: js/messages.php:764 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Kol" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Rujan" -#: js/messages.php:764 +#: js/messages.php:766 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Lis" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Studeno" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Prosinac" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Sij" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Velj" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Ožu" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2944,78 +2949,78 @@ msgid "May" msgstr "Svi" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Srp" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Kol" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Ruj" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Pro" -#: js/messages.php:801 +#: js/messages.php:803 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:802 +#: js/messages.php:804 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:803 +#: js/messages.php:805 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Srijeda" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "ČEtvrtak" -#: js/messages.php:806 +#: js/messages.php:808 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Subota" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3023,86 +3028,86 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3111,139 +3116,139 @@ msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "bez kompresije" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Sat" -#: js/messages.php:872 +#: js/messages.php:874 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "u upotrebi" -#: js/messages.php:873 +#: js/messages.php:875 #, fuzzy #| msgid "per second" msgid "Second" msgstr "po sekundi" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Upotrijebi tekstualno polje" -#: js/messages.php:886 +#: js/messages.php:888 #, 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:889 #, 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:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Netočan broj porta" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Netočan broj porta" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Netočan broj porta" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Netočan broj porta" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Netočan broj porta" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Netočan broj porta" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Netočan broj porta" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Netočan broj porta" -#: js/messages.php:925 +#: js/messages.php:927 #, 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:930 +#: js/messages.php:932 #, 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:936 +#: js/messages.php:938 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Netočan broj porta" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Netočan broj porta" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Pogreška" @@ -3294,34 +3299,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Veličina fonta" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "in query" msgid "Requery" msgstr "unutar upita" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3340,94 +3345,75 @@ msgid "Database" msgstr "Baza podataka" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Delete relation" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Izbriši relaciju" -msgstr[1] "Izbriši relaciju" -msgstr[2] "Izbriši relaciju" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "Favorit je izbrisan." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Izbriši relaciju" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "Objasni SQL" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Izrada profila" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Bookmark table" msgid "Bookmark" msgstr "Zabilježi tablicu" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query cache" msgid "Query failed" msgstr "Pohrana upita" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "Query execution time" msgid "Queried time" msgstr "Vrijeme izvršavanja upita" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy msgid "SQL Query Console" msgstr "SQL upit" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 #, fuzzy msgid "Clear" msgstr "Kalendar" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "SQL povijest" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3445,182 +3431,182 @@ msgstr "SQL povijest" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Opcije" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Bookmark table" msgid "Bookmarks" msgstr "Zabilježi tablicu" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Debugiraj SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Ctrl+Enter to execute query" msgstr "Izvrši favorizirani upit" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Enter to execute query" msgstr "Izvrši favorizirani upit" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Uzlazno" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Silazno" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Other" msgid "Order:" msgstr "Ostalo" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "Stupac" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execution order" msgstr "Izvrši favorizirani upit" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Other" msgid "Order by:" msgstr "Ostalo" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy msgid "Group queries" msgstr "SQL upit" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy msgid "Ungroup queries" msgstr "SQL upit" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Prikaži boju" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Indexes" msgid "Hide trace" msgstr "Indeksi" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "Stupac" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Osvježi" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "I" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Delete relation" msgid "Add bookmark" msgstr "Izbriši relaciju" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "Oznaka" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy msgid "Target database" msgstr "Traži u bazi podataka" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Delete relation" msgid "Share this bookmark" msgstr "Izbriši relaciju" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Reset to default" msgid "Set default" msgstr "Resetiraj na zadano" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "Flush query cache" msgid "Show query history at start" msgstr "Isprazni pohranu upita" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Prebaci se na kopiranu tablicu" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to set configured collation connection!" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3629,21 +3615,21 @@ msgid "" msgstr "" "(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Poslužitelj ne odgovara" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Detalji…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Povezivanje kontrolnih korisnika na način kako je definirano u vašoj " @@ -4012,7 +3998,7 @@ msgstr "Može biti približno. Pogledajte [doc@faq3-11]ČPP 3.11[/doc]" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4149,7 +4135,7 @@ msgstr "Učitavanje datoteke prekinuto je uslijed ekstenzije." msgid "Unknown error in file upload." msgstr "Nepoznata pogreška tijekom učitavanja datoteke." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -4157,11 +4143,11 @@ msgstr "" "Pogreška tijekom premještanja učitane datoteke. Pogledajte [doc@faq1-11]ČPP " "1.11[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Greška prilikom premještanja učitane datoteke." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Error while moving uploaded file." msgid "Cannot read uploaded file." @@ -4231,8 +4217,8 @@ msgid "Keyname" msgstr "Naziv ključa" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4282,13 +4268,13 @@ msgstr "Index %s je odbačen." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Ispusti" @@ -4387,7 +4373,7 @@ msgstr "Privilegije" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operacije" @@ -4402,7 +4388,7 @@ msgstr "Praćenje" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4818,11 +4804,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "Valjana putanja slika za temu %s nije pronađena!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Nema raspoloživog pregleda." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "Dodijeli" @@ -5096,23 +5082,23 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Najveći broj datoteka zapisnika" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Najv: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Statički podatci" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5123,38 +5109,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL je poručio: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Preskoči Objasni SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Bez PHP koda" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Podnesi upit" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Izradi PHP kod" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5250,6 +5236,10 @@ msgstr "po satu" msgid "per day" msgstr "po danu" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Pretraživanje:" @@ -5368,48 +5358,48 @@ msgstr "Dodaj %s polja" msgid "Attributes" msgstr "Atributi" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file!" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Neispravan indeks poslužitelja: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Neispravan naziv za poslužitelj %1$s. Molimo, pregledajte svoju " "konfiguraciju." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Poslužitelj" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Neispravan komplet načina provjere vjerodostojnosti u konfiguraciji:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5417,24 +5407,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Trebali biste nadograditi na %s %s ili kasniju." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6155,7 +6145,7 @@ msgstr "Nazive polja stavi u prvi red" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6163,7 +6153,7 @@ msgstr "Polja obuhvaćena po" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6185,14 +6175,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Redovi završeni s" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6830,7 +6820,7 @@ msgid "Column names in first row" msgstr "Nazive polja stavi u prvi red" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -8353,7 +8343,7 @@ msgid "Table %s has been emptied." msgstr "Tablica %s je očišćena." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8495,8 +8485,8 @@ msgid "No data to display" msgstr "Nema baza podataka" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8546,57 +8536,57 @@ msgstr[2] "" msgid "No column selected." msgstr "Nema odabranih redova" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Vrsta upita" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Promijeni" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Puni tekst" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8608,7 +8598,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Bez izmjena" @@ -9474,56 +9464,56 @@ msgstr "MySQL je vratio prazan komplet rezultata (npr. nula redova)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Nema baza podataka" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Uredi postavke za %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Nema baza podataka" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Samo strukturu" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Vrsta izvoza" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9575,52 +9565,52 @@ msgstr "Ili" msgid "web server upload directory:" msgstr "mapa učitavanja web poslužitelja" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Umetni" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, 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:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "i potom" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Umetni kao novi redak" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 #, fuzzy msgid "Show insert query" msgstr "Prikazivanje SQL upita" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Kreni nazad na prethodnu stranicu" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Umetni dodatni novi redak" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Kreni nazad na ovu stranicu" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Uredi sljedeći redak" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9630,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9642,11 +9632,11 @@ msgstr "" msgid "Value" msgstr "Vrijednost" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Prikazivanje SQL upita" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Umetnut ID retka: %1$d" @@ -10556,7 +10546,7 @@ msgstr "Popravi tablicu" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10572,32 +10562,32 @@ msgid "Delete the table (DROP)" msgstr "Nema baza podataka" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analiziraj" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Provjeri" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimiziraj" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Ponovno izgradi" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Popravi" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10625,37 +10615,37 @@ msgstr "Ukloni particioniranje" msgid "Check referential integrity:" msgstr "Provjeri referencijalan integritet:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Premještanje u istu tablicu nije moguće!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Kopiranje u istu tablicu nije moguće!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tablica %s premještena je u %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tablica %s kopirana je u %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Naziv tablice je prazan!" @@ -10850,7 +10840,7 @@ msgstr "Opcije izvoza baze podataka" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Izbacivanje podataka za tablicu" @@ -10876,21 +10866,21 @@ msgstr "Opis" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tablična struktura za tablicu" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktura za pregledavanje" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Unutarnja struktura za pregledavanje" @@ -11004,7 +10994,7 @@ msgid "Database:" msgstr "Baza podataka" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11120,7 +11110,7 @@ msgid "Data creation options" msgstr "Opcije preoblikovanja" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11189,7 +11179,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11241,61 +11231,61 @@ msgstr "u upotrebi" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Ograničenja za izbačene tablice" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Ograničenja za tablicu" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ograničenja za izbačene tablice" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Unutar tablica:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Dodaj vrijednost AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Dodaj vrijednost AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME VRSTE ZA TABLICU" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE TABLICE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11332,7 +11322,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11352,34 +11342,34 @@ msgstr "" msgid "Column names: " msgstr "Nazivi stupaca" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Neispravan parametar za CSV uvoz: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Neispravno oblikovanje u CSV unosu unutar retka %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Neispravan broj polja u CSV unosu unutar retka %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Ovaj dodatak ne podržava uvoz komprimiranih datoteka!" @@ -11387,29 +11377,29 @@ msgstr "Ovaj dodatak ne podržava uvoz komprimiranih datoteka!" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." msgstr "Neispravno oblikovanje u CSV unosu unutar retka %d." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11419,23 +11409,23 @@ msgstr "Otvori izračunsku tablicu dokumenta" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -11449,7 +11439,7 @@ msgstr "Način rada SQL kompatibilnosti" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14696,15 +14686,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14719,17 +14705,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14751,23 +14738,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Broj otvorenih tablica." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Broj otvorenih tablica." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14797,17 +14784,17 @@ msgstr "Tablica %1$s je izrađena." msgid "Variable name was expected." msgstr "Predložak naziva datoteka" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Pri početku tablice" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14828,19 +14815,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15556,7 +15543,7 @@ msgstr "Prikaži ispis (shemu) tablice" msgid "Invalid table name" msgstr "Neispravan naziv tablice" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16691,7 +16678,7 @@ msgid "at beginning of table" msgstr "Pri početku tablice" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16740,7 +16727,7 @@ msgstr "particionirano" msgid "Edit partitioning" msgstr "Ukloni particioniranje" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16876,11 +16863,11 @@ msgstr "Naziv prikaza" msgid "Column names" msgstr "Nazivi stupaca" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Preimenuj prikaz u" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Nema baza podataka" @@ -18070,6 +18057,19 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "najv. uzastopnih veza" +#, fuzzy +#~| msgid "Delete relation" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Izbriši relaciju" +#~ msgstr[1] "Izbriši relaciju" +#~ msgstr[2] "Izbriši relaciju" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "Favorit je izbrisan." + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/hu.po b/po/hu.po index 201bc93980..72c282064e 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:09+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Hungarian " -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1012,168 +1017,168 @@ msgstr "" "Biztosan módosítani szeretné az összes oszlopillesztést és át szeretné " "alakítani az adatokat?" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save & Close" msgid "Save & close" msgstr "Mentés és bezárás" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Visszaállítás" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Reset All" msgid "Reset all" msgstr "Összes visszaállítása" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Érték hiányzik az űrlapban!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Legalább egy lehetőséget válasszon ki!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Adjon meg egy érvényes számot!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Adjon meg egy érvényes hosszt!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Index hozzáadása" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Index szerkesztése" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "%s oszlop hozzáadása az indexhez" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Egyoszlopos index létrehozása" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Összetett index létrehozása" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Összetétel ezzel:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Válasszon oszlopokat az indexhez." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Legalább egy oszlopot kell hozzáadnia." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "SQL előnézete" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Lekérdezés szimulálása" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Illeszkedő sorok:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL lekérdezés:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y érték" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "A gépnév üres!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Üres a felhasználónév!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Üres a jelszó mező!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Nem egyeznek a jelszavak!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "A kijelölt felhasználók törlése" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Bezárás" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "A sablon létre lett hozva." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "A sablon be lett töltve." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "A sablon frissítve lett." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "A sablon törölve lett." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Egyéb" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Kapcsolatok / Folyamatok" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "A helyi megfigyelés beállításai nem kompatibilisek!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1185,165 +1190,165 @@ msgstr "" "nem működik többé. Állítsa vissza az alapértelmezést a Beállítások " "menüben." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Lekérdezési gyorsítótár hatékonysága" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Lekérdezési gyorsítótár használat" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Lekérdezési gyorsítótárat használatban" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Rendszer CPU használat" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Rendszermemória" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Rendszer lapozófájl" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Átlagos terhelés" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Teljes memória" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Gyorsítótárazott memória" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Puffer memória" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Szabad memória" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Használt memória" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Teljes lapozófájl" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Gyorsítótárazott lapozófájl" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Használt lapozófájl" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Szabad lapozófájl" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Elküldött bájtok" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Fogadott bájtok" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Kapcsolatok" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Folyamatok" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tábla" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Kérdések" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Forgalom" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Beállítások" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Diagram hozzáadása" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Legalább egy változót adjon meg a sorozathoz!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1355,47 +1360,47 @@ msgstr "Legalább egy változót adjon meg a sorozathoz!" msgid "None" msgstr "Nincs" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Megfigyelés visszakapcsolása" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Megfigyelés megállítása" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Automatikus frissítés indítása" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Automatikus frissítés leállítása" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "A general_log és a slow_query_log engedélyezve vannak." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "A general_log engedélyezve van." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "A slow_query_log engedélyezve van." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "A slow_query_log és a general_log titlva vannak." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output nincs beállítva a TÁBLÁHOZ." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output be van állítva a TÁBLÁHOZ." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1406,12 +1411,12 @@ msgstr "" "lekérdezéseket naplózza, amelyek %d másodpercnél hosszabb ideig tartanak. " "Ajánlott a long_query_time beállítása 0-2 másodpercre a rendszertől függően." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "A long_query_time %d másodpercre van beállítva." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1420,30 +1425,30 @@ msgstr "" "alapértelmezettre a kiszolgáló újraindításakor:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "A log_output beállítása ehhez: %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "%s engedélyezése" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "%s letiltása" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "A long_query_time beállítása %d másodpercre." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1452,58 +1457,58 @@ msgstr "" "rendszergazdaként vagy vegye fel a kapcsolatot az adatbázis " "adminisztrátorával." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Beállítások megváltoztatása" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Jelenlegi beállítások" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Diagramcím" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Megkülönböztető" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Osztva %s -el" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Egység" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "a slow naplóból" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "az általános naplóból" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" "Az adatbázis neve nem ismert ennél a lekérdezésnél a kiszolgáló naplójában." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Naplók elemzése" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Elemzés és naplók betöltése. Ez eltarthat egy ideig." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Kérés elvetése" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1514,7 +1519,7 @@ msgstr "" "rendezési kritériumként, ezért a lekérdezések más tulajdonságai, mint " "például a lekérdezés kezdete, eltérőek lehetnek." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1524,31 +1529,31 @@ msgstr "" "történt INSERT lekérdezések is egy csoportba kerültek, tekintet nélkül a " "beszúrt adatokra." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "A naplóadatok betöltve. Végrehajtott lekérdezések ebben az időszakban:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Ugrás a naplótáblához" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Nincs adat" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "A napló megvizsgálva, de nincs adat az adott időszakban." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Elemzés…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "A kimenet magyarázata" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1556,7 +1561,7 @@ msgstr "A kimenet magyarázata" msgid "Status" msgstr "Állapot" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1566,60 +1571,60 @@ msgstr "Állapot" msgid "Time" msgstr "Idő" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Teljes idő:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Eredmények elemzése" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tábla" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Diagram" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Naplótábla szűrőbeállításai" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Szűrő" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Lekérdezések szűrése szó/reguláris kifejezés alapján:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "Lekérdezések csoportosítása, változóadat figyelmen kívül hagyása a WHERE " "feltételben" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "A csoportosított sorok összege:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Összesen:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Naplók betöltése" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "A megfigyelés frissítése sikertelen" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1629,27 +1634,27 @@ msgstr "" "Valószínűleg a munkamenet lejárt. Az oldal újratöltése, és a belépési adatok " "újbóli megadása segíthet." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Oldal újratöltése" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Érintett sorok:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "A beállítófájl feldolgozása nem sikerült. Nem tűnik érvényes JSON kódnak." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "A grafikon felépítése az importált beállításokkal sikertelen. Eredet " "beállítások visszaállítása…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1658,67 +1663,67 @@ msgstr "" msgid "Import" msgstr "Importálás" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Megfigyelési beállítások importálása" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Válassza ki a fájlt, amelyet importálni szeretne." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Nincs elérhető fájl a kiszolgálón az importáláshoz!" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "Lekérdezés elemzése" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Tanácsadó rendszer" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Lehetséges teljesítmény problémák" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Kiadás" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Javaslat" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Szabály részletek" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Indoklás" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Használt változó / képlet" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Teszt" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "SQL formázása…" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Rossz paraméterek!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1730,72 +1735,72 @@ msgstr "Rossz paraméterek!" msgid "Cancel" msgstr "Mégse" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Oldallal kapcsolatos beállítások" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Alkalmaz" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Betöltés…" -#: js/messages.php:358 +#: js/messages.php:360 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "Kérés megszakítva!" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Kérés feldolgozása" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Request Failed!!" msgid "Request failed!!" msgstr "A kérés sikertelen!" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Error in processing request:" msgid "Error in processing request" msgstr "Hiba a kérés feldolgozásában:" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Hibakód: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Hibaüzenet: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Nincs kiválasztott adatbázis." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Oszlop törlése" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Elsődleges kulcs hozzáadása" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1805,62 +1810,62 @@ msgstr "Elsődleges kulcs hozzáadása" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Kattintson az értesítés elutasításához" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Adatbázis(ok) átnevezése" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Adatbázis másolása" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Karakterkészlet változtatása" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Idegen kulcsok ellenőrzésének engedélyezése" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "A valódi sorok számának lekérése sikertelen." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Keresés" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Keresési eredmények elrejtése" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Keresési eredmények megjelenítése" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Böngészés" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Törlés" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "A tárolt függvény meghatározásának tqartalmaznia kell VISSZATÉRÉSI utasítást!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1876,45 +1881,45 @@ msgstr "" msgid "Export" msgstr "Exportálás" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET szerkesztő" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "„%s” oszlop értékei" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Az új oszlop értékei" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Minden értéket külön mezőben adjon meg." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "%d érték hozzáadása" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Megjegyzés: Ha a fájl több táblát tartalmaz, akkor azok egyesítve lesznek." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "SQL-lekérdezési panelek elrejtése" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Lekérdezési doboz megjelenítése" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1924,7 +1929,7 @@ msgstr "Lekérdezési doboz megjelenítése" msgid "Edit" msgstr "Módosítás" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1935,41 +1940,41 @@ msgstr "Módosítás" msgid "Delete" msgstr "Törlés" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "A(z) %d érvénytelen sorszám." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Az idegen kulcsok böngészése" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Nincs automatikusan mentett lekérdezés" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "%d. változó:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Kiválasztás" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Oszlopkiválasztó" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Keresés a listában" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1979,15 +1984,15 @@ msgstr "" "adatbázis központi oszlopainak listája tartalmaz-e olyan oszlopokat, amelyek " "nincsenek a jelenlegi táblában." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Több megtekintése" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Biztos benne?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1995,51 +2000,51 @@ msgstr "" "Ez a művelet megváltoztathatja néhány oszlop meghatározását.
Biztosan " "folytatni szeretné?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Folytatás" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Elsődleges kulcs hozzáadása" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Elsődleges kulcs hozzáadva." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Átvitel a következő lépésre…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Lépés vége" -#: js/messages.php:439 +#: js/messages.php:441 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:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Kész" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Részleges függőségek megerősítése" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "A kijelölt részleges függőségek a következők:" -#: js/messages.php:444 +#: js/messages.php:446 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2047,21 +2052,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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Nincsenek részleges függőségek kiválasztva!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Részleges függőségek listájának elrejtése" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2069,41 +2074,41 @@ 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:456 +#: js/messages.php:458 msgid "Step" msgstr "Lépés" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "A következő műveletek lesznek végrehajtva:" -#: js/messages.php:459 +#: js/messages.php:461 #, 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:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "A következő tábla létrehozása" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "A normalizálás harmadik lépése (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Tranzitív függőségek megerősítése" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "A kijelölt függőségek a következők:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Nincsenek függőségek kiválasztva!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2113,130 +2118,130 @@ msgstr "Nincsenek függőségek kiválasztva!" msgid "Save" msgstr "Mentés" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Keresési kritériumok elrejtése" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Keresési kritériumok megjelenítése" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Tartomány keresés" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Oszlop maximum:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Oszlop minimum:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Legkisebb érték:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Legnagyobb érték:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Keresési és csere kritériumok elrejtése" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Keresési és csere kritériumok megjelenítése" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Minden pont egy adatsort ábrázol." -#: js/messages.php:488 +#: js/messages.php:490 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:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Válasszon két oszlopot" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Válasszon két különböző oszlopot" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Adatmutató tartalma" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Kihagyás" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Másolás" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Pont" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Karakterlánc" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Sokszög" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Belső gyűrű" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Külső gyűrű:" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Szeretné másolni a titkosítási kulcsot?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Titkosítási kulcs" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2244,24 +2249,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:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Válassza ki a hivatkozott kulcsot" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Idegen kulcs kiválasztása" -#: js/messages.php:533 +#: js/messages.php:535 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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,76 +2274,76 @@ 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "Oldal neve" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Oldal mentése" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Oldal megnyitása" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Oldal törlése" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Névtelen" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Válasszon egy oldalt a folytatáshoz" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Adjon meg egy érvényes oszlopnevet" -#: js/messages.php:548 +#: js/messages.php:550 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:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Az oldal sikeresen törölve" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Kapcsolati séma exportálása" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "A módosítások mentése megtörtént" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Lehetőség hozzáadása a következő oszlophoz: „%s”." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d objektum létrehozva." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Indítás" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Nyomja meg az Escape billentyűt a szerkesztés megszakításához." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2346,15 +2351,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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Húzza az elemeket az újrarendezéshez." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Kattintson az eredmények rendezéséhez ezen oszlop szerint." -#: js/messages.php:567 +#: js/messages.php:569 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 " @@ -2364,28 +2369,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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Kattintson a kijelöléshez / kijelölés megszüntetéséhez." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Az oszlopnév másolásához kattintson duplán." -#: js/messages.php:574 +#: js/messages.php:576 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Összes megjelenítése" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2394,13 +2399,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:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2408,104 +2413,104 @@ 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:587 +#: js/messages.php:589 msgid "Original length" msgstr "Eredeti hossz" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "mégse" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Megszakítva" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Sikerült" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Importálás állapota" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Ejtse ide a fájlokat" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Először válasszon adatbázist" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Nyomtatás" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "Az elem szerkeszthetővé
válik kattintással." -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Ugrás a hivatkozáshoz:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Oszlopnév másolása." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Jelszó generálása" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Generálás" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Több" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Panel megjelenítése" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Panel elrejtése" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Rejtett navigációs faszerkezet elemeinek megjelenítése." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Hozzákapcsolás a fő panelhez" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Eltávolítás a fő panelről" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2515,49 +2520,49 @@ msgstr "" "%s, kiadás dátuma: %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", utolsó stabil verzió:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "friss" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Nézet létrehozása" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Hibajelentések küldése" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Hibajelentés beküldése" -#: js/messages.php:656 +#: js/messages.php:658 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:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Jelentés beállítások megváltoztatása" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Jelentés részleteinek megjelenítése" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2565,7 +2570,7 @@ msgstr "" "Az exportálás nem teljes a PHP szinten lévő alacsony végrehajtási időkorlát " "miatt!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2575,59 +2580,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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Hibák észlelhetők a kiszolgálón!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Nézze meg ennek az ablaknak az alját." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Összes mellőzése" -#: js/messages.php:688 +#: js/messages.php:690 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:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Végrehajtja ismét ezt a lekérdezést?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Valóban törölni szeretné ezt a könyvjelzőt?" -#: js/messages.php:702 +#: js/messages.php:704 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:704 +#: js/messages.php:706 #, 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:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "%s argumentum került átadásra" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Argumentumok megjelenítése" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Argumentumok elrejtése" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Felhasznált idő:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2636,355 +2641,355 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Adatbázis másolása ide" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Tábla előtag hozzáadása:" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Tábla előtagjának lecserélése" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Tábla másolása előtaggal" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Előző" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Következő" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Ma" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Január" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Február" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Március" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Április" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Május" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Június" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Július" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Augusztus" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Szeptember" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Október" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "November" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Már" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Ápr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Sze" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Dec" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Vasárnap" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Hétfő" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Kedd" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Szerda" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Csütörtök" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Péntek" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Szombat" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Vas" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Hét" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Ked" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Sze" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Csü" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Pén" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Szo" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Va" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Hé" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Ke" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Sze" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Cs" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Pé" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Szo" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "nincs" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Óra" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Perc" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "másodperc" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Ez a mező kötelező" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Javítsa ezt a mezőt" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Adjon meg egy érvényes e-mail címet" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Adjon meg egy érvényes URL-t" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Adjon meg egy érvényes dátumot" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Adjon meg egy érvényes dátumot (ISO)" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Adjon meg egy érvényes számot" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Adjon meg egy érvényes hitelkártya számot" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Csak számjegyeket adjon meg" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Adja meg ismét ugyanazt az értéket" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Ne adjon meg {0} karakternél többet" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Adjon meg legalább {0} karaktert" -#: js/messages.php:915 +#: js/messages.php:917 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:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Adjon meg egy értéket {0} és {1} között" -#: js/messages.php:925 +#: js/messages.php:927 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:930 +#: js/messages.php:932 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:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Adjon meg egy érvényes dátumot vagy időt" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Adjon meg egy érvényes HEX bemenetet" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Hiba" @@ -3038,32 +3043,32 @@ msgstr "" "Nem várt karakter a(z) %1$s. sorban. Várt elem a tab, de helyette \"%2$s\" " "található." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "A létező beállító fájl (%s) nem olvasható." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "A konfigurációs fájl helytelen írási engedéllyel rendelkezik!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Betűméret" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Összecsukás" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Kinyitás" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Újra lekérdezés" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3083,76 +3088,59 @@ msgstr "Adatbázis" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Összesen %d könyvjelző" -msgstr[1] "Összesen %d könyvjelző" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "személyes" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "megosztott" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s és %3$s könyvjelzők felvéve" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Nincsenek könyvjelzők" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Jelenlegi munkamenet közben" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Magyarázat" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Adatgyűjtés" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Könyvjelző" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Lekérdezés sikertelen" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Lekérdezés ideje" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "SQL lekérdezés konzol" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Konzol" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Törlés" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Előzmények" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3170,125 +3158,125 @@ msgstr "Előzmények" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Beállítások" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Könyvjelzők" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "SQL Debug" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Nyomja meg a Ctrl+Enter billentyűket a lekérdezés végrehajtásához" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Nyomja meg az Entert a lekérdezés végrehajtásához" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "növekvő" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "csökkenő" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Sorrend:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Számláló" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Végrehajtási sorrend" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Felhasznált idő" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Sorrend:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Lekérdezések csoportosítása" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Lekérdezések szétbontása" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Nyomkövetés megjelenítése" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Nyomkövetés elrejtése" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Darabszám:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Frissítés" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Hozzáadás" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Könyvjelző hozzáadása" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Címke" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Cél adatbázis" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Könyvjelző megosztása" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Alapértelmezett beállítása" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Mindig nyissa ki a lekérdezés üzeneteit" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Lekérdezés előzmények megjelenítése indításkor" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Az aktuális böngészés lekérdezéseinek megjelenítése" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3296,17 +3284,17 @@ msgstr "" "Lekérdezések végrehajtása az Enter lenyomásakor, és új sor beszúrása a Shift " "+ Enter használatával. Ennek állandóvá tételéhez nézze meg a beállításokat." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Átváltás sötét témára" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "A beállítófájl olvasása meghiúsult!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3314,20 +3302,20 @@ msgstr "" "A kiszolgáló nem válaszol (vagy a helyi kiszolgáló socket nincs megfelelően " "beállítotva)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "A kiszolgáló nem válaszol." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 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:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Részletek…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 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 " @@ -3644,7 +3632,7 @@ msgstr "Becsült érték lehet. Lásd [doc@faq3-11]GyIK 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Az SQL-lekérdezés végrehajtása sikerült." @@ -3769,17 +3757,17 @@ msgstr "A fájlfeltöltés kiterjesztés alapján leállt." msgid "Unknown error in file upload." msgstr "Ismeretlen hiba a fájlfeltöltésben." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Hiba történt a feltöltött fájl áthelyezésekor, lásd [doc@faq1-11]GyIK 1.11[/" "doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Hiba a feltöltött fájl mozgatása közben." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -3845,8 +3833,8 @@ msgid "Keyname" msgstr "Kulcsnév" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3896,13 +3884,13 @@ msgstr "A(z) %s index eldobása megtörtént." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Eldobás" @@ -4002,7 +3990,7 @@ msgstr "Jogok" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Műveletek" @@ -4017,7 +4005,7 @@ msgstr "Követés" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4395,11 +4383,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "Nincs érvényes kép elérési útja a(z) %s témának!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Nincs előnézet." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "csináld" @@ -4713,21 +4701,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Térbeli" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Statikus elemzés:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "%d hibát találtunk az elemzés során." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4738,38 +4726,38 @@ msgstr "%d hibát találtunk az elemzés során." msgid "MySQL said: " msgstr "A MySQL mondta: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Az SQL magyarázata" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "SQL magyarázat átugrása" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "Magyarázat elemzése itt: %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP kód nélkül" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Lekérdezés indítása" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP-kód létrehozása" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Szerkesztés helyben" @@ -4857,6 +4845,10 @@ msgstr "óránként" msgid "per day" msgstr "naponta" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "megosztott" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Keresés:" @@ -4966,11 +4958,11 @@ msgstr "Új oszlop hozzáadása" msgid "Attributes" msgstr "Tulajdonságok" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "A beállítófájl olvasása meghiúsult!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4978,31 +4970,31 @@ msgstr "" "Ez általában azt jelenti, hogy szintaktikai hiba áll fenn, ellenőrizze az " "alább látható hibákat." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nem lehetett betölteni az alapértelmezett konfigurációt innen: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Érvénytelen kiszolgálóindex: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "A(z) %1$s kiszolgáló gépneve érvénytelen. Nézze át a beállításokat." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Kiszolgáló %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Érvénytelen hitelesítési mód került beállításra a konfigurációban:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5014,24 +5006,24 @@ msgstr "" "beállításait. A phpMyAdmin jelenleg az adatbázis-kiszolgáló alapértelmezett " "időzónáját használja." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Frissítenie kell %s %s vagy újabb verzióra." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Hiba: Token eltérés" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS felülírási kísérlet" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "lehetséges kiaknázás" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "numerikus kulcs észlelve" @@ -5781,13 +5773,13 @@ msgstr "A mezőneveket tegye az első sorba" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Oszlopok körbezárása ezzel" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Oszlopok escape-elése ezzel" @@ -5805,12 +5797,12 @@ msgstr "A mezőkben lévő CRLF karakterek eltávolítása" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Oszlopok végződése ezzel" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Sorok végződése ezzel" @@ -6396,7 +6388,7 @@ msgid "Column names in first row" msgstr "A mezőnevek az első sorban" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Ne importálja az üres sorokat" @@ -7976,7 +7968,7 @@ msgid "Table %s has been emptied." msgstr "A(z) %s tábla kiürítése megtörtént." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "A(z) %s nézet el lett dobva." @@ -8111,8 +8103,8 @@ msgid "No data to display" msgstr "Nincs megjelenítendő adat" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8150,17 +8142,17 @@ msgstr[1] "A(z) „%s” nevek a MySQL számára fenntartott kulcsszavak." msgid "No column selected." msgstr "Nem jelölt ki sort." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Az oszlop mozgatása sikeresen megtörtént." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Lekérdezési hiba" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." @@ -8168,36 +8160,36 @@ 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Módosítás" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Index" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Térbeli" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Teljes szöveg" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Különböző értékek" @@ -8207,7 +8199,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "A %s kiterjesztés hiányzik. Kérem ellenőrizze a PHP beállításokat." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nincs változás" @@ -9013,58 +9005,58 @@ msgstr "A MySQL üres eredményhalmazt adott vissza (pl. nulla sorok)." msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK történt.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Szerkezet szerkesztése a „Szerkezet” hivatkozást követve." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Ugrás az adatbázishoz: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "%s beállításainak szerkesztése" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Ugrás a táblához: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s szerkezete" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Ugrás %s megtekintéséhez" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9112,48 +9104,48 @@ msgstr "Vagy" msgid "web server upload directory:" msgstr "webszerver feltöltési könyvtár:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Szerkesztés/Beszúrás" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Beszúrás folytatása a(z) %s sorokkal" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "és utána" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Beszúrás új sorként" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 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:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Beillesztő lekérdezés megjelenítése" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Vissza az előző oldalra" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Új sor beszúrása" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Visszatérés erre az oldalra" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Következő sor szerkesztése" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9163,7 +9155,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9175,11 +9167,11 @@ msgstr "" msgid "Value" msgstr "Érték" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Megjelenítés SQL lekérdezésként" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "A beszúrt sor azonosítószáma: %1$d" @@ -10065,7 +10057,7 @@ msgstr "Tábla javítása" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Adat vagy tábla törlése" @@ -10078,32 +10070,32 @@ msgid "Delete the table (DROP)" msgstr "Tábla törlése (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Elemzés" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Ellenőrzés" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimalizálás" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Újraépítés" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Javítás" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Kiürítés" @@ -10129,39 +10121,39 @@ msgstr "Particionálás eltávolítása" msgid "Check referential integrity:" msgstr "Hivatkozási sértetlenség ellenőrzése:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Nem helyezhető át ugyanabba a tábla!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Nem másolható ugyanabba a tábla!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, 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:2127 +#: libraries/operations.lib.php:2125 #, 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:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Üres a tábla neve!" @@ -10338,7 +10330,7 @@ msgstr "Adatkiírási beállítások" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "A tábla adatainak kiíratása" @@ -10362,21 +10354,21 @@ msgstr "Meghatározás" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tábla szerkezet ehhez a táblához" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Nézet szerkezete" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "A nézet helyettes szerkezete" @@ -10467,7 +10459,7 @@ msgid "Database:" msgstr "Adatbázis:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Adatok:" @@ -10569,7 +10561,7 @@ msgid "Data creation options" msgstr "Adatlétrehozási beállítások" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Tábla csonkolása beszúrás előtt" @@ -10654,7 +10646,7 @@ msgstr "Úgy tűnik, az adatbázis függvényeket használ;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 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." @@ -10698,52 +10690,52 @@ msgstr "használatban" msgid "It appears your database uses views;" msgstr "Úgy tűnik, az adatbázis nézeteket használ;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Megkötések a kiírt táblákhoz" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Megkötések a táblához" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indexek a kiírt táblákhoz" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "A tábla indexei" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "A kiírt táblák AUTO_INCREMENT értéke" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT a táblához" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "Tábla MIME-típusok" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "TÁBLA KAPCSOLATAI" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 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:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Hiba az adatolvasás közben:" @@ -10775,7 +10767,7 @@ msgstr "" "DUPLICATE KEY UPDATE hozzáadása)" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10798,15 +10790,15 @@ msgstr "" msgid "Column names: " msgstr "Oszlopnevek: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "A CSV importálás paramétere érvénytelen: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10815,18 +10807,18 @@ msgstr "" "Érvénytelen oszlop (%s) van megadva! Győződjön meg arról, hogy oszlopok " "nevét helyesen írta, vesszővel lett elválasztva, nem idézőjellel." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "A CSV bevitel %d. sorában a formázás érvénytelen." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Érvénytelen oszlopszám a CSV bemenet %d. sorában." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Ez a beépülő modul nem támogatja a tömörített importálásokat!" @@ -10834,24 +10826,24 @@ msgstr "Ez a beépülő modul nem támogatja a tömörített importálásokat!" msgid "MediaWiki Table" msgstr "MediaWiki tábla" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Érvénytelen mediawiki bemeneti formátum ebben a sorban:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" "Százalékos értékek importálása pontos tizedestörtként (pl. 12.00% " "helyett .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Valuták importálása (pl. $5.00 helyett 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10859,7 +10851,7 @@ msgstr "" "A megadott XML-fájl rosszul formázott vagy befejezetlen. Javítsa ki a hibát " "és próbálja újra." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Az Open Document munkafüzet nem olvasható!" @@ -10867,12 +10859,12 @@ msgstr "Az Open Document munkafüzet nem olvasható!" msgid "ESRI Shape File" msgstr "ESRI alakzat fájl" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Hiba történt az ESRI alakzat fájl importálásakor: „%s”." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10880,12 +10872,12 @@ msgstr "" "Érvénytelen fájlt próbált importálni, vagy az importált fájl érvénytelen " "adatot tartalmaz!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "A MySQL térbeli kiterjesztése nem támogatja az ESRI típust: \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Az importált fájl nem tartalmaz semmilyen adatot!" @@ -10897,7 +10889,7 @@ msgstr "SQL kompatibilitási mód:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ne használja az AUTO_INCREMENT-et nulla értékekhez" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13955,15 +13947,11 @@ msgstr "%1$d értékek voltak elvárva, de %2$d található." msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -13978,17 +13966,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "Felismerhetetlen adattípus." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Egy álnév korábban már megtalálva." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Váratlan pont." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14010,23 +13999,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "Ez a lehetőség ütközik ezzel: „%1$s”." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "A megnyitott táblák száma." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "A megnyitott táblák száma." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "Template was deleted." msgid "A rename operation was expected." @@ -14057,17 +14046,17 @@ 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:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "at beginning of table" msgid "Unexpected beginning of statement." msgstr "a tábla elejénél" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Felismerhetetlen utasítástípus." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Nem volt korábban elindított tranzakció." @@ -14092,19 +14081,19 @@ msgstr "Egy új utasítás található, de nincs elválasztó köztük." msgid "Unrecognized keyword." msgstr "Felismerhetetlen kulcsszó." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14805,7 +14794,7 @@ msgstr "Tábla kiírás (vázlat) megtekintése" msgid "Invalid table name" msgstr "Érvénytelen táblanév" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Sor: %1$s, oszlop: %2$s, hiba: %3$s" @@ -15769,7 +15758,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:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15818,7 +15807,7 @@ msgstr "particionált" msgid "Edit partitioning" msgstr "Particionálás eltávolítása" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Nézet szerkesztése" @@ -15937,11 +15926,11 @@ msgstr "NÉZET neve" msgid "Column names" msgstr "Oszlopnevek" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Nézet átnevezése" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "A nézet törlése (DROP)" @@ -17248,6 +17237,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "A concurrent_insert 0-ra van állítva" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Összesen %d könyvjelző" +#~ msgstr[1] "Összesen %d könyvjelző" + +#~ msgid "private" +#~ msgstr "személyes" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s és %3$s könyvjelzők felvéve" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/hy.po b/po/hy.po index d8daa39f7e..36ee5fbf63 100644 --- a/po/hy.po +++ b/po/hy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-12-18 18:19+0000\n" "Last-Translator: Andrey Aleksanyants \n" "Language-Team: Armenian " -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1004,160 +1008,160 @@ msgstr "" "Համոզվա՞ծ եք, որ ցանկանում եք փոխել բոլոր սյունակների համադրումները և " "փոխարկել տվյալները։" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Պահպանել և փակել" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Վերակայել" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Վերակայել բոլորը" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Չլրացրած ձևի դաշտ" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Ընտրեք կայանքներից առնվազն մեկը։" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Տրամադրեք վավերական թիվ։" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Տրամադրեք վավերական երկարություն" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Ավելացնել ցուցակագիր" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Խմբագրել ցուցակագիրը" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Ցուցակագրին ավելացնել %s սյունակ" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Ստեղծել մեկ սյունակով ցուցակագիր" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Ստեղծել համալիր ցուցակագիր" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Համալրված՝" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Ընտրեք սյունակներ՝ ցուցակագրի համար։" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Անհրաժեշտ է ավելացնել առնվազն մեկ սյունակ։" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "SQL-ի նախադիտում" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Կատարել կեղծ հարցում" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Համապատասխանող տողեր՝" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL հարցում՝" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Y արժեքները" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Խնամորդի անունը դատարկ է։" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Օգտանունը դատարկ է։" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Գաղտնաբառը դատարկ է։" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Գաղտնաբառերը նույնը չեն։" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Նշված օգտվողների ջնջում" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Փակել" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Ձևանմուշը ստեղծվեց։" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Ձևանմուշը բեռնվեց։" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Ձևանմուշը արդիացվեց։" -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Ձևանմուշը ջնջվեց։" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Այլ" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Միացումներ / Ընթացքներ" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Տեղային ցուցարկչի կայանքները անհամատեղելի են։" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1165,155 +1169,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Հարցումների շտեմումի արդյունավետությունը" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Հարցումների շտեմումի օգտագործումը" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Օգտագործված հարցման շտեմը" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Համակարգի ԿՄՄ օգտագործումը" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Համակարգի հիշողություն" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Համակարգի փոխանակման ֆայլ" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Միջին բեռնվածությունը" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Ամբողջ հիշողությունը" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Շտեմավորված հիշողությունը" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Պահնակված հիշողությունը" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Ազատ հիշողությունը" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Օգտագործված հիշողությունը" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Ընդհանուր փոխանակման տարածությունը" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Շտեմավորված փոխանակման տարածությունը" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Օգտագործված փոխանակման տարածությունը" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Ազատ փոխանակման տարածությունը" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Ուղարկված բայթեր" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Ստացած բայթեր" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Կապեր" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Ընթացքներ" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "Բայթ" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "կԲայթ" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "մԲայթ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "գԲայթ" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "տԲայթ" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "պԲայթ" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "էԲայթ" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d աղյուսակ" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Հարցեր" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Փոխանակում" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Կայանքներ" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Ավելացնել գծապատկեր ցանցավորմանը" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Ավելացրեք առնվազն մեկ փոփոխական այս շարքին։" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1325,47 +1329,47 @@ msgstr "Ավելացրեք առնվազն մեկ փոփոխական այս շա msgid "None" msgstr "Չկա" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Վերսկսել ցուցարկիչը" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Դադարեցնել ցուցարկիչը" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Սկսել ինքնաթարմացումը" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Կանգնեցնել ինքնաթարմացումը" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log և slow_query_log փոփոխականները միացրած են։" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log փոփոխականը միացրած է։" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log փոփոխականը միացրած է։" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log և general_log փոփոխականները կասեցված են։" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output փոփոխականը նշանակված չէ աղյուսակի համար։" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output փոփոխականը նշանակված է աղյուսակի համար։" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1376,12 +1380,12 @@ msgstr "" "երկար տևող հարցումները։ Ցանկալի է նշանակել long_query_time-ը 0-2 վայրկյան, " "ձեր համակարգից կախված։" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time փոփոխականը նշանակված է %d վարկյան։" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1390,30 +1394,30 @@ msgstr "" "արժեքներին սպասարկչի վերամեկնակման ժամանակ՝" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Նշանակել log_output-ը %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Միացնել %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Կասեցնել %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Նշանակել long_query_time-ը %d վայրկյան։" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1421,60 +1425,60 @@ msgstr "" "Դուք չեք կարող փոխել այս փոփոխականների արժեքները։ Մուտք գործեք արմատային " "հաշիվը կամ կապնվեք տվյալների բազայի վարիչին։" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Փոփոխել կայանքները" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Ընթացիկ կայանքներ" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Գծապատկերի վերնագիր" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Տարբերություններ" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Բաժանված է %s-ի" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Միավոր" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Դանդաղ հարցումների մատյանից" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Հիմնական մատյանից" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" "Սպասարկչի մատյանում այս հարցման համար այս տվյալների բազայի անունը հայտնի չէ։" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Մատյանների վերլուծում" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" "Ընթանում է մատյանների վերլուծում և բեռնում։ Սա կարող է որոշակի ժամանակ " "պահանջել։" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Չեղարկել հարցումը" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1484,7 +1488,7 @@ msgstr "" "խմբավորման համար օգտարգործվում է միայն SQL հարցումը, իսկ մնացած հատկանիշները " "(օրինակ՝ սկզբի ժամանակը) կարող են տարբերվել։" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1493,33 +1497,33 @@ msgstr "" "Քանի որ ընտրվել է ԶԵՏԵՂՄԱՆ հարցումների խմբավորումը, նույն աղյուսակի ԶԵՏԵՂՄԱՆ " "հարցումները նույնպես կխմբավորվեն, զետեղվող տվյալներից անկախ։" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Մատյանների տվյալները բեռնված են։ Այս ժամանակահատվածում կատարված հարցումները՝" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Անցնել մատյանների աղյուսակին" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Տվյալները չեն գտնվել" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Մատյանը վերլուծվեց, սակայն նշված ժամանակահատվածի համար տվյալներ չեն գտնվել։" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Ընթանում է վերլուծում …" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Արդյունքների բացատրություն" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1527,7 +1531,7 @@ msgstr "Արդյունքների բացատրություն" msgid "Status" msgstr "Կարգավիճակ" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1537,59 +1541,59 @@ msgstr "Կարգավիճակ" msgid "Time" msgstr "Ժամանակ" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Ամբողջական ժամանակ՝" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Հարցումների հսկման արդյունքներ" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Աղյուսակ" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Գծապատկեր" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Մատյանի աղյուսակի զտման կայանքներ" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Զտում" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Զտել հարցումները ըստ բառի կամ կանոնավոր արտահայտության՝" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "Խմբավորել հարցումները, անտեսելով WHERE պայմանում փոփոխականների տվյալները" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Խմբավորված տողերի գումարը՝" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Ընդամենը՝" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Մատյանների բեռնում" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Ցուցարկիչի թարմացումը ձախողվեց" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1600,27 +1604,27 @@ msgstr "" "պատճառով։ Էջի վերբեռնումը և ձեր հավատարմագրերի կրկնակի մուտքագրումը կարող է " "օգնել։" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Թարմացնել էջը" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Ազդված տողեր՝" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Կազմաձևի ֆայլի վերլուծումը ձախողվեց։ Այն չի հանդիսանում վավերական JSON կոդ։" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Չհաջողվեց կառուցել գծապատկերի ցանցավորումը՝ ներմուծված կազմաձևից։ Վերակայում " "լռելյայն կազմաձևին …" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1629,63 +1633,63 @@ msgstr "" msgid "Import" msgstr "Ներմուծում" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Ցուցարկչի կազմաձևի ներմուծում" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Ընտրեք ֆայլը՝ ներմուծելու համար։" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Սպասարկչում ներմուծման ենթակա ֆայլեր չկան։" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Վերլուծել հարցումը" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Համակարգային խորհրդատու" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Հնարավոր արդյունավետության խնդիրներ" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Խնդիր" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Խորհուրդ" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Կանոնի մանրամասները" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Հիմնավորում" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Օգտագործված փոփոխական / բանաձև" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Փորձարկում" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "SQL-ի ձևավորում …" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "Հարաչափերը չեն գտնվել։" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1697,60 +1701,60 @@ msgstr "Հարաչափերը չեն գտնվել։" msgid "Cancel" msgstr "Չեղարկել" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Էջերի կայանքներ" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Կիրառել" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Բեռնում …" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Հայցը ընդհատվեց։" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "Հարցման կատարում" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "Հարցումը ձախողվեց։" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Հարցումը կատարելու սխալ" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Սխալի կոդ՝ %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Սխալի նկարագրություն՝ %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Տվյալների բազան ընտրած չէ։" -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Սյունակի ջնջում" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Առաջնային բանալիի ավելացում" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1760,56 +1764,56 @@ msgstr "Առաջնային բանալիի ավելացում" msgid "OK" msgstr "Լավ" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Կտտացրեք՝ այս ծանուցումը թաքցնելու համար" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Տվյալների բազաների վերանվանում" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Տվյալների բազայի կրկնապատկում" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Կոդավորման փոփոխում" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Միացնել արտաքին բանալիների ստուգումը" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Չհաջողվեց ստանալ տողերի իրական քանակը։" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Որոնում" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Թաքցնել որոնման արդյունքները" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Ցուցադրել որոնման արդյունքները" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Դիտարկում" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Ջնջում" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Պահված գործառույթի սահմանումը պետք է պարունակի RETURN արտահայտությունը։" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1825,46 +1829,46 @@ msgstr "" msgid "Export" msgstr "Արտահանում" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET խմբագիր" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "%s սյունակի արժեքները" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Նոր սյունակների արժեքները" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Մուտքագրեք ամեն արժեքը առանձին դաշտի մեջ։" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Ավելացնել %d արժեք" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Նշում՝ եթե ֆայլը պարունակում է բազմակի աղյուսակներ, դրանք կհամակցվեն մեկի " "մեջ։" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Թաքցնել հարցման դաշտը" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Ցուցադրել հարցման դաշտը" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1874,7 +1878,7 @@ msgstr "Ցուցադրել հարցման դաշտը" msgid "Edit" msgstr "Խմբագրել" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1885,41 +1889,41 @@ msgstr "Խմբագրել" msgid "Delete" msgstr "Հեռացնել" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d չի հանդիսանում վավերական տողի համարը։" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Արտաքին արժեքների զննում" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Ինքնապահպանված հարցումներ չկան" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "%d փոփոխական՝" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Ընտրել" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Սյունակի ընտրիչ" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Որոնել այս ցանկում" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1929,15 +1933,15 @@ msgstr "" "կենտրոնական սյունակների ցանկը պարունակում է սյունակներ, որոնք ընթացիկ " "աղյուսակում առկա չեն։" -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Տեսնել ավելին" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Համոզվա՞ծ եք։" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1945,51 +1949,51 @@ msgstr "" "Այս գործողությունը կարող է փոխել որոշ սյունակների սահմանումները։
Համոզվա՞ծ եք, որ ցանկանում եք շարունակել։" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Շարունակել" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Ավելացնել առաջնային բանալի" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Առաջնային բանալին ավելացվեց։" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Անցում դեպի հաջորդ քայլ …" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "'%s' աղյուսակի կարգավորման առաջին քայլը ավարտված է։" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Քայլի ավարտ" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Կարգավորման երկրորդ քայլ (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Պատրաստ" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Հաստատեք մասնակի կախվածությունները" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Ընտրած մասնակի կախվածությունները հետևյալ են՝" -#: js/messages.php:444 +#: js/messages.php:446 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1997,21 +2001,21 @@ msgstr "" "Նշում՝ a, b -> d,f ենթադրում է, որ a և b սյունակների համակցված արժեքները " "կարող են որոշել d և f սյունակների արժեքները։" -#: js/messages.php:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Ընտրած մասնակի կախվածություններ չկան։" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Ցուցադրեք ինձ հնարավոր մասնակի կախվածությունները՝ աղյուսակի տվյալների հիման " "վրա" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Թաքցնել մասնակի կախվածությունների ցանկը" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2019,41 +2023,41 @@ msgstr "" "Խնդրում ենք սպասել։ Սա կարող է տևել մի քանի վայրկյան՝ կախված տվյալների " "ծավալից և աղյուսակի սյունակների քանակից։" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Քայլ" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Կկատարվեն հետևյալ գործողությունները՝" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "ՋՆՋԵԼ %s սյունակները %s աղյուսակից" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Ստեղծել հետևյալ աղյուսակը" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Կարգավորման երրորդ քայլ (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Հաստատել անցողական կախվածությունները" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Ընտրած կախվածությունները հետևյալ են՝" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Ընտրած կախվածություններ չկան։" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2063,125 +2067,125 @@ msgstr "Ընտրած կախվածություններ չկան։" msgid "Save" msgstr "Պահպանել" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Թաքցնել որոնման եզրերը" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Ցուցադրել որոնման եզրերը" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Որոնման ընդգրկույթ" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Սյունակի առավելագույնը՝" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Սյունակի նվազագույնը՝" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Նվազագույն արժեքը՝" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Առավելագույն արժեքը՝" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Թաքցնել գտնելու և փոխարինելու եզրերը" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Ցուցադրել գտնելու և փոխարինելու եզրերը" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Ամեն կետը ներկայացնում է տվյալների տողը։" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Մկնիկը կետի վրա պահելուց կցուցադրվի դրա պիտակը։" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Խոշորացնելու համար՝ մկնիկով ընտրեք գծապատկերի հատվածը։" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" "Կտտացրեք 'Վերակայել չափը' կոճակը՝ սկզբնական չափերին վերադառնալու համար։" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Կտտացրեք տվյալների կետը՝ տվյալների տողը դիտելու և հավանաբար խմբագրելու համար։" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Գծագիրը կարող է չափափոխվել՝ այն ներքևի աջ անկյան երկայնքով քաշելու դեպքում։" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Ընտրեք երկու սյունակ" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Ընտրեք երկու տարբեր սյունակ" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Տվյալների կետի պարունակությունը" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Անտեսել" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Պատճենել" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Կետ" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Գիծ" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Բազմանկյուն" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Երկրաչափություն" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "Ներքին ուրվագիծ" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Արտաքին ուրվագիծ" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Ցանկանու՞մ եք պատճենել ծածկագրման բանալին։" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Ծածկագրման բանալի" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2189,24 +2193,24 @@ msgstr "" "Ցուցադրում է, որ դուք կատարել եք փոփոխություններ այս էջում։ Դրանք չեղարկելու " "համար ձեզանից հաստատում կպահանջվի" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Ընտրեք հղման բանալին" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Ընտրեք արտաքին բանալին" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Ընտրեք առաջնային բանալիի կամ յուրահատուկ բանալիի սյունակը։" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Ընտրեք սյունակը՝ ցուցադրելու համար" -#: js/messages.php:536 +#: js/messages.php:538 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,76 +2218,76 @@ msgstr "" "Դուք չեք պահպանել դասավորության մեջ կատարած փոփոխությունները։ Առանց " "պահպանման դրանք չեղակրվելու են։ Շարունակե՞լ։" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Էջի անուն" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Պահպանել էջը" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Պահպանել էջը որպես" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Բացել էջը" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Ջնջել էջը" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Առանց վերնագրի" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Ընտրեք հաջորդ էջը" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Տրամադրեք վավերական էջի անունը" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "Ցանկանու՞մ եք պահպանել փոփոխությունները ընթացիկ էջում։" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Էջը հաջողությամբ ջնջվեց" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Կապակցումների ուրվագրի արտահանում" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Փոփոխությունները պահպանվեցին" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Ավելացնել հարաչափ \"%s\" սյունակի համար։" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "ստեղծվել է %d առարկա։" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Կատարել" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Սեղմեք Esc ստեղնը՝ խմբագրումը չեղարկելու համար։" -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2291,41 +2295,41 @@ msgstr "" "Դուք խմբագրել եք որոշ տվյալներ, և դրանք դեռ չեն պահպանվել։ Համոզվա՞ծ եք, որ " "ցանկանում եք լքել այս էջը՝ առանց տվյալների պահպանման։" -#: js/messages.php:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Քաշեք՝ վերադասակարգելու համար։" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Կտտացրեք՝ այդյունքները այս սյունակով դասակարգելու համար։" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Կտտացրեք՝ նշելու/ապանշելու համար։" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Երկկտտացրեք՝ սյունակի անունը պատճենելու համար։" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Կտտացրեք ելնող սլաքը՝
սյունակի տեսանելիությունը փոխարկելու համար։" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Ցուցադրել բոլորը" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2334,13 +2338,13 @@ msgstr "" "պահպանելուց հետո ցանցավորման խմբագրման, նշատուփի, խմբագրման և ջնջման " "հղումների հետ կապված հատկությունները կարող են չաշխատել։" -#: js/messages.php:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Տրամադրեք վավերական տասնվեցերորդական տող։ Վավերական նշաններ են հանդիսանում " "0-9, A-F։" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2348,103 +2352,103 @@ msgstr "" "Իսկապե՞ս եք ցանկանում ցուցադրել բոլոր տողերը։ Մեծ աղյուսակի դեպքում դա կարող " "է խանգարել դիտարկչի աշխատանքը։" -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Սկզբնական երկարություն" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "չեղարկել" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Ընդհատված" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Հաջողում" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Ներմուծել կարգավիճակը" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Քաշեք ֆայլերը այստեղ" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Սկզբից նշեք տվյալների բազան" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Տպել" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Դուք կարող եք խմբագրել արժեքների մեծ մասը՝
դրանց վրա անմիջապես " "երկկտտացնելով։" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Դուք կարող եք նաև խմբագրել տվյալների մեծ մասը
անմիջապես դրանց վրա " "կտտացնելով։" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Անցնել հղմանը՝" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Պատճենել սյունակի անունը։" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "Աջ-կտտացրեք սյունակի անունը՝ այն պատճենելու համար։" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Ստեղծել գաղտնաբառը" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Ստեղծել" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Ավելին" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Ցուցադրել փեղկը" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Թաքցնել փեղկը" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Ցուցադրել թաքնված նավարկման ստորակարգման տարրերը։" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Կապել հիմնական փեղկին" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Ապակապել հիմնական փեղկից" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "Հարցված էջը չի գտնվել պատմության մեջ, հնարավոր է որ այն սպառվել է։" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2454,27 +2458,27 @@ msgstr "" "այն։ Ամենավերջին տարբերակն է՝ %s, թողարկված՝ %s։" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", վերջին կայուն տարբերակն է՝" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "արդի է" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Ստեղծել ներկայացում" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Ուղարկել սխալի զեկույցը" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Ուղարկել սխալի զեկույցը" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2482,15 +2486,15 @@ msgstr "" "Տեղի է ունեցել JavaScript-ի ճակատագրական սխալը։ Ցանկանու՞մ եք ուղարկել սխալի " "զեկույցը։" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Փոխել զեկուցման կայանքները" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Ցուցադրել զեկույցի մանրամասները" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2498,7 +2502,7 @@ msgstr "" "Ձեր արտահանումը թերի է՝ PHP-ի մակարդակում կատարման ժամանակի ցածր սահմանաչափի " "պատճառով։" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2508,60 +2512,60 @@ msgstr "" "ժամանակ որոշ դաշտերը կարող են անտեսվել՝ PHP-ի կազմաձևի max_input_vars արժեքի " "պատճառով։" -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Սպասարկչում հայտնաբերվել են որոշակի սխալներ։" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Նայեք ընթացիկ պատուհանի ներքևի մասը։" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Անտեսել բոլորը" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Ձեր կայանքներին համապատասխան դրանք այժմ ներառվում են, խնդրում ենք սպասել։" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Կատարե՞լ այս հարցումը ևս մեկ անգամ։" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Իսկապե՞ս եք ցանկանում ջնջել այս էջանիշը։" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" "SQL-ի վրիպազերծման տեղեկությունները ստանալու ընթացքում տեղի է ունեցել սխալ։" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s հարցում կատարվեց %s անգամ %s վայրկյանում։" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "փոխանցվեց %s փաստարկ" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Ցուցադրել փաստարկները" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Թաքցնել փաստարկները" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Տևողությունը՝" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2570,355 +2574,355 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Կրկնապատկել տվյալների բազան" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Ավելացնել աղյուսակին նախածանցը՝" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix:" msgid "Replace table with prefix" msgstr "Փոխարինել աղյուսակի նախածանցը՝" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Կրկնապատկել աղյուսակը նախածանցով" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Նախորդ" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Հաջորդ" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Այսօր" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Հունվարի" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Փետրվարի" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Մարտի" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Ապրիլի" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Մայիսի" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Հունիսի" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Հուլիսի" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Օգոստոսի" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Սեպտեմբերի" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Հոկտեմբերի" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Նոյեմբերի" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Դեկտեմբերի" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Հնվ" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Փտվ" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Մրտ" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Ապր" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Մյս" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Հնս" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Հյս" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Օգս" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Սպտ" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Հկտ" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Նյմ" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Դկտ" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Կիրակի" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Երկուշաբթի" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Երեքշաբթի" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Չորեքշաբթի" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Հինգշաբթի" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Ուրբաթ" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Շաբաթ" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Կիր" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Երկ" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Երք" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Չրք" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Հնգ" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Ուր" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Շբթ" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Կի" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Եկ" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Եք" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Չք" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Հն" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Ու" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Շբ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "թ." -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Ժամ" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Րոպե" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Վայրկյան" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Այս դաշտը պարտադիր է" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Ուղղեք այս դաշտը" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Տրամադրեք վավերական էլ-փոստի հասցեն" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Տրանադրեք վավերական URL-ը" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Տրամադրեք վավերական ամսաթիվը" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Տրանադրեք վավերական ամսաթիվը ( ISO )" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Տրամադրեք վավերական թիվը" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Տրամադրեք վավերական վարկային քարտի համարը" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Մուտքագրեք միայն թվանշանները" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Մուտքագրեք նույն արժեքը ևս մեկ անգամ" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Խնդրում ենք մուտքագրել {0} նշանից ոչ ավել" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Խնդրում ենք մուտքագրել {0} նշանից ոչ պակաս" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "Խնդրում ենք մուտքագրել արժեքը՝ {0}-ի և {1}-ի միջև երկարությամբ" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Խնդրում ենք մուտքագրել արժեքը {0}-ի և {1}-ի միջև" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "Խնդրում ենք մուտքագրել արժեքը {0}-ից պակաս կամ հավասար" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "Խնդրում ենք մուտքագրել արժեքը {0}-ից ավել կամ հավասար" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Խնդրում ենք վավերական ամսաթիվը և ժամանակը" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Խնդրում ենք մուտքագրել վավերական տասնվեցերորդական արժեքը" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Սխալ" @@ -2972,34 +2976,34 @@ msgstr "" "Անսպասելի նշան %1$s տողում։ Սպասվում էր աղյուսակավորման նշանը, սակայն գտնվել " "է \"%2$s\"։" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Առկա կազմաձևի ֆայլը (%s) կարդացվող չէ։" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Անվավեր արտոնություններ կազմաձևի ֆայլում։ Այն չպետք է բոլորի կողմից գրվող " "լինի։" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Տառաչափ" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Կոծկել" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Ընդարձակել" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Կրկնել հարցումը" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3019,76 +3023,59 @@ msgstr "Տվյալների բազա" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Ընդամենը %d էջանիշ" -msgstr[1] "Ընդամենը %d էջանիշ" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "մասնավոր" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "բաց" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s և %3$s էջանիշերը ներառված են" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Առանց էջանիշերի" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Ընթացիկ ժամանակաշրջանի ընթացքում" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Բացատրել" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Հարցումների հսկում" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Էջանշել" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Հարցումը ձախողվեց" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Հայցված ժամանակ" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "SQL հարցման կառավարակետ" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Կառավարակետ" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Մաքրել" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Պատմություն" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3106,125 +3093,125 @@ msgstr "Պատմություն" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Կայանքներ" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Էջանիշեր" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "SQL-ի վրիպազերծում" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Սեղմեք Ctrl+Enter՝ հարցումը կատարելու համար" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Սեղմեք Enter՝ հարցումը կատարելու համար" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "ըստ աճման" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "ըստ նվազման" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Հերթականություն՝" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Քանակ" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Կատարման հերթականությունը" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Տևողություն" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Դասակարգել ըստ՝" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Խմբավորել հարցումները" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Ապախմբավորել հարցումները" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Ցուցադրել հետագիծը" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Թաքցնել հետագիծը" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Քանակ՝" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Թարմացնել" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Ավելացնել" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Ավելացնել էջանիշ" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Պիտակ" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Նպատակային տվյալների բազան" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Տարածել այս էջանիշը" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Նշանակել լռելյայնը" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Միշտ ընդարձակել հարցումների ուղերձները" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Սկզբոից ցուցադրել հարցումների պատմությունը" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Ցուցադրել ընթացիկ դիտվող հարցումը" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3232,15 +3219,15 @@ msgstr "" "Կատարել հարցումը՝ Enter սեղմելով, և զետեղել նոր տող՝ Shift + Enter " "սեղմելով։ Այս հնարավորությունը մշտական դարձնելու համար՝ դիմեք կայանքներին։" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Փոխակրել մուգ ոճին" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3248,20 +3235,20 @@ msgstr "" "Սպասարկիչի չի պատասխանում (կամ էլ սպասարկչի տեղային բնակը պատշաճ կազմաձևած " "չէ)։" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Սպասարկիչը չի պատասխանում։" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" "Խնդրում ենք ստուգել տվյալների բազան պարունակող պանակի արտոնությունները։" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Մանրամասները …" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Չհաջողվեց միանալ որպես controluser, ինչպես այն սահմանված է կազմաձևի մեջ։" @@ -3573,7 +3560,7 @@ msgstr "Կարող է մոտավոր լինել։ Դիմեք [doc@faq3-11]FAQ 3. #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Ձեր SQL հարցումը հաջողությամբ կատարվեց։" @@ -3696,15 +3683,15 @@ msgstr "Ֆայլի վերբեռնումը կասեցվել է ընդլայնմա msgid "Unknown error in file upload." msgstr "Ֆայլի վերբեռման անհայտ սխալ։" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Վերբեռնված ֆայլի տեղափոխման սխալ, դիմեք [doc@faq1-11]FAQ 1.11[/doc]։" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Վերբեռնված ֆայլի տեղափոխման սխալ։" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Չհաջողվեց կարդալ վերբեռնված ֆայլը։" @@ -3768,8 +3755,8 @@ msgid "Keyname" msgstr "Բանալիի անվանումը" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3819,13 +3806,13 @@ msgstr "%s ցուցակագիրը ջնջվեց։" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Ջնջել" @@ -3927,7 +3914,7 @@ msgstr "Արտոնություններ" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Գործողություններ" @@ -3942,7 +3929,7 @@ msgstr "Հետագծում" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4317,11 +4304,11 @@ msgstr "%1$s-ի արտաքին բանալիի ստեղծման սխալ (ստո msgid "No valid image path for theme %s found!" msgstr "%s ոճի պատկերների վավերական ուղին չի գտնվել։" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Նախադիտումը հասանելի չէ։" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "կիրառել" @@ -4605,21 +4592,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Տարածական" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Առավելագույնը՝ %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "Վերլուծման ժամանակ գտնվել է %d սխալ։" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4630,32 +4617,32 @@ msgstr "Վերլուծման ժամանակ գտնվել է %d սխալ։" msgid "MySQL said: " msgstr "MySQL-ի պատասխանը՝ " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL-ի վերլուծում" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Զանցել SQL-ի վերլուծումը" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "Առանց PHP կոդի" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "Կատարել հարցումը" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Ստեղծել PHP կոդը" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Ներտող խմբագրում" @@ -4743,6 +4730,10 @@ msgstr "ժամում" msgid "per day" msgstr "օրում" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "բաց" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Որոնում՝" @@ -4851,11 +4842,11 @@ msgstr "Ավելացնել նոր սյունակ" msgid "Attributes" msgstr "Հատկանիշներ" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4863,33 +4854,33 @@ msgstr "" "Սա սովորաբար նշանակում է շարահյուսության սխալների առկայություն, խնդրում ենք " "ստուգել ստորև ցուցադրվող սխալները։" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s սպասարկչի համար նշված խնամորդի անունը անվավեր է։ Խնդրում ենք կատարել " "ուղղումներ ձեր կազմաձևի ֆայլում։" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Սպասարկիչ %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Կազմաձևի ֆայլում նշված վավերացման եղանակը անվավեր է՝" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4901,24 +4892,24 @@ msgstr "" "[/em]-ի համար։ Տվյալ պահին phpMyAdmin-ը օգտագործում է սպասարկչի լռելյայն " "ժամային գոտին։" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Անհրաժեշտ է արդիացնել %s-ը %s կամ բարձր տարբերակին։" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Սխալ՝ հետքանշիչի անհամապատասխանություն" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS վրագրելու փորձ" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "հնարավոր խոցելիություն" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "բացահայտվել է թվային ստեղն" @@ -5610,13 +5601,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Սյունակները շրջապատված են" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5634,12 +5625,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -6199,7 +6190,7 @@ msgid "Column names in first row" msgstr "Սյունակների անունները առաջին տողում" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Չներմուծել դատարկ տողերը" @@ -7600,7 +7591,7 @@ msgid "Table %s has been emptied." msgstr "%s աղյուսակը դատարկվել է։" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "%s ներկայացումը ջնջվեց։" @@ -7734,8 +7725,8 @@ msgid "No data to display" msgstr "Ցուցադրելու տվյալներ չկան" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7773,52 +7764,52 @@ msgstr[1] "'%s' անունները ամրագրված են MySQL-ի կողմից msgid "No column selected." msgstr "Ընտրած սյունակներ չկան։" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Հարցման սխալ" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Փոխել" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Ցուցակագիր" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Տարածական" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Ամբողջ գրվածքով" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Հատուկ արժեքները" @@ -7828,7 +7819,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Առանց փոփոխությունների" @@ -8551,54 +8542,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "[Տեղի է ունեցել ՀԵՏԴԱՐՁ]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Խմբագրել կայանքներ %s-ի համար" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Անցնել աղյուսակին՝ %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s-ի կառուցվածքը" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Անցնել ներկայացնամնը (VIEW)՝ %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8646,55 +8637,55 @@ msgstr "Կամ" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Խմբագրել/Զետեղել" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "և հետո" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Զետեղել որպես նոր տող" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Զետեղել որպես նոր տող և անտեսել սխալներ" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Ցուցադրել զետեղման հարցումը" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Վերադառնալ նախորդ էջին" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Զետեղել մեկ այլ նոր տող" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Խմբագրել հաջորդ տողը" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Օգտագործեք TAB ստեղնը՝ արժեքների դաշտերի միջև տեղափոխվելու, կամ CTRL+սլաքեր՝ " "ցանկացած տեղ տեղափոխվելու համար։" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8706,11 +8697,11 @@ msgstr "" msgid "Value" msgstr "Արժեքը" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "SQL հարցման ցուցադրում" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Զետեղված տողի id՝ %1$d" @@ -9532,7 +9523,7 @@ msgstr "Վերականգնել աղյուսակը" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Ջնջել տվյալները կամ աղյուսակը" @@ -9545,32 +9536,32 @@ msgid "Delete the table (DROP)" msgstr "Ջնջել աղյուսակը (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Վերլուծել" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Ստուգում" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Բարելավվում" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Վերակառուցում" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9596,35 +9587,35 @@ msgstr "Հեռացնել մասնաբաժանումը" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Հնարավոր չէ տեղափոխել աղյուսակն իր մեջ։" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Հնարավոր չէ կրկնապատկել աղյուսակն իր մեջ։" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "%s աղյուսակը տեղափոխվել է %s։" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "%s աղյուսակը կրկնապատկվել է %s։" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Աղյուսակի անունը նշված չէ։" @@ -9793,7 +9784,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9817,21 +9808,21 @@ msgstr "Սահմանում" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Աղյուսակի կառուցվածքը" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9921,7 +9912,7 @@ msgid "Database:" msgstr "Տվյալների բազան՝" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Տվյալներ՝" @@ -10013,7 +10004,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Դատարկել աղյուսակը՝ տվյալներ զետեղելուց առաջ" @@ -10084,7 +10075,7 @@ msgstr "Ըստ երևույթի, ձեր ՏԲ-ն օգտագործում է գոր #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10126,52 +10117,52 @@ msgstr "օգտագործվում է" msgid "It appears your database uses views;" msgstr "Ըստ երևույթի, ձեր ՏԲ-ն օգտագործում է ներկայացումներ;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Պահպանված աղյուսակների ցուցակագրերը" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Աղյուսակի ցուցակագրերը" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT՝ պահպանված աղյուսակների համար" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT՝ աղյուսակի համար" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "ԱՂՅՈՒՍԱԿՆԵՐԻ MIME ՏԵՍԱԿՆԵՐԸ" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Ըստ երևույթի, ձեր ՏԲ-ն օգտագործում է ձգաններ;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Տվյալների կարդալու սխալ՝" @@ -10201,7 +10192,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10219,33 +10210,33 @@ msgstr "" msgid "Column names: " msgstr "Սյունակների անունները՝ " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10253,28 +10244,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "MediaWiki-ի աղյուսակը" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10282,23 +10273,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "ESRI ձևի ֆայլ" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "ESRI ձևի ֆայլը ներմուծելու ժամանակ առաջացել է սխալ՝ \"%s\"։" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10310,7 +10301,7 @@ msgstr "SQL համատեղելիության եղանակը՝" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -13055,15 +13046,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Սպասվում էր ստորակետը կամ փակող փակագիծը։" @@ -13076,17 +13063,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Սպասվում էր այլանունը։" @@ -13104,19 +13092,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Սպասվում էր աղյուսակի հին անունը։" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Սպասվում էր աղյուսակի նոր անունը։" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Սպասվում էր վերանվանման գործողությունը։" @@ -13142,15 +13130,15 @@ msgstr "Սպասվում էր %1$s փակող չակերտը։" msgid "Variable name was expected." msgstr "Սպասվում էր փոփոխականի անունը։" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13171,15 +13159,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Սպասվում էր առնվազն մեկ սյունակի սահմանումը։" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13846,7 +13834,7 @@ msgstr "" msgid "Invalid table name" msgstr "Անվավեր աղյուսակի անուն" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14744,7 +14732,7 @@ msgid "at beginning of table" msgstr "աղյուսակի սկզբում" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Մասնաբաժիններ" @@ -14777,7 +14765,7 @@ msgstr "Մասնաբաժինների աղյուսակ" msgid "Edit partitioning" msgstr "Խմբագրել մասնաբաժանումը" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Խմբագրել ներկայացումը" @@ -14892,11 +14880,11 @@ msgstr "VIEW անունը" msgid "Column names" msgstr "Սյունակների անուններ" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Վերանվանել ներկայացումը" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Ջնջել ներկայացումը (DROP)" @@ -15938,6 +15926,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert նշված է 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Ընդամենը %d էջանիշ" +#~ msgstr[1] "Ընդամենը %d էջանիշ" + +#~ msgid "private" +#~ msgstr "մասնավոր" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s և %3$s էջանիշերը ներառված են" + #~ msgid "This %soption%s should be enabled if your web server supports it." #~ msgstr "" #~ "Այս %sկայանքը%s պետք է միացրած լինի՝ այն ձեր սպասարկչի կողմից աջակցվելու " diff --git a/po/ia.po b/po/ia.po index c6d66a9c9f..e4a894471f 100644 --- a/po/ia.po +++ b/po/ia.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-02-08 15:27+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" @@ -51,7 +51,7 @@ msgid "Table comments:" msgstr "Commentos de tabella:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -105,7 +105,7 @@ msgstr "Typo" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -167,16 +167,16 @@ msgid "Comments" msgstr "Commentos" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Primari" -#: db_datadict.php:165 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:376 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:141 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:446 @@ -200,17 +200,17 @@ msgstr "Primari" msgid "No" msgstr "No" -#: db_datadict.php:165 js/messages.php:519 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:521 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:143 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -264,7 +264,7 @@ msgstr "Tabellas" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -416,23 +416,23 @@ msgid "Point:" msgstr "Puncto:" #: gis_data_editor.php:216 gis_data_editor.php:243 gis_data_editor.php:299 -#: gis_data_editor.php:372 js/messages.php:508 +#: gis_data_editor.php:372 js/messages.php:510 msgid "X" msgstr "X" #: gis_data_editor.php:219 gis_data_editor.php:247 gis_data_editor.php:303 -#: gis_data_editor.php:378 js/messages.php:509 +#: gis_data_editor.php:378 js/messages.php:511 msgid "Y" msgstr "Y" #: gis_data_editor.php:241 gis_data_editor.php:297 gis_data_editor.php:370 -#: js/messages.php:511 +#: js/messages.php:513 #, php-format msgid "Point %d" msgstr "Puncto %d" #: gis_data_editor.php:254 gis_data_editor.php:310 gis_data_editor.php:388 -#: js/messages.php:517 +#: js/messages.php:519 msgid "Add a point" msgstr "Adde un puncto" @@ -454,7 +454,7 @@ msgstr "Circulo interne %d:" msgid "Add a linestring" msgstr "Adde un linestring" -#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:518 +#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:520 msgid "Add an inner ring" msgstr "Adde un circulo interne" @@ -471,12 +471,12 @@ msgstr "Adde un polygono" msgid "Add geometry" msgstr "Adde un geometria" -#: gis_data_editor.php:411 js/messages.php:349 libraries/DbSearch.php:463 +#: gis_data_editor.php:411 js/messages.php:351 libraries/DbSearch.php:463 #: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:139 #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -506,7 +506,7 @@ msgstr "Adde un geometria" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Vade" @@ -526,7 +526,7 @@ msgstr "" msgid "Succeeded" msgstr "Ha havite successo" -#: import.php:58 js/messages.php:592 +#: import.php:58 js/messages.php:594 msgid "Failed" msgstr "Fallite" @@ -534,7 +534,7 @@ msgstr "Fallite" msgid "Incomplete params" msgstr "Parametros incomplete" -#: import.php:184 +#: import.php:185 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -543,15 +543,15 @@ msgstr "" "Probabilemente tu es essayante incargar un file troppo grande. Pro favor tu " "refere al %sdocumentation%s pro eluder iste limite." -#: import.php:360 import.php:665 +#: import.php:361 import.php:666 msgid "Showing bookmark" msgstr "Monstrante marcator de libro" -#: import.php:376 import.php:661 +#: import.php:377 import.php:662 msgid "The bookmark has been deleted." msgstr "Le marcator de libro ha essite delite." -#: import.php:474 +#: import.php:475 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -560,12 +560,12 @@ msgstr "" "File incargate non pote esser movite, proque le servitor ha habilitate " "open_base_dir sin accesso al directorio %s (pro files temporanee)." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:491 import.php:568 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "Le file non pote esser legite!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:502 import.php:517 import.php:542 import.php:557 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -575,7 +575,7 @@ msgstr "" "supportate. Le supporto pro iste typo de compression poterea ancora non " "esser actuate o esser dishabilitate in tu configuration." -#: import.php:574 +#: import.php:575 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -585,23 +585,26 @@ msgstr "" "file, o il ha superate le grandor maxime permittite per tu configuration de " "PHP pro incargar un file. Tu vide [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:627 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "" "Il non es possibile cargar plugins de importar, pro favor tu verifica tu " "installation!" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:669 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "Marcator de libro %s create." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "Importation executate con successo, %d demandas executate." +#: import.php:679 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "Importation executate con successo, %d demandas executate." +msgstr[1] "Importation executate con successo, %d demandas executate." -#: import.php:705 +#: import.php:710 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -610,7 +613,7 @@ msgstr "" "Tempore limite excedite, si tu vole terminar le importation, pro favor %stu " "invia de nove le mesme file%s e le processo initiara de nove." -#: import.php:715 +#: import.php:720 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -623,8 +626,8 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Il non pote incargar le progression del importation." -#: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: import_status.php:116 js/messages.php:450 js/messages.php:602 +#: libraries/Util.php:795 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Retro" @@ -648,7 +651,7 @@ msgstr "" msgid "General settings" msgstr "Preferentias general" -#: index.php:191 js/messages.php:625 +#: index.php:191 js/messages.php:627 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:287 msgid "Change password" @@ -720,10 +723,11 @@ msgstr "Monstra information de PHP" msgid "Version information:" msgstr "Information de version:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:442 libraries/Util.php:509 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Documentation" @@ -852,96 +856,96 @@ msgstr "" "Sur le servitor es executante Suhosin. Controla le documentation: " "%sdocumentation%s pro possibile problema." -#: js/messages.php:39 libraries/import.lib.php:207 sql.php:161 +#: js/messages.php:41 libraries/import.lib.php:207 sql.php:161 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Commandos \"DROP DATABASE\" es dishabilitate." -#: js/messages.php:45 +#: js/messages.php:47 msgid "Confirm" msgstr "Confirma" -#: js/messages.php:46 +#: js/messages.php:48 #, php-format msgid "Do you really want to execute \"%s\"?" msgstr "Tu es vermente secur que tu vole executar \"%s\"?" -#: js/messages.php:48 libraries/mult_submits.lib.php:440 +#: js/messages.php:50 libraries/mult_submits.lib.php:440 msgid "You are about to DESTROY a complete database!" msgstr "Tu es per DESTRUER un complete base de datos!" -#: js/messages.php:50 +#: js/messages.php:52 msgid "You are about to DESTROY a complete table!" msgstr "Tu es per DESTRUER un tabula complete!" -#: js/messages.php:52 +#: js/messages.php:54 msgid "You are about to TRUNCATE a complete table!" msgstr "Tu es per TRUNCAR COMPLETEMENTE le contento del tabella!" -#: js/messages.php:53 +#: js/messages.php:55 msgid "Delete tracking data for this table?" msgstr "Dele datos traciante pro iste tabella?" -#: js/messages.php:55 +#: js/messages.php:57 msgid "Delete tracking data for these tables?" msgstr "Dele datos traciante pro iste tabellas?" -#: js/messages.php:57 +#: js/messages.php:59 msgid "Delete tracking data for this version?" msgstr "Dele datos traciante pro iste version?" -#: js/messages.php:59 +#: js/messages.php:61 msgid "Delete tracking data for these versions?" msgstr "Dele datos traciante pro iste versiones?" -#: js/messages.php:60 +#: js/messages.php:62 msgid "Delete entry from tracking report?" msgstr "Delite entrata ab le reporto de traciar?" -#: js/messages.php:61 +#: js/messages.php:63 msgid "Deleting tracking data" msgstr "Delente datos de traciar" -#: js/messages.php:62 +#: js/messages.php:64 msgid "Dropping Primary Key/Index" msgstr "Depone clave primari/indice" -#: js/messages.php:63 +#: js/messages.php:65 msgid "Dropping Foreign key." msgstr "Abandonante clave estranie." -#: js/messages.php:65 +#: js/messages.php:67 msgid "This operation could take a long time. Proceed anyway?" msgstr "Iste operation poterea prender multo tempore. On procede de omne modo?" -#: js/messages.php:67 +#: js/messages.php:69 #, php-format msgid "Do you really want to delete user group \"%s\"?" msgstr "Tu es vermente secur que tu vole deler gruppo de usator \"%s\"?" -#: js/messages.php:69 +#: js/messages.php:71 #, php-format msgid "Do you really want to delete the search \"%s\"?" msgstr "Tu es vermente secur que tu vole deler le cerca \"%s\"?" -#: js/messages.php:71 +#: js/messages.php:73 msgid "You have unsaved changes; are you sure you want to leave this page?" msgstr "" "Tu ha modificationes non salveguardate. Tu es secur que tu vole abandonar " "iste pagina?" -#: js/messages.php:73 +#: js/messages.php:75 msgid "Do you really want to revoke the selected user(s) ?" msgstr "Tu es vermente secur que tu vole revocar le usator(es) seligite?" -#: js/messages.php:75 +#: js/messages.php:77 msgid "Do you really want to delete this central column?" msgstr "Tu es vermente secur que tu vole deler iste columna central?" -#: js/messages.php:77 +#: js/messages.php:79 msgid "Do you really want to delete the selected items?" msgstr "Tu es vermente secur que tu vole deler le elementos seligite?" -#: js/messages.php:79 +#: js/messages.php:81 msgid "" "Do you really want to DROP the selected partition(s)? This will also DELETE " "the data related to the selected partition(s)!" @@ -949,19 +953,19 @@ msgstr "" "Vermente tu vole abandonar, i.e. executar un DROP sur, le partition(es) " "seligite? Isto anque DELERA le datos referite al partition(es) seligite!" -#: js/messages.php:83 +#: js/messages.php:85 msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "Tu vermente vole TRUNCAR le partition(es) seligite?" -#: js/messages.php:85 +#: js/messages.php:87 msgid "Do you really want to remove partitioning?" msgstr "Tu vermente vole remover le partitionemento?" -#: js/messages.php:86 +#: js/messages.php:88 msgid "Do you really want to RESET SLAVE?" msgstr "Tu es vermente secur que tu vole executar RESET SLAVE?" -#: js/messages.php:88 +#: js/messages.php:90 msgid "" "This operation will attempt to convert your data to the new collation. In " "rare cases, especially where a character doesn't exist in the new collation, " @@ -975,15 +979,15 @@ msgstr "" "iste caso on suggere que tu reverte le collation original e refere al " "consilios " -#: js/messages.php:94 +#: js/messages.php:96 msgid "Garbled Data" msgstr "Datos confuse" -#: js/messages.php:96 +#: js/messages.php:98 msgid "Are you sure you wish to change the collation and convert the data?" msgstr "Tu es secur que tu vole modificar le collation e converter le datos?" -#: js/messages.php:98 +#: js/messages.php:100 msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -999,167 +1003,167 @@ msgstr "" "le datos existente, on suggere usar le functiones de modification del campos " "(le ligamine \"Modifica\") sur le pagina de structura del tabella. " -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" "Tu es secur que tu vole modificar omne collationes e converter le datos?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Salveguarda & claude" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Refixa" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Refixa toto" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Valore mancante in le formulario!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Selige al minus un del optiones!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Pro favor inserta un numero valide!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Pro favor inserta un longor valide!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Adde indice" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Modifica indice" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Adde %s columna(s) al indice" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Crea indice de columna singule" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Crea indice composite" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Composite con:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Pro favor tu selige columna(s) pro le indice." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Tu debe adder al minus un columna." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Vista preliminar SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Simula query" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Rangos coincidente trovate:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "Query SQL:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Valores pro le axis Y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Le nomine de hospite es vacue!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Le nomine de usator es vacue!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Le contrassigno es vacue!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Le contrasignos non es le mesme!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Removente usatores selectionate" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Claude" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Patrono ha essite create." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Patrono esseva cargate." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Patrono esseva actualisate." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Patrono ha essite delite." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Altere" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Connexiones/Processos" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Configuration local del monitor incompatibile!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1172,155 +1176,155 @@ msgstr "" "plus. Pro favor tu fixa le configuration al valores predefinite in le menu " "de Preferentias." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Efficientia del cache de query" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Usage del cache de query" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Cache de query usate" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Usage de CPU de systema" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Memoria de systema" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Swap de systema" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Cargo medie" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Memoria total" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Memoria in cache" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Memoria de buffer" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Memoria libere" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Memoria usate" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Swap total" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Swap in cache" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Swap usate" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Swap libere" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Bytes inviate" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Buytes recipite" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Connexiones" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Processos" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabella/s" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Demandas" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Traffico" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Preferentias" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "adde graphico a grillia" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Pro favor tu adde al minus un variabile al series!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1332,47 +1336,47 @@ msgstr "Pro favor tu adde al minus un variabile al series!" msgid "None" msgstr "Necun" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Reprende monitor" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Pausa monitor" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Initia auto refrescamento" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Stoppa auto refrescamento" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log e slow_query es habilitate." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log es habilitate." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query es habilitate." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query e general_log es dishabilitate." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output non es fixate a TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output es fixate a TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1383,12 +1387,12 @@ msgstr "" "prende plus que %d secundas. Il es consiliabile fixar long_query_time a 0-2 " "secundas, secundo tu systema." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time es fixate a %d secunda(s)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1397,30 +1401,30 @@ msgstr "" "predefinite quando on reinitia le servitor:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Fixa log_output a %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Habilita %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Dishabilita %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Fixa long_query_time a %d secundas." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1428,61 +1432,61 @@ msgstr "" "Tu non pote modificar iste variabiles. Pro favor accede como root o continge " "tu administrator del base de datos." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Modifica preferentias" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Preferentias currente" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Titulo del diagramma" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Differential" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Dividite per %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Unitate" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Ex slow log" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Ex registro general" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" "Le nomine del base de datos non es cognoscite pro iste query in le registros " "de servitor." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Analysante registros" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" "Analysante e cargante registros. Iste operation poterea prender alcun " "tempore." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Cancella requesta" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1493,7 +1497,7 @@ msgstr "" "de gruppar, assi que le altere attributos de query, tal como le tempore de " "initio, pote differer." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1502,34 +1506,34 @@ msgstr "" "Proque le option de gruppar le querys de INSERT ha essite seligite, on " "gruppara iste querys sur le mesme tabella, per ignorar le datos insertate." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Datos de registro cargate. Query executate in iste intervallo de tempore:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Vade a tabella de registro" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Il non trovava alcun dato" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Le registro (log) ha essite analysate, ma necun dato ha essite trovate pro " "iste intervallo de tempore." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analysante…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Explica le exito" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1537,7 +1541,7 @@ msgstr "Explica le exito" msgid "Status" msgstr "Stato" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1547,58 +1551,58 @@ msgstr "Stato" msgid "Time" msgstr "Tempore" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Tempore total:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Exitos del profiling" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabella (Tabula)" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Graphico" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Optiones de filtro per le registro de tabellas" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filtra" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filtra query per parola/regexp:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Gruppa query per ignorar datos variabile in propositiones de WHERE" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Summa del rangos gruppate:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Total:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Cargante registros" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Il falleva actualisar monitor" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1608,28 +1612,28 @@ msgstr "" "invalide. Isto poterea esser perque tu session expirava. Si on recarga le " "pagina e reinserta tu datos de accesso, il poterea esser te utile." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Recarga pagina" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Rangos implicate:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Le analysis de syntaxe del file falleva. Il sembla non esser un codice JSON " "valide." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Il falleva construer grillia de graphico con le configuration importate. On " "refixa al configuration predefinite…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1638,63 +1642,63 @@ msgstr "" msgid "Import" msgstr "Importa" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Importa configuration de monitor" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Pro favor selige le file que tu vole importar." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Nulle files disponibile sur le servitor pro importar!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Analysa query" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Systema de advisor" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Possibile problemas de prestationes" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Problema" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Recommendation" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Detalios de regula" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Justification" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Variabile/formula utilisate" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Essaya" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Formatante SQL…" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "Il non trovava aucun parametros!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1706,60 +1710,60 @@ msgstr "Il non trovava aucun parametros!" msgid "Cancel" msgstr "Cancella" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Preferentias referite al pagina" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Applica" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Cargar…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Requesta abortate!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "Requesta de tractamento" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "Requesta fallite!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Error in le requesta de tractamento" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Codice de error: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Texto de error: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Necun base de datos seligite." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Depone columna" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Addente clave primari" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1769,57 +1773,57 @@ msgstr "Addente clave primari" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Pulsa pro dimitter iste notification" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Renominante base de datos" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Copiante base de datos" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Modificante insimul de characteres" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Habilita le verificationes sur le clave estranie" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Il falleva obtener ver computo de rango." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Cercante" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Cela exitos de cerca" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Monstra exitos de cerca" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Navigar" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Delente" -#: js/messages.php:391 +#: js/messages.php:393 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:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1835,46 +1839,46 @@ msgstr "" msgid "Export" msgstr "Exporta" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "Editor de ENUM/SET" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Valores pro le columna %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Valores pro un nove columna" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Inserta cata valor in un campo separate." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Adde %d valor(es)" -#: js/messages.php:403 +#: js/messages.php:405 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:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Cela quadro de query" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Monstra quadro de query" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1884,7 +1888,7 @@ msgstr "Monstra quadro de query" msgid "Edit" msgstr "Modifica" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1895,41 +1899,41 @@ msgstr "Modifica" msgid "Delete" msgstr "Dele" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 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:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Naviga inter valores externe" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Nulle query auto-salveguardate" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Variabile %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Prende" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Selector de columnas" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Cerca in iste lista" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1939,15 +1943,15 @@ msgstr "" "central per le base de datos %s ha columnas non presente in le columna " "currente." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Vide cosas ulterior" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Tu es secur?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1955,51 +1959,51 @@ msgstr "" "Iste action pote modificar alcun definition de columnas.
Tu es secur que " "tu vole continuar?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Continua" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Adde clave primari" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Clave primari addite." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Ducente te al proxime passo…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Fin del passo" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Secunde passo de normalisation (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Facite" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Confirma dependentias partial" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Dependentias partial seligite es como il seque:" -#: js/messages.php:444 +#: js/messages.php:446 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2007,20 +2011,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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Necun dependentias partial seligite!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Cela lista de dependentias partial" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2028,41 +2032,41 @@ 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:456 +#: js/messages.php:458 msgid "Step" msgstr "Passo" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Le sequente actiones essera executate:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP (abandona) columnas %s ab le tabella %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Crea le sequente tabella" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Tertie passo de normalisation (2NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Confirma dependentias transitive" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Dependentias seligite es como il seque:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Necun dependentias seligite!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2072,127 +2076,127 @@ msgstr "Necun dependentias seligite!" msgid "Save" msgstr "Salveguarda" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Cela criterios de cerca" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Monstra criterios de cerca" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Extension de cerca" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Maximo de columna:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Minimo de columna:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Minime valor:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Maxime valor:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Cela criterios de cercar e de reimplaciar" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Monstra criterios de cercar e de reimplaciar" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Cata puncto representa un rango de datos." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Si on flotta sur un puncto, il monstrara su etiquetta." -#: js/messages.php:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Selige duo columnas" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Selige duo columnas differente" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Contento del puncto de datos" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Copia" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Puncto" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Linestring (catena de linea)" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Polygono" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "Circulo interne" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Circulo externe" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Tu vole copiar le clave de cryptation?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Clave de cryptation" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2200,24 +2204,24 @@ msgstr "" "Indicante que tu ha facite modificationes a iste pagina; tu essera demandate " "de confirmar ante abandonar modificationes" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Selige clave de referentia" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Selige clave estranie" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Pro favor selige le clave primari o un clave unic!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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,76 +2229,76 @@ 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "Nomine de pagina" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Salveguarda pagina" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Aperi pagina" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Dele pagina" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Untitled (Sin titulo)" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Pro favor selige un pagina pro continuar" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Pro favor inserta un nomine valide de pagina" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "Tu vole salveguardar le modificationes del pagina currente?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "On ha delite successosemente le pagina" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Exporta le schema relational" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Modificationes ha essite salveguardate" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Adde un option pro le columna \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d objecto(s) create." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Invia" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Pressa le clave de escape pro cancellar le modification." -#: js/messages.php:561 +#: js/messages.php:563 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 +2306,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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Trahe pro reordinar." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Pulsa pro ordinar exitos per iste columna." -#: js/messages.php:567 +#: js/messages.php:569 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 +2324,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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Pulsa pro seliger/deseliger." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Duple pulsa pro copiar le nomine de columna." -#: js/messages.php:574 +#: js/messages.php:576 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Monstra omnes" -#: js/messages.php:578 +#: js/messages.php:580 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 +2354,13 @@ msgstr "" "modificar, copiar, marcar, deler le grillia poterea non functionar post " "salveguardar." -#: js/messages.php:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2364,107 +2368,107 @@ msgstr "" "Vermente tu vole vider omne rangos? Pro un grande tabella isto poterea vader " "in crash le navigator." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Fortia original" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "cancella" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Abortate" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Successo" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Importa stato" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Depone files hic" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Prime selige un base de datos" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Imprime" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Vade al ligamine:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Copia nomine de columna." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Genera contrasigno" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Genera" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Altere" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Monstra pannello" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Cela pannello" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Monstra elementos de arbore de navigation celate." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Ligamine con pannello principal" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Leva ligamine ex pannello principal" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2474,27 +2478,27 @@ msgstr "" "actualisation. Le version plus nove e %s, liverate le %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", ultime version stabile:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "actualisate" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Crea vista" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Invia reporto de errores" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Submitte reporto de error" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2502,15 +2506,15 @@ msgstr "" "Un error fatal de JavaScript ha occurrite. Tu vole inviar un reporto de " "error?" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Modifica preferentias de reporto" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Monstra detalios de reporto" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2518,7 +2522,7 @@ msgstr "" "Tu exportation es incomplete, debite a un basse limite de tempore de " "execution al nivello de PHP!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2528,62 +2532,62 @@ msgstr "" "alcun del campos poterea esser ignorate, debite al configuration de " "max_input_vars de PHP." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Alcun errores ha essite relevate sur le servitor!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Pro favor tu al basso de iste fenestra." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Ignora Omne" -#: js/messages.php:688 +#: js/messages.php:690 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:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Executa novemente iste query?" -#: js/messages.php:700 +#: js/messages.php:702 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:702 +#: js/messages.php:704 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:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s queries executate %s vices in %s secundas." -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "%s argumento(s) passate" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Monstra argumentos" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Cela argumentos" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Tempore utilisate:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2592,349 +2596,349 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 msgid "Copy tables to" msgstr "Copia tabellas in" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "Adde prefixo de tabella" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "Reimplacia tabella con prefixo" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Mense previe" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Mense proxime" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Hodie" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Januario" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Februario" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Martio" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "April" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Maio" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Junio" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Julio" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Augusto" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Septembre" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Octobre" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Novembre" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Decembre" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Dec" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Dominica" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Lunedi" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Martedi" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Mercuridi" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Jovedi" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Venerdi" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Sabbato" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Jov" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Jo" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendario-mense-anno" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "necun" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Hora" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minuta" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Secunda" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Iste campo es requirite" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Pro favor corrige iste campo" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Pro favor inserta un valide adresse de e-posta" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Pro favor inserta un valide URL" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Pro favor inserta un valide data" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Pro favor inserta un nomine valide data (ISO)" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Pro favor inserta un numero valide" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Pro favor inserta un numero valide de carta de credito" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Pro favor inserta solmente digitos" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Pro favor inserta novemente le mesme valor" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Pro favor inserta plus que {0} characteres" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Pro favor inserta al minus {0} characteres" -#: js/messages.php:915 +#: js/messages.php:917 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:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Pro favor inserta un valor inter {0} e {1}" -#: js/messages.php:925 +#: js/messages.php:927 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:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "Pro favor inserta un major o equal a {0}" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Pro favor inserta un data o tempore valide" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Pro favor inserta un valide ingresso HEX" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Error" @@ -2988,34 +2992,34 @@ msgstr "" "Character inexpectate al linea %1$s. Il expectava tab, ma on trovava \"%2$s" "\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Le file de configuration existente (%s) non es legibile." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permissiones incorrecte sur le file de configuration, il non deberea esser " "scribibile per omnes!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Grandor de font" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Plica" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Expande" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Repite Query" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3035,76 +3039,59 @@ msgstr "Base de datos" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Marcator de libro o favorit %d total" -msgstr[1] "Marcatores de libro o favoritos %d total" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "private" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "compartite" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s e %3$s marcatores de libro includite" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Necun marcator de libro o favorito" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Durante session currente" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Explica" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profiling" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Marcator de libro" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Query falleva" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Tempore de executar query" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "Console de Query de SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Console" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Netta" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Chronologia" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3122,125 +3109,125 @@ msgstr "Chronologia" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Optiones" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Marcatores de libro" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Debug SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Pressa Ctrl+Enter pro executar query" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Pressa Enter pro executar query" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "ascendente" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "descendente" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Ordine:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Computo" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Ordine de executar" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Tempore utilisate" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Ordine per:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Gruppa Queries" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Leva gruppos ex queries" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Monstra tracia" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Cela tracia" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Computo:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Refresca" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Adde" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Adde marcator de libro o favorito" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Etiquetta" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Base de datos objectivo" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Comparti iste marcator de libro o favorito" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Fixa le valores predefinite" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Expande sempre messages de query" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Monstra chronologia de query al initio" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Monstra query currente que on naviga" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3248,16 +3235,15 @@ msgstr "" "Executa queries si on pressa Enter e on inserta nove rango con Shift+Enter. " "Pro facer iste permanente, vide preferentias." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Commuta a thema obscur" -#: libraries/DatabaseInterface.php:1528 -#| msgid "Failed to read configuration file!" +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "Il falleva fixar connexion de collation configurate!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3265,21 +3251,21 @@ msgstr "" "Le servitor non es respondente (o le socket del servitor local non es " "configurate correctemente)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Le servitor non es respondente." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" "Pro favor, controla le permissiones del directorio continente le base de " "datos." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Detalios…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Connexion per usatores de controlo de usator (controluser) falleva como in " @@ -3592,7 +3578,7 @@ msgstr "Il pote esser approximate. Vide[doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Le demanda (query) SQL ha essite executate con successo." @@ -3714,16 +3700,16 @@ msgstr "Le incargamento del file esseva stoppate per le extension errate." msgid "Unknown error in file upload." msgstr "Error incognite durante que il cargava un file." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Error quando on moveva le file incargate, vide [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Error quando on moveva le file incargate." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Il non pote leger le file incargate." @@ -3787,8 +3773,8 @@ msgid "Keyname" msgstr "Nomine clave" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3838,13 +3824,13 @@ msgstr "Indice %s ha essite delite." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Lassa cader" @@ -3945,7 +3931,7 @@ msgstr "Permissiones" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operationes" @@ -3960,7 +3946,7 @@ msgstr "Traciamento" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4340,11 +4326,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "Il trovava necun valide percurso de imagine pro le thema %s!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Necun vista preliminar disponibile." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "prende lo" @@ -4669,21 +4655,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Spatial" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Dimension maxime: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Analysis static:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "%d errores esseva trovate durante le analysis." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4694,32 +4680,32 @@ msgstr "%d errores esseva trovate durante le analysis." msgid "MySQL said: " msgstr "Message de MySQL: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Explica SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Non explica SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "Explication de Analysis a %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "Sin codice PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "Submitte query" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Crea codice PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Modifica in linea (inline)" @@ -4810,6 +4796,10 @@ msgstr "per hora" msgid "per day" msgstr "per die" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "compartite" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Cerca:" @@ -4918,11 +4908,11 @@ msgstr "Adde nove columna" msgid "Attributes" msgstr "Attributos" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Il falleva leger le file de configuration!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4930,33 +4920,33 @@ msgstr "" "Isto usualmente significa que on ha un error de syntaxe in illo, pro favor " "verifica qualcunque error monstrate a basso." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Il non pote incargar configuration predefinite ex: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Indice de servitor invalide: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nomine de hospite pro le servitor %1$s invalide. Pro favor verifica tu " "configuration." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Servitor %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Methodo de authentication invalide fixate in le configuration:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4968,24 +4958,24 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin es currentemente usante le fuso horari " "predefinite de servitor de base de datos." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Tu deberea actualisar a version %s%s o successive." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Error: error de correspondentia in le indicio (token mismatch)" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Tentativa de superscriber GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "possibile exploit" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "clave numeric discoperite" @@ -5740,13 +5730,13 @@ msgstr "Mitte nomines de columnas in le prime rango" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Columnas includite per" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Columnas prefixate per" @@ -5764,12 +5754,12 @@ msgstr "Remove characteres de CRLF intra columnas" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Columnas terminate per" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Rangos terminate per" @@ -6357,7 +6347,7 @@ msgid "Column names in first row" msgstr "Nomines de columna in le prime rango" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Non importa rangos vacue" @@ -7937,7 +7927,7 @@ msgid "Table %s has been emptied." msgstr "Tabella %s ha essite vacuate." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Vista %s ha essite delite." @@ -8071,8 +8061,8 @@ msgid "No data to display" msgstr "Necun dato de monstrar" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8110,17 +8100,17 @@ msgstr[1] "Le nomines '%s' es parolas clave reservate de MySQL." msgid "No column selected." msgstr "Necun columna seligite." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "La columnas ha essite movite successosemente." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Error de query" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." @@ -8128,36 +8118,36 @@ msgstr "" "Tabella %1$s ha essite alterate successosemente. Privilegios ha essite " "adaptate." -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Modifica" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indice" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spatial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Texto complete" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Valores distincte" @@ -8168,7 +8158,7 @@ msgstr "" "Le extension %s es mancante. Pro favor tu verifica tu configuration de PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Necun modification" @@ -8967,56 +8957,56 @@ msgstr "MySQL retornava un insimul de exito vacue (i.e. zero rangos)." msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK occurreva.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Modifica le structura per sequer le ligamine de \"Structura\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Vade al base de datos: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Modifica preferentias per %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Vade a tabella: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Structura de %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Vade a vista: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9064,55 +9054,55 @@ msgstr "O" msgid "web server upload directory:" msgstr "directorio de incargamento de servitor web:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Modifica/Inserta" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Continua insertion con %s rangos" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "e alora" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "inserta como nove rango" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Inserta como nove rango e ignora errores" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Monstra query de insertar" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Vade a previe pagina" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Inserta un altere nove rango" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Vade retro a iste pagina" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Modifica nove rango" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9124,11 +9114,11 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Monstrante query de SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Insertate id de rango: %1$d" @@ -10008,7 +9998,7 @@ msgstr "Repara tabella" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Dele datos o tabella" @@ -10021,32 +10011,32 @@ msgid "Delete the table (DROP)" msgstr "Dele le tabella (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analysa" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Verifica" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimiza" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Reconstrue" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Repara" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Trunca" @@ -10072,35 +10062,35 @@ msgstr "Remove partitionemento" msgid "Check referential integrity:" msgstr "Verifica le integritate referential:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "On non pote mover tabella sur se mesme!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "On non pote copiar tabella sur se mesme!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Tabella %s ha essite movite in %s. Privilegios ha essite adaptate." -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Tabella %s ha essite copiate in %s. Privilegios ha essite adaptate." -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabella %s ha essite movite in %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabella %s ha essite copiate in %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Le nomine de tabella es vacue!" @@ -10274,7 +10264,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10298,21 +10288,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10402,7 +10392,7 @@ msgid "Database:" msgstr "Base de datos:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Datos:" @@ -10498,7 +10488,7 @@ msgid "Data creation options" msgstr "Optiones de creation de datos" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10582,7 +10572,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10624,52 +10614,52 @@ msgstr "in uso" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Limites pro tabellas delite (dumped)" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Limites pro tabella" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indices pro tabellas delite (dumped)" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indices pro tabella" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT pro tabellas delite (dumped)" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT pro tabella" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Il habeva un error quando on legeva datos:" @@ -10699,7 +10689,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10722,33 +10712,33 @@ msgstr "" msgid "Column names: " msgstr "Nomines de columna: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Parametro invalide per le importation de CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10756,28 +10746,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Invalide formato de ingresso de mediawiki al rango:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "Importa percentage como valores decimal (ex. 12.00% to .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importa numerario (ex. $5.00 to 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10785,23 +10775,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10813,7 +10803,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Non usa AUTO_INCREMENT pro valores de zero" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13522,15 +13512,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "On expectava un comma o un parentheses claudite." @@ -13543,17 +13529,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "On expectava un alias." @@ -13571,19 +13558,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "On expectava le vetule nomine de le tabella." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "On expectava un operation de renominar.." @@ -13609,15 +13596,15 @@ msgstr "" msgid "Variable name was expected." msgstr "On expectava un nomine de variabile." -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Un initio de instruction non expectate." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13638,15 +13625,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "On expectava al minus un definition de columna." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14310,7 +14297,7 @@ msgstr "" msgid "Invalid table name" msgstr "Nomine de tabella invalide" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15213,7 +15200,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:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Partitiones" @@ -15246,7 +15233,7 @@ msgstr "Tabella de partition" msgid "Edit partitioning" msgstr "Modifica partitionemento" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -15361,11 +15348,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" @@ -16407,6 +16394,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert - insertion concurrente- es ponite a 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Marcator de libro o favorit %d total" +#~ msgstr[1] "Marcatores de libro o favoritos %d total" + +#~ msgid "private" +#~ msgstr "private" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s e %3$s marcatores de libro includite" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/id.po b/po/id.po index ccedbfb403..9bbc896f64 100644 --- a/po/id.po +++ b/po/id.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-11-23 11:13+0000\n" "Last-Translator: CV. Gavitha Rantama \n" "Language-Team: Indonesian " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save & Close" msgid "Save & close" msgstr "Simpan & Tutup" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Reset" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Reset All" msgid "Reset all" msgstr "Ulang Semua" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Data dalam form kurang !" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Pilih salah satu dari opsi!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Masukan nilai panjang yang valid!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Tambahkan indeks" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Mengedit Indeks" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Tambahkan %s kolom ke index" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Buat index kolom-tunggal" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Buat index gabungan" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Gabung dengan:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Pilih kolom untuk di index." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Anda perlu menambahkan paling tidak satu kolom." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Pratinjau SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Simulasikan query" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Baris yang cocok:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "Query SQL:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Nilai Y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Nama inang kosong!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Nama pengguna kosong!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Kata sandi kosong!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Kata sandi tidak sama!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Hapus pengguna yang dipilih" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Tutup" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy msgid "Template was created." msgstr "Jumlah halaman yang dibuat." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profil telah diperbarui." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Baris telah dihapus." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Lainnya" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Koneksi / Proses" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Konfigurasi monitor lokal tidak kompatibel!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1171,165 +1174,165 @@ msgstr "" "Anda saat ini tidak lagi bekerja. Harap reset konfigurasi menjadi bawaan " "pada menu Pengaturan." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Efisiensi singgahan kueri" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Pemakaian singgahan kueri" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Singgahan kueri terpakai" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Penggunaan CPU Sistem" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Memori sistem" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Swap sistem" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Beban rata-rata" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Memori total" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Memori singgahan" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Memori tersangga" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Memori bebas" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Memori terpakai" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Swap Total" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Swap Singgahan" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Swap Terpakai" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Swap Bebas" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Bita dikirim" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Bita diterima" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Koneksi" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Proses Aktif" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabel" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Perintah" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Lalu Lintas" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Pengaturan" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Tambahkan bagan pada grid" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Harap tambahkan paling tidak satu variabel ke dalam seri!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1341,47 +1344,47 @@ msgstr "Harap tambahkan paling tidak satu variabel ke dalam seri!" msgid "None" msgstr "Tidak ada" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Lanjutkan pemantauan" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Jeda pemantauan" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Mulai penyegaran otomatis" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Hentikan Penyegaran Otomatis" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log dan slow_query_log diaktifkan." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log diaktifkan." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log diaktifkan." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log dan general_log dinonaktifkan." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output tidak disetel menjadi TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output disetel menjadi TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1392,12 +1395,12 @@ msgstr "" "lama dari %d detil. Disarankan untuk menyetel long_query_time 0-2 detik, " "tergantung sistem Anda." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time disetel menjadi %d detik." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1406,30 +1409,30 @@ msgstr "" "sewaktu server dijalankan ulang:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Tetapkan log_output ke %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Aktifkan %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Nonaktifkan %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Setel long_query_time menjadi %d detik." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1437,57 +1440,57 @@ msgstr "" "Anda tidak dapat mengubah variabel tersebut. Harap masuk sebagai root atau " "hubungi administrator basis data Anda." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Ubah pengaturan" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Pengaturan saat ini" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Judul bagan" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Diferensial" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Dibagi oleh %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Unit" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Dari log lambat" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Dari log umum" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "Nama database tidak diketahui untuk query ini dalam log server." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Menganalisis log" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Menganalisis & memuat log. Mungkin perlu waktu." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Permintaan pembatalan" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1497,7 +1500,7 @@ msgstr "" "Namun, hanya kueri SQL yang digunakan sebagai kriteria pengelompokan. " "Atribut kueri lain, seperti waktu mulai, dapat berbeda." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1506,32 +1509,32 @@ msgstr "" "Sejak pengelompokan query INSERT telah dipilih, INSERT query ke dalam tabel " "yang sama juga sedang dikelompokkan bersama, mengabaikan data dimasukkan." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "Data log dimuat. Query dieksekusi dalam rentang waktu ini:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Langsung ke tabel Log" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Data tidak ditemukan" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Log dianalisis, tetapi tidak ada data ditemukan dalam rentang waktu ini." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Menganalisis…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Jelaskan hasil" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1539,7 +1542,7 @@ msgstr "Jelaskan hasil" msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1549,58 +1552,58 @@ msgstr "Status" msgid "Time" msgstr "Waktu" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Total waktu:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Profil Hasil" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabel" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Bagan" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Opsi filter tabel log" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filter" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Saring query berdasarkan kata/regexp:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Pengelompokan queri, abakan variabel data dalan klausa WHERE" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Jumlah baris kelompok:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Total:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Memuat log" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Penyegaran layar gagal" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1610,26 +1613,26 @@ msgstr "" "kemungkinan besar karena sesi Anda berakhir. Muat ulang halaman dan masukkan " "ulang kredensial Anda akan membantu." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Muat ulang halaman" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Baris yang terpengaruh:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "Gagal mengurai berkas config.Ini mungkin kesalahan kode JSON." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Gagal membangun Grafik kisi dengan mengimport config. Mengembalikan ke " "Setelan baku…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1638,67 +1641,67 @@ msgstr "" msgid "Import" msgstr "Impor" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Impor konfigurasi monitor" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Silahkan pilih berkas yang ingin anda impor." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Tidak ada berkas tersedia untuk diimport!" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "Analisis Kueri" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Sistem penasihat" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Isu kinerja yang mungkin" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Isu" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Rekomendasi" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Detail aturan" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Justifikasi" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Variabel / formula terpakai" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Uji" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Memformat SQL…" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Pembatasan yang buruk!" -#: js/messages.php:350 +#: js/messages.php:352 #: 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,74 +1713,74 @@ msgstr "Pembatasan yang buruk!" msgid "Cancel" msgstr "Batal" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Ubah pengaturan" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Terapkan" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Memproses…" -#: js/messages.php:358 +#: js/messages.php:360 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "Permintaan Dibatalkan!" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Memproses Permintaan" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Request Failed!!" msgid "Request failed!!" msgstr "Permintaan gagal!!" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Error in processing request" msgid "Error in processing request" msgstr "Galat sewaktu memproses permintaan." -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Kode Kesalahan: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Pesan Kesalahan: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Basis data belum dipilih." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Menghapus Kolom" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Tambahkan kunci primer" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1787,63 +1790,63 @@ msgstr "Tambahkan kunci primer" msgid "OK" msgstr "Oke" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Klik untuk menyingkirkan pemberitahuan" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Ubah nama basis data" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Menyalin Basis Data" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Mengganti Set Karakter" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Tanpa pemeriksaan kunci asing" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Gagal mengambil jumlah baris sebenarnya." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Pencarian" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Sembunyikan hasil pencarian" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Tampilkan hasil pencarian" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Menjelajahi" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Menghapus" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definisi fungsi disimpan harus mengandung pernyataan RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1859,46 +1862,46 @@ msgstr "Definisi fungsi disimpan harus mengandung pernyataan RETURN!" msgid "Export" msgstr "Ekspor" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "Editor ENUM/SET" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Nilai untuk kolom %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Nilai untuk kolom baru" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Masukkan setiap nilai dalam kolom terpisah." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Tambahkan nilai %d" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Catatan: Jika berkas mengandung banyak tabel, mereka akan di gabungkan " "menjadi satu." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Sembunyikan kotak kueri" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Tampilkan kotak kueri" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1908,7 +1911,7 @@ msgstr "Tampilkan kotak kueri" msgid "Edit" msgstr "Ubah" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1919,42 +1922,42 @@ msgstr "Ubah" msgid "Delete" msgstr "Hapus" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d bukanlah nomor baris yang berlaku." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Menjelajahi nilai luar" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "jangan otomatis simpan kueri" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Variabel" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Pilih" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Pilih Kolom" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Cari daftar ini" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1963,15 +1966,15 @@ msgstr "" "Tidak ditemukan kolom pada daftar. Pastikan daftar kolom untuk database %s " "memiliki beberapa kolom yang tidak tertampilkan pada tabel saat ini." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Lebih banyak" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Anda yakin?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1979,51 +1982,51 @@ msgstr "" "Tindakan ini mungkin mengubah beberapa definisi kolom.
Anda yakin " "ingin melanjutkan?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Lanjutkan" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Tambahkan kunci primer" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Kunci primer telah ditambahkan." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Tunggu sebentar yach…" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Langkah pertama normalisasi selesai untuk tabel '%s'." -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Langkah terakhir" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Langkah kedua normalisasi (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Selesai" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Konfirmasi dependensi parsial" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Dependensi yang dipilih adalah:" -#: js/messages.php:444 +#: js/messages.php:446 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 +2034,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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Tidak ada dependensi parsial yang dipilih!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Sembunykan daftar dependensi parsial" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2051,41 +2054,41 @@ msgstr "" "Santai! Mungkin diperlukan beberapa detik tergantung pada ukuran data dan " "jumlah kolom tabel." -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Langkah" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Tindakan berikut akan dilakukan:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP kolom %s dari tabel %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Buat tabel" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Tahap ketiga normalisasi (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Konfirmasi dependensi transitif" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Dependensi yang dipilih adalah sebagai berikut:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Dependensi belum dipilih!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2095,128 +2098,128 @@ msgstr "Dependensi belum dipilih!" msgid "Save" msgstr "Simpan" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Sembunyikan kriteria pencarian" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Tampilkan kriteria pencarian" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Jarak pencarian" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Jumlah kolom maksimal:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Jumlah kolom minimal:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Nilai minimal:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Nilai maksimum:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Sembunyikan kriteria pencarian dan penggantian" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Tampilkan kriteria pencarian dan penggantian" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Setiap titik mewakili sebaris data." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Melayang di atas titik akan menunjukkan labelnya." -#: js/messages.php:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "Klik link reset Zoom untuk kembali ke keadaan semula." -#: js/messages.php:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Pilih dua kolom" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Pilih dua kolom yang berbeda" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Isi titk data" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Abaikan" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Salin" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Titik" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Segmen garis" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Lingkar Dalam" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Lingkar Luar:" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Apakah anda yakin untuk menyalin kunci enskripsi?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Kunci Enskripsi" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2224,24 +2227,24 @@ msgstr "" "Sebagai indikasi telah ada perubaha di halaman ini; konfirmasi akan " "ditampilkan untuk mengabaikan perubahan" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Pilih kunci rujukan" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Pilih Foreign Key" -#: js/messages.php:533 +#: js/messages.php:535 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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?" @@ -2249,78 +2252,78 @@ msgstr "" "Anda belum menyimpan perubahan pada susunan. Mereka akan hilang jika Anda " "tidak menyimpannya. Apakah Anda ingin melanjutkan?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Nama halaman" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Simpan halaman" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Buka halaman" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Hapus halaman" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Belum ada nama" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Pilih halaman untuk lanjut" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Masukan halaman yang benar" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "Apakah Anda ingin menyimpan perubahan ke halaman ini?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Halaman berhasil dihapus" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Ekspor skema relasi" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Modifikasi telah disimpan" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Tambahkan opsi untuk kolom \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d objek dibuat." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Kirim" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Tekan escape untuk membatalkan perubahan." -#: js/messages.php:561 +#: js/messages.php:563 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 +2331,15 @@ msgstr "" "Anda telah mengedit beberapa data dan belum di simpan. Apakah anda yakin " "akan meninggalkan halaman ini sebelum menyimpan data?" -#: js/messages.php:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Seret untuk menyusun ulang." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "KIik untuk menyortir hasil dari kolom ini." -#: js/messages.php:567 +#: js/messages.php:569 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 +2349,26 @@ msgstr "" "DESC.
- Kontrol+Klik atau Alt+Click (Mac: Shift+Option+Click) untuk " "menghapus kolom dari ORDER BY clause" -#: js/messages.php:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Klik untuk menambahkan/menghapus tanda." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Klik dua kali untuk menyalin nama kolom." -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Klik tanda panah ke bawah
untuk beralih visibilitas kolom." -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Tampilkan semua" -#: js/messages.php:578 +#: js/messages.php:580 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 +2377,11 @@ msgstr "" "grid, kotak centang, Edit, Copy dan Delete link mungkin tidak bekerja " "setelah disimpan." -#: js/messages.php:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2386,110 +2389,110 @@ msgstr "" "Apakah anda ingin melihat semua baris? Tabel ukuran besar bisa membuat " "peramban lambat." -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "String asli" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "Batal" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Batalkan" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Sukses" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Impor status" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Letakkan berkas disini" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Pilih database dulu" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Cetak" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Pergi ke tautan:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Salin nama kolom." -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "Klik-kanan nama kolom untuk menyalinnya ke clipboard." -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Buatkan kata sandi" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Buatkan" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Lainnya" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Tampilkan Panel" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Sembunyikan Panel" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Tampilkan navigasi pohon item tersembunyi." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Link ke panel utama" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Unlink dari panel utama" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2499,31 +2502,31 @@ msgstr "" "untuk meng-upgrade. Versi terbaru adalah %s, dirilis pada %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", versi stabil terakhir:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "Mutakhir" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Buat tampilan" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Kirim laporan kesalahan" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Kiri Laporan Kesalahan" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2531,26 +2534,26 @@ msgstr "" "Kesalhaan fatal JavaScript telah terdeteksi. Anda ingin mengirimkan laporan " "kesalahan?" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Ubah Pengaturan Pelaporan" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Tampilkan Detail Laporan" -#: js/messages.php:662 +#: js/messages.php:664 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:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2560,64 +2563,64 @@ msgstr "" "beberapa bidang mungkin dibatalkan, karena konfigurasi max_input_vars dari " "PHP." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Kesalahan terdeteksi di server!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Silahkan lihat di bagian bawah jendela ini." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Abaikan" -#: js/messages.php:688 +#: js/messages.php:690 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:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Jalankan kueri ini lagi?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Anda yakin akan menghapus penanda ini?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Kueri tereksekusi" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentar tabel" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Sembunyikan hasil pencarian" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2626,385 +2629,385 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Salin basis data ke" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix" msgid "Add table prefix" msgstr "Tambahkan prefiks tabel" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Ganti prefiks tabel" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Salin tabel dengan prefiks" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Sblm" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Brkt" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Hari ini" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Januari" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Februari" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Maret" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "April" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Mei" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Juni" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Juli" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Agustus" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "September" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Oktober" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "November" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Agu" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Des" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Minggu" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Senin" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Selasa" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Rabu" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Kamis" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Jumat" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Sabtu" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Min" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Sen" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Kam" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Min" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Sn" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Sl" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Rb" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Km" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Jm" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Sb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "Kalender-bulan-tahun" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "Kosong" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Jam" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Menit" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Detik" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Gunakan text field" -#: js/messages.php:886 +#: js/messages.php:888 #, 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:889 #, 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:890 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date" msgstr "Masukan angka yang valid" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date ( ISO )" msgstr "Masukan angka yang valid" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "Masukan nilai panjang yang valid!" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter the same value again" msgstr "Masukan angka yang valid" -#: js/messages.php:905 +#: js/messages.php:907 #, fuzzy msgid "Please enter no more than {0} characters" msgstr "Silakan masukkan captcha yang benar!" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy msgid "Please enter at least {0} characters" msgstr "Silakan masukkan captcha yang benar!" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a value between {0} and {1}" msgstr "Masukan angka yang valid" -#: js/messages.php:925 +#: js/messages.php:927 #, 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:930 +#: js/messages.php:932 #, 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:936 +#: js/messages.php:938 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date or time" msgstr "Masukan angka yang valid" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Galat" @@ -3058,33 +3061,33 @@ msgstr "" "Karakter tidak diduga pada baris %1$s. Diharapkan Tab, tapi ditemukan \"%2$s" "\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "File configuration yang ada (%s) tidak dapat di baca." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Perizinan yang salah pada file konfigurasi, sehingga tidak dapat ditulis!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Ukuran huruf" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Tampilkan" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Buka" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Kueri ulang" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3104,75 +3107,58 @@ msgstr "Basis data" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Total %d" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "Privat" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "dibagi" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s and %3$s bookmarks diikutsertakan" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Tidak ada bookmark" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Sesi saat ini" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Jelaskan" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profil" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Bookmarks" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Kueri gagal" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Waktu eksekusi kueri" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "Kotak Kueri SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Konsol" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Bersihkan" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Riwayat" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3190,165 +3176,165 @@ msgstr "Riwayat" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Opsi" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Bookmark" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Men-Debug SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Tekan Ctrl+Enter untuk menjalankan kueri" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute every" msgid "Press Enter to execute query" msgstr "Dieksekusi setiap" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Menaik" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Menurun" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Other" msgid "Order:" msgstr "Lainnya" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Jumlah" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute every" msgid "Execution order" msgstr "Dieksekusi setiap" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Other" msgid "Order by:" msgstr "Lainnya" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "Kueri SQL" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "Kueri SQL" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Tampilkan warna" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide Panel" msgid "Hide trace" msgstr "Sembunyikan Panel" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Count" msgid "Count:" msgstr "Jumlah" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Segarkan" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Tambah" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Tambah bookmark" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Label" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Basis data target" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Bagikan bookmark" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Kembalikan nilai bawaan" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Selalu tampilkan pesan kueri" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Tampilkan riwayat kueri di awal" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Tampilkan kueri saat ini" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Pindah ke tabel salinan" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "Gagal membaca berkas konfigurasi" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3356,19 +3342,19 @@ msgstr "" "Server tidak merespon (atau soket server lokal tidak dikonfigurasi dengan " "benar)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Server tidak merespon." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Harap periksa hak akses direktori basis data." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Rincian…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Koneksi untuk controluser yang di definisikan di konfigurasi Anda gagal." @@ -3684,7 +3670,7 @@ msgstr "Kemungkinan hanya perkiraan saja. Lihat [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Kueri SQL Anda berhasil dieksekusi." @@ -3807,16 +3793,16 @@ msgstr "Pengunggahan berkas dihentikan oleh ekstensi." msgid "Unknown error in file upload." msgstr "Galat tidak dikenal sewaktu mengunggah berkas." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Tidak dapat memindahkan berkas upload, lihat [doc@faq1-11]FAQ 3.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Terjadi galat sewaktu memindahkan berkas unggahan." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -3882,8 +3868,8 @@ msgid "Keyname" msgstr "Nama kunci" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3933,13 +3919,13 @@ msgstr "Indeks %s telah dihapus." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Hapus" @@ -4039,7 +4025,7 @@ msgstr "Hak Akses" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operasi" @@ -4054,7 +4040,7 @@ msgstr "Pelacakan" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4433,11 +4419,11 @@ msgstr "Kesalahan membuat kunci asing pada %1$s (periksa tipe data)" msgid "No valid image path for theme %s found!" msgstr "Lokasi citra yang benar untuk tema %s tidak ditemukan!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Tidak ada pratayang tersedia." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "ambil ini" @@ -4756,23 +4742,23 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Spasial" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Batas ukuran: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Data statis" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4783,38 +4769,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL menyatakan: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Jelaskan SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Lewati Penjelasan SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Kode PHP tidak ditemukan" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Kirim Kueri" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Buat kode PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Edit dikotak" @@ -4904,6 +4890,10 @@ msgstr "dalam sejam" msgid "per day" msgstr "per hari" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "dibagi" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Cari:" @@ -5020,13 +5010,13 @@ msgstr "Tambah kolom" msgid "Attributes" msgstr "Atribut" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to read configuration file!" msgstr "Gagal membaca berkas konfigurasi" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -5034,32 +5024,32 @@ msgstr "" "Hal ini biasanya berarti ada kesalahan sintaks di dalamnya, silahkan cek " "kesalahan di bawah ini." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Tidak dapat memuat konfigurasi default dari: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Indeks server tidak sah: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Hostname tidak sah untuk server %1$s. Harap lihat kembali konfigurasi Anda." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Metode autentikasi dalam konfigurasi tidak sah:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5067,24 +5057,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Anda harus memperbarui ke %s %s atau lebih baru." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Error: Token tidak cocok" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "upaya penimpaan GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "memungkinkan mengeksploitasi" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "tombol angka terdeteksi" @@ -5877,13 +5867,13 @@ msgstr "Masukkan nama kolom pada baris pertama" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Kolom diapit oleh" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Kolom diloloskan oleh" @@ -5901,12 +5891,12 @@ msgstr "Hapus karakter CRLF dalam kolom" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Kolom diakhiri oleh" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Baris diakhir dengan" @@ -6504,7 +6494,7 @@ msgid "Column names in first row" msgstr "Nama kolom pada baris pertama" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Jangan impor baris kosong" @@ -8229,7 +8219,7 @@ msgid "Table %s has been emptied." msgstr "Tabel %s telah dikosongkan." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8369,8 +8359,8 @@ msgid "No data to display" msgstr "Tidak ada data" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8411,55 +8401,55 @@ msgstr[0] "Nama kolom '%s' adalah kata kunci pesanan MySQL." msgid "No column selected." msgstr "Tidak ada kolom yang dipilih." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Galat kueri" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Ubah" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spasial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Teks penuh" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8471,7 +8461,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Ekstensi %s tidak ditemukan. Harap periksa konfigurasi PHP Anda." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Tidak ada perubahan" @@ -9336,63 +9326,63 @@ msgstr "MySQL memberikan hasil kosong (atau nol baris)." msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK occurred.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 #, 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:1258 +#: libraries/import.lib.php:1259 #, fuzzy msgid "View a structure's contents by clicking on its name." msgstr "Lihat isi struktur ini dengan mengklik namanya." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, 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:1263 +#: libraries/import.lib.php:1264 #, fuzzy msgid "Edit structure by following the \"Structure\" link." msgstr "Mengedit struktur dengan mengikuti link \"Struktur\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Tuju ke basis data" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Edit pengaturan %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Tuju ke tabel" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struktur %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Tuju ke view" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 #, 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:1614 +#: libraries/import.lib.php:1615 #, fuzzy msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " @@ -9445,48 +9435,48 @@ msgstr "Atau" msgid "web server upload directory:" msgstr "direktori unggahan server web" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Edit/Tambah" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Lanjutkan penambahan untuk %s baris" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "selanjutnya" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Tambahkan sebagai baris baru" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Tambahkan sebagai baris baru dan abaikan galat" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Tampilkan kueri penambahan" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "kembali" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "tambahkan baris baru berikutnya" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Kembali ke halaman ini" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Edit baris berikut" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9496,7 +9486,7 @@ msgstr "" "Gunakan tombol TAB untuk maju dari angka ke angka atau gunakan CTRL+panah " "untuk maju kemana saja" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9508,11 +9498,11 @@ msgstr "" msgid "Value" msgstr "Nilai" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Menampilkan kueri SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Nomor baris baru: %1$d" @@ -10485,7 +10475,7 @@ msgstr "Perbaiki tabel" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Hapus data atau tabel" @@ -10498,32 +10488,32 @@ msgid "Delete the table (DROP)" msgstr "Hapus tabel (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analisis" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Periksa" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimalkan" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Bangun ulang" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Perbaiki" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10550,37 +10540,37 @@ msgstr "Hapus partisi" msgid "Check referential integrity:" msgstr "Cek integriti referensial:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Memindahkan tabel ke diri-sendiri tidak bisa dilakukan!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Penyalinan tabel pada diri-sendiri tidak bisa dilakukan!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s telah dipindahkan ke %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabel %s telah disalin ke %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Nama tabel kosong!" @@ -10766,7 +10756,7 @@ msgstr "Opsi dump data" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dumping data untuk tabel" @@ -10790,21 +10780,21 @@ msgstr "Definisi" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struktur dari tabel" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktur untuk view" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 #, fuzzy msgid "Stand-in structure for view" @@ -10911,7 +10901,7 @@ msgid "Database:" msgstr "Basis data" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11034,7 +11024,7 @@ msgid "Data creation options" msgstr "Opsi pembuatan objek" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 #, fuzzy msgid "Truncate table before insert" msgstr "Truncate table sebelum insert" @@ -11125,7 +11115,7 @@ msgstr "Tampaknya database Anda menggunakan fungsi;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 #, fuzzy msgid "alias export may not work reliably in all cases." msgstr "ekspor alias mungkin tidak bekerja andal dalam semua kasus." @@ -11173,63 +11163,63 @@ msgstr "sedang digunakan" msgid "It appears your database uses views;" msgstr "Tampaknya database Anda menggunakan pandangan;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Ketidakleluasaan untuk tabel" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Dalam tabel:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Tambahkan nilai AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "JENIS MIME UNTUK TABEL" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELASI UNTUK TABEL" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 #, fuzzy msgid "It appears your table uses triggers;" msgstr "Tampaknya meja Anda menggunakan pemicu;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Galat pembacaan data:" @@ -11262,7 +11252,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 #, fuzzy msgid "" "The first line of the file contains the table column names (if this is " @@ -11287,15 +11277,15 @@ msgstr "" msgid "Column names: " msgstr "Nama kolom: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, fuzzy, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Parameter yang salah untuk impor CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, fuzzy, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -11304,18 +11294,18 @@ msgstr "" "Kolom tidak valid (%s) yang ditentukan! Pastikan bahwa nama kolom dieja " "dengan benar, dipisahkan dengan koma, dan tidak tertutup dalam tanda kutip." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Format masukan CSV tidak valid pada baris %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Format masukan CSV tidak valid pada baris %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 #, fuzzy msgid "This plugin does not support compressed imports!" msgstr "Plugin ini tidak mendukung impor dikompresi!" @@ -11324,26 +11314,26 @@ msgstr "Plugin ini tidak mendukung impor dikompresi!" msgid "MediaWiki Table" msgstr "Tabel MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Format valid input mediawiki pada bari:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 #, fuzzy msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" "Persentase impor sebagai desimal yang tepat (contoh. 12.00% menjadi " "0,12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 #, fuzzy msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Mata uang impor (ex. $5.00 menjadi 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -11351,7 +11341,7 @@ msgstr "" "Berkas XML yang ditentukan cacat atau tidak lengkap. Harap perbaiki dan coba " "lagi." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11362,12 +11352,12 @@ msgstr "Open Document Spreadsheet" msgid "ESRI Shape File" msgstr "ESRI Shape file" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, fuzzy, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Ada kesalahan mengimpor ESRI bentuk file: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 #, fuzzy msgid "" "You tried to import an invalid file or the imported file contains invalid " @@ -11376,12 +11366,12 @@ msgstr "" "Anda mencoba untuk mengimpor file yang tidak valid atau file yang diimpor " "mengandung data tidak valid!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, fuzzy, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Spatial Ekstensi tidak mendukung ESRI Jenis \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "The imported file does not contain any data" msgid "The imported file does not contain any data!" @@ -11395,7 +11385,7 @@ msgstr "Modus kompatibilitas SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Jangan gunakan AUTO_INCREMENT untuk nilai nol" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14686,15 +14676,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14709,17 +14695,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14741,23 +14728,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Jumlah tabel yang terbuka." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Jumlah tabel yang terbuka." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14790,17 +14777,17 @@ msgstr "Event %1$s telah dibuat." msgid "Variable name was expected." msgstr "Templat nama tabel" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Pada Awal Tabel" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14823,19 +14810,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15586,7 +15573,7 @@ msgstr "Tampilkan Dump (Skema) dari tabel" msgid "Invalid table name" msgstr "Nama tabel tidak valid" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Baris: %1$s, Kolom: %2$s, Kesalahan: %3$s" @@ -16683,7 +16670,7 @@ msgid "at beginning of table" msgstr "Pada Awal Tabel" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16732,7 +16719,7 @@ msgstr "dipartisi" msgid "Edit partitioning" msgstr "Hapus partisi" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Tampilan edit" @@ -16864,11 +16851,11 @@ msgstr "Nama VIEW" msgid "Column names" msgstr "Nama kolom" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Ubah nama tampilan menjadi" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Delete the table (DROP)" msgid "Delete the view (DROP)" @@ -18292,6 +18279,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert diatur ke 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Total %d" + +#~ msgid "private" +#~ msgstr "Privat" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s and %3$s bookmarks diikutsertakan" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/it.po b/po/it.po index 09fd3681d7..e2ae57ca96 100644 --- a/po/it.po +++ b/po/it.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-02-04 11:09+0000\n" "Last-Translator: Stefano Martinelli \n" "Language-Team: Italian " -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1007,160 +1011,160 @@ msgstr "" "Sei sicuro di voler cambiare tutte le collation dei campi collazione e " "convertire i dati?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Salva & chiudi" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Riavvia" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Reimposta tutto" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Valore mancante nel form!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Seleziona almeno una opzione!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Si prega di inserire un numero valido!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Inserire una lunghezza valida!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Aggiungi indice" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Modifica indice" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Aggiungi %s campo/i all'indice" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Crea indice a colonna singola" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Crea indice composito" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Composto da:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Selezionare il campo/i per l'indice." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Devi aggiungere almeno un campo." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Anteprima SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Simula query" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Righe coinvolte:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "Query SQL:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Valori per l'asse Y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Il nome di host è vuoto!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Il nome utente è vuoto!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "La password è vuota!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "La password non coincide!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Rimozione Utenti Selezionati" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Chiudi" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Il template è stato creato." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Il template è stato caricato." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Il template è stato aggiornato." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Il template è stato eliminato." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Altre" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Connessioni / Processi" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Configurazione del monitor locale incompatibile!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1173,155 +1177,155 @@ msgstr "" "funzionino. Sei pregato di ripristinare queste impostazioni ai valori " "iniziali nel menù Settings." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Efficienza della cache delle query" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Utilizzo della cache delle query" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Cache delle query utilizzata" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Utilizzo della CPU di sistema" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Memoria" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Swap" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Carico medio" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Memoria totale" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Memoria cached" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Memoria buffer" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Memoria libera" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Memoria utilizzata" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Swap totale" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Swap in cache" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Swap utilizzata" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Swap libera" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Byte inviati" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Byte ricevuti" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Connessioni" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Processi" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabella/e" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Domande" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Traffico" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Impostazioni" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Aggiungi diagramma alla griglia" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Aggiungi almeno una variabile alla serie!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1333,47 +1337,47 @@ msgstr "Aggiungi almeno una variabile alla serie!" msgid "None" msgstr "Nessuno" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Avvia il monitoraggio" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Arresta il monitoraggio" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Avvia auto-refresh" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Blocca l'auto-refresh" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log e slow_query_log sono abilitati." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log è abilitato." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log è abilitato." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log e general_log sono disabilitati." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output non è impostato su TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output è impostato su TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1384,12 +1388,12 @@ msgstr "" "più di %d secondi. É consigliato di impostare long_query_time a 0-2 seconds, " "a secondi del tipo di sistema." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time é impostato a %d secondi." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1398,30 +1402,30 @@ msgstr "" "valori predefiniti durante il riavvio del server:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Imposta log_output a %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Abilita %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Disabilita %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Imposta long_query_time a %d secondi." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1429,59 +1433,59 @@ msgstr "" "Non puoi cambiare i valori di queste variabili. Prega effettua il login come " "root o contatta l'amministratore del database." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Modifica impostazioni" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Impostazioni attuali" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Titolo del grafico" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Differenziali" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Diviso per %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Unità" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Dallo slow log" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Dal log generale" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "Il nome del database non è noto per questa query nei log del server." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Analisi dei log in corso" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" "L'analisi e il caricamento dei log in corso. Questa operazione potrebbe " "richiedere del tempo." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Annulla la richiesta" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1491,7 +1495,7 @@ msgstr "" "raggruppamento è fatto in base al testo che costituisce la query SQL, quindi " "altri attributi, come lo start time, potrebbero essere diversi." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1501,33 +1505,33 @@ msgstr "" "queste query effettuate sulla stessa tabella verranno raggruppate, ignorando " "i dati inseriti." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "Dati di log caricati. Query eseguite in questo intervallo di tempo:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Vai alla tabella di Log" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Nessun dato trovato" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Il log é stato analizzato, ma nessun dato è stato trovato per questo " "intervallo di tempo." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analisi in corso…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Spiega l'output" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1535,7 +1539,7 @@ msgstr "Spiega l'output" msgid "Status" msgstr "Stato" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1545,58 +1549,58 @@ msgstr "Stato" msgid "Time" msgstr "Tempo" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Tempo totale:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Risultati del profiling" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabella" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Grafico" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Opzioni di filtro per il log delle tabelle" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filtra" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filtra query per parola/regexp:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Raggruppa query ignorando dati variabili nelle condizioni del WHERE" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Somma delle righe raggruppate:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Totale:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Caricamento dei log in corso" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "L'aggiornamento del monitor è fallito" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1606,28 +1610,28 @@ msgstr "" "invalida. Potrebbe essere accaduto a causa del termine della validità della " "tua sessione. Prova a ricaricare la pagina reinserendo i tuoi dati di login." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Ricarica la pagina" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Righe coinvolte:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "L'analisi del file di configurazione é fallita. Non sembra essere codice " "JSON valido." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Impossibile creare la tabella dei grafici con la configurazione importata. " "Ripristino alle impostazioni predefinite in corso…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1636,63 +1640,63 @@ msgstr "" msgid "Import" msgstr "Importa" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Importa la configurazione del monitor" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Seleziona il file da importare." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Sul server non è disponibile nessun file da importare!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Analizza la query" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Advisor" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Possibili problemi di prestazioni" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Problema" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Avviso" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Dettagli della regola" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Giustificazione" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Variabile / formula utilizzata" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Prova" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Formatto SQL…" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "Parametri errati!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1704,60 +1708,60 @@ msgstr "Parametri errati!" msgid "Cancel" msgstr "Annulla" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Impostazioni specifiche della pagina" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Applica" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Caricamento…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Richiesta interrotta!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "Elaborazione richiesta" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "Richiesta fallita!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Errore nell'elaborazione della richiesta" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Codice errore: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Messaggio errore: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Nessun database selezionato." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Eliminazione campo" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Aggiungo chiave primaria" -#: js/messages.php:367 +#: js/messages.php:369 #: 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,57 +1771,57 @@ msgstr "Aggiungo chiave primaria" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Clicca per chiudere questa notifica" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Rinomino database" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Copio il database" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Cambio il charset" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Abilita i controlli sulle chiavi esterne" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Il conteggio delle righe reali è fallito." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Ricerca in corso" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Nascondi i risultati della ricerca" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Mostra i risultati della ricerca" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Navigazione" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Cancellazione" -#: js/messages.php:391 +#: js/messages.php:393 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:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1833,46 +1837,46 @@ msgstr "" msgid "Export" msgstr "Esporta" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "Editor di ENUM/SET" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Valori per il campo %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Valori per un nuovo campo" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Inserisci i valori in campi separati." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Aggiungi %d valore/i" -#: js/messages.php:403 +#: js/messages.php:405 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:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Nascondi riquadro query SQL" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Mostra riquadro query SQL" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1882,7 +1886,7 @@ msgstr "Mostra riquadro query SQL" msgid "Edit" msgstr "Modifica" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1893,41 +1897,41 @@ msgstr "Modifica" msgid "Delete" msgstr "Elimina" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 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:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Naviga tra i valori esterni" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Nessuna query auto-memorizzata" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Variabile %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Seleziona" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Selettore colonne" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Cerca nella lista" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1936,15 +1940,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:424 +#: js/messages.php:426 msgid "See more" msgstr "Vedi altri" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Sei sicuro?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1952,51 +1956,51 @@ msgstr "" "Questa azione potrebbe cambiare la definizione di alcune colonne.
Vuoi " "continuare?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Continua" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Aggiungi chiave primaria" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Chiave primaria aggiunta." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Alla fase successiva…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Fase terminata" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Seconda fase di normalizzazione (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Fatto" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Conferma dipendenze parziali" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Le dipendenze parziali selezionate sono come segue:" -#: js/messages.php:444 +#: js/messages.php:446 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2004,20 +2008,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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Nessuna dipendenza parziale selezionata!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Nascondi la lista delle dipendenze parziali" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2025,41 +2029,41 @@ msgstr "" "Stai pronto! Potrebbero volerci alcuni secondi, in base alla quantità di " "dati e al numero di colonne della tabella." -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Fase" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Verranno eseguite le seguenti azioni:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "ELIMINA le colonne %s dalla tabella %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Crea la tabella seguente" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Terzo livello di normalizzazione (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Conferma le dipendenze transitive" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Le dipendenze selezionate sono come segue:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Nessuna dipendenza selezionata!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2069,127 +2073,127 @@ msgstr "Nessuna dipendenza selezionata!" msgid "Save" msgstr "Salva" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Nascondi criteri di ricerca" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Mostra criteri di ricerca" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Ricerca nell'intervallo" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Numero massimo dei campi:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Numero minimo dei campi:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Valore minimo:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Valore massimo:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Nascondi i criteri di trova e sostituisci" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Mostra criteri di ricerca e sostituzione" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Ogni punto rappresenta una riga dei dati." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Passando il mouse su un punto mostrerà la sua etichetta." -#: js/messages.php:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Seleziona due campi" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Seleziona due campi diversi" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Contenuto del punto" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Copia" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Punto" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Stringa su più linee" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Poligono" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "Anello Interno" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Anello esterno" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Vuoi copiare la chiave di criptazione?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Chiave di criptazione" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2197,24 +2201,24 @@ msgstr "" "Indica che hai modificato questa pagina; ti verrà chiesta una conferma prima " "di abbandonare le modifiche" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Seleziona le chiavi referenziali" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Seleziona Foreign Key" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Seleziona la chiave primaria o una chiave univoca!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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?" @@ -2222,76 +2226,76 @@ msgstr "" "Non hai salvato i cambiamenti della disposizione. Questi cambiamenti saranno " "persi se non li salvi. Vuoi procedere?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Nome della pagina" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Salva pagina" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Apri pagina" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Cancella pagina" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Senza titolo" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Scegli una pagina per continuare" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Inserisci un nome di pagina valido" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "Vuoi salvare le modifiche apportate alla pagina corrente?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Pagina eliminata con sucesso" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Esporta schema relazionale" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Le modifiche sono state salvate" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Aggiungi un'opzione al campo \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d oggetto/i creato/i." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Invia" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Premi Esc per annullare la modifica." -#: js/messages.php:561 +#: js/messages.php:563 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2299,15 +2303,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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Trascina per riordinare." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Clicca per ordinare i risultati secondo questa colonna." -#: js/messages.php:567 +#: js/messages.php:569 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2317,28 +2321,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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Clicca per selezionare/deselezionare." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Doppio click per copiare il nome della colonna." -#: js/messages.php:574 +#: js/messages.php:576 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Mostra tutti" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2347,13 +2351,13 @@ msgstr "" "modifica, copia ed eliminazione potrebbero non funzionare dopo il " "salvataggio." -#: js/messages.php:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2361,105 +2365,105 @@ msgstr "" "Vuoi davvero vedere tutte le righe? Con una tabella di grandi dimensioni, " "questa operazione potrebbe mandare il browser in crash." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Lunghezza originale" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "Annulla" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Fallito" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Riuscito" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Importa stato" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Rilascia i file qui" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Prima seleziona un database" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Stampa" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Vai al link:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Copia il nome del campo." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Genera password" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Genera" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Più" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Mostra pannello" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Nascondi pannello" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Mostra elementi nascosti dell'albero di navigazione." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Collega al pannello principale" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Scollega dal pannello principale" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2469,27 +2473,27 @@ msgstr "" "l'aggiornamento. La versione più recente è la %s, rilasciata il %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", versione stabile piú recente:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "aggiornata" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Crea vista" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Invia rapporto di errore" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Invia segnalazione di errore" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2497,15 +2501,15 @@ msgstr "" "Un errore fatale di JavaScript si è verificato. Vuoi inviare una " "segnalazione?" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Modifica le impostazioni della segnalazione" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Mostra i dettagli della segnalazione" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2513,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:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2523,62 +2527,62 @@ msgstr "" "alcuni campi saranno ignorati, a causa della configuazione max_input_vars di " "PHP." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Sono stati rilevati alcuni errori sul server!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Guarda in fondo a questa finestra." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Ignora Tutto" -#: js/messages.php:688 +#: js/messages.php:690 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:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Eseguire di nuovo questa query?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Sei sicuro di voler eliminare questo bookmark?" -#: js/messages.php:702 +#: js/messages.php:704 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:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s query eseguite %s volte in %s secondi." -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "%s argomento(i) passati" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Mostra argomenti" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Nascondi argomenti" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Tempo utilizzato:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2605,349 +2609,349 @@ msgstr "" "Nel browser Safari il problema è causato spesso dalla modalità di " "navigazione Privata." -#: js/messages.php:711 +#: js/messages.php:713 msgid "Copy tables to" msgstr "Copia le tabelle su" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "Aggiungi un prefisso alla tabella" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "Sostituisci tabella con prefisso" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copia tabella col prefisso" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Prec" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Prossimo" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Oggi" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Gennaio" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Febbraio" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Marzo" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Aprile" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Maggio" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Giugno" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Luglio" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Agosto" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Setttembre" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Ottobre" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Novembre" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Dicembre" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Mag" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Giu" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Lug" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Ott" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Dic" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Domenica" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Lunedì" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Martedì" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Mercoledì" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Giovedì" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Venerdì" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Sabato" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Gio" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Gi" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "Nessuno" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Ora" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minuto" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Secondo" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Questo campo è obbligatorio" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Si prega di correggere questo campo" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Per favore inserisci un indirizzo email valido" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Si prega di inserire un URL valido" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Si prega di inserire una data valida" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Si prega di inserire una data valida ( ISO )" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Si prega di inserire un numero valido" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Si prega di inserire un numero di carta di credito valido" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Si prega di inserire solo cifre" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Si prega di inserire lo stesso valore di nuovo" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Si prega di inserire non più di {0} caratteri" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Si prega di inserire almeno {0} caratteri" -#: js/messages.php:915 +#: js/messages.php:917 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:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Immettere un valore compreso tra {0} e {1}" -#: js/messages.php:925 +#: js/messages.php:927 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:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "Immettere un valore maggiore o uguale a {0}" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Si prega di inserire una data o un'ora valida" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Si prega di inserire un input HEX valido" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Errore" @@ -3000,34 +3004,34 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" "Carattere inatteso alla riga %1$s. Atteso tab, trovato invece \"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "File di configurazione esistente (%s) non è leggibile." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permessi incorretti sul file di configurazione, non deve essere scrivibile " "da tutti!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Dimensione font" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Riduci" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Espandi" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Re-query" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3047,76 +3051,59 @@ msgstr "Database" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Totale %d segnalibro" -msgstr[1] "Totale %d segnalibri" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "privato" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "condiviso" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s e %3$s segnalibri inclusi" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Nessun segnalibro" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Durante la sessione corrente" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Spiega" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profiling" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Segnalibro" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Query fallita" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Tempo in coda" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "Console per Query SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Console" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Cancella" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "History" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3134,125 +3121,125 @@ msgstr "History" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Opzioni" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Segnalibri" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Debug SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Premere Ctrl+Enter per eseguire la query" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Premere INVIO per eseguire query" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "crescente" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "decrescente" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Ordine:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Conteggio" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Ordine di esecuzione" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Tempo utilizzato" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Ordine per:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Raggruppa query" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Dividi Query" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Mostra traccia" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Nascondi traccia" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Conteggio:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Aggiorna" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Aggiungi" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Aggiungi segnalibro" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Etichetta" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Database di destinazione" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Condividi questo segnalibro" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Imposta i valori predefiniti" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Espandi sempre i messaggi delle query" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Mostra la cronologia delle query all'inizio" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Mostra navigazione della query corrente" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3260,17 +3247,17 @@ msgstr "" "Esegui le query con INVIO e inserisci la nuova riga con MAIUSC + INVIO. Per " "rendere questo permanente, vedi le impostazioni." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Passare al tema scuro" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Lettura del file di configurazione fallita!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3278,19 +3265,19 @@ msgstr "" "Il server non risponde (o il socket del server locale MySQL non è " "correttamente configurato)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Il server non risponde." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Controllate i privilegi della cartella che contiene il database." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Dettagli…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Connessione per controluser come definito nella configurazione fallita." @@ -3602,7 +3589,7 @@ msgstr "Può essere approssimativo. Vedi [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "La query SQL è stata eseguita con successo." @@ -3722,16 +3709,16 @@ msgstr "Caricamento del file interrotto per estensione errata." msgid "Unknown error in file upload." msgstr "Si é verificato un errore sconosciuto durante il caricamento del file." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Errore nello spostamento del file caricato, vedi [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Si é verificato un errore durante lo spostamento del file." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Impossibile leggere il file caricato." @@ -3795,8 +3782,8 @@ msgid "Keyname" msgstr "Chiave" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3846,13 +3833,13 @@ msgstr "L'indice %s è stato eliminato." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Elimina" @@ -3954,7 +3941,7 @@ msgstr "Privilegi" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operazioni" @@ -3969,7 +3956,7 @@ msgstr "Monitoraggio" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4349,11 +4336,11 @@ msgid "No valid image path for theme %s found!" msgstr "" "Non è stato trovato nessun percorso per l'immagine valido per il tema %s!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Nessuna anteprima disponibile." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "prendilo" @@ -4679,21 +4666,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Spaziale" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Dimensione massima: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Analisi statica:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "Sono stati trovati %d errori durante l'analisi." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4704,32 +4691,32 @@ msgstr "Sono stati trovati %d errori durante l'analisi." msgid "MySQL said: " msgstr "Messaggio di MySQL: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Spiega SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Non Spiegare SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "Spiegazione Analisi a %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "Senza codice PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "Invia query" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Crea il codice PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Modifica inline" @@ -4817,6 +4804,10 @@ msgstr "all'ora" msgid "per day" msgstr "al giorno" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "condiviso" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Cerca:" @@ -4924,11 +4915,11 @@ msgstr "Aggiungi nuovo campo" msgid "Attributes" msgstr "Attributi" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Lettura del file di configurazione fallita!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4936,32 +4927,32 @@ msgstr "" "Questo di solito significa che vi è un errore di sintassi in esso, verifica " "eventuali errori riportati in basso." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Non posso caricare la configurazione predefinita da: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Indice server non valido: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome host per il server %1$s non valido. Controlla la tua configurazione." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Metodo di autenticazione impostato nella configurazione non valido:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4973,24 +4964,24 @@ msgstr "" "['SessionTimeZone'][/em]. Al momento phpMyAdmin sta usando la timezone " "predefinita sul server." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Si dovrebbe aggiornare %s alla versione %s o successiva." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Errore: token non corrispondente" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Tentativo di sovrascrivere GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "possibile exploit" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "chiave numerica rilevata" @@ -5741,13 +5732,13 @@ msgstr "Metti i nomi dei campi nel primo rigo" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Campi limitati da" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Campi prefissati con" @@ -5765,12 +5756,12 @@ msgstr "Rimuovi i caratteri CRLF dai campi" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Campi terminati da" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Linee terminate con" @@ -6365,7 +6356,7 @@ msgid "Column names in first row" msgstr "I nomi dei campi sulla prima riga" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Non importare righe vuote" @@ -7950,7 +7941,7 @@ msgid "Table %s has been emptied." msgstr "La tabella %s è stata svuotata." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "La vista %s è stata eliminata." @@ -8085,8 +8076,8 @@ msgid "No data to display" msgstr "Nessun dato da visualizzare" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8124,17 +8115,17 @@ msgstr[1] "I nomi '%s' sono termini riservati MySQL." msgid "No column selected." msgstr "Nessuna colonna selezionata." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "I campi sono stati spostati con successo." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Errore nella query" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." @@ -8142,36 +8133,36 @@ msgstr "" "La tabella %1$s è già stata modificata con successo. I privilegi sono stati " "adattati." -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Modifica" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indice" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spaziale" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Testo completo" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Valori distinti" @@ -8181,7 +8172,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "L'estensione %s è mancante. Controlla la tua configurazione di PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nessun cambiamento" @@ -8982,56 +8973,56 @@ msgstr "MySQL ha restituito un insieme vuoto (i.e. zero righe)." msgid "[ROLLBACK occurred.]" msgstr "[è stato fatto un ROLLBACK.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Modifica la struttura seguendo il link \"Struttura\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Vai al database: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Modifica impostazioni per %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Vai alla tabella: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struttura di %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Vai alla visualizzazione: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9081,55 +9072,55 @@ msgstr "Oppure" msgid "web server upload directory:" msgstr "directory di upload del web-server:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Modifica/Inserisci" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Riprendi inserimento con %s righe" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "e quindi" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Inserisci come nuova riga" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Inserisci come nuova riga e ignora gli errori" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Mostra la insert query" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Indietro" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Inserisci un nuovo record" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Torna a questa pagina" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Modifica il record successivo" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9141,11 +9132,11 @@ msgstr "" msgid "Value" msgstr "Valore" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Visualizzo la query SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserita riga id: %1$d" @@ -10025,7 +10016,7 @@ msgstr "Ripara tabella" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Rimuovi la tabella o i dati" @@ -10038,32 +10029,32 @@ msgid "Delete the table (DROP)" msgstr "Elimina la tabella (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analizza" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Controlla" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Ottimizza" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Ricrea" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Ripara" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Tronca" @@ -10089,35 +10080,35 @@ msgstr "Rimuove partizionamento" msgid "Check referential integrity:" msgstr "Controlla l'integrità delle referenze:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Impossibile spostare la tabella su se stessa!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Impossibile copiare la tabella su se stessa!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "La tabella %s è stata spostata in %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "La tabella %s è stata copiata su %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Il nome della tabella è vuoto!" @@ -10297,7 +10288,7 @@ msgstr "Opzioni del dump dei dati" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dump dei dati per la tabella" @@ -10321,21 +10312,21 @@ msgstr "Definizione" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struttura della tabella" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struttura per la vista" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Struttura stand-in per le viste" @@ -10427,7 +10418,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Dati:" @@ -10531,7 +10522,7 @@ msgid "Data creation options" msgstr "Opzioni di creazione dei dati" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Svuota la tabella prima dell'inserimento" @@ -10614,7 +10605,7 @@ msgstr "Il tuo database sembra utilizzare le funzioni;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" "l'esportazione degli alias potrebbe non funzionare correttamente in tutti i " @@ -10658,52 +10649,52 @@ msgstr "in uso" msgid "It appears your database uses views;" msgstr "Il tuo database sembra utilizzare le viste;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Limiti per le tabelle scaricate" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Limiti per la tabella" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indici per le tabelle scaricate" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indici per le tabelle" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT per le tabelle scaricate" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT per la tabella" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Il tuo database sembra utilizzare i trigger;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "(Vedi sotto per la vista effettiva)" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Si è verificato un errore durante la lettura dei dati:" @@ -10735,7 +10726,7 @@ msgstr "" "l'importazione (aggiungi ON DUPLICATE KEY UPDATE)" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10758,15 +10749,15 @@ msgstr "" msgid "Column names: " msgstr "Nomi dei campi: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Parametro non valido per importazione CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10776,18 +10767,18 @@ msgstr "" "scritti correttemente, sono separati da virgole e non racchiusi in " "virgolette." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Formato non valido per l'input CSV alla linea %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Il numero dei campi non é valido nell'input CSV alla linea %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Questo plugin non supporta importazioni di dati compressi!" @@ -10795,23 +10786,23 @@ msgstr "Questo plugin non supporta importazioni di dati compressi!" msgid "MediaWiki Table" msgstr "Tabella MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Formato non valido per mediawiki alla linea:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" "Importa percentuali come valori decimali (ad esempio 12.00% come .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importa valute (ad esempio $5.00 come 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10819,7 +10810,7 @@ msgstr "" "Il file XML specificato era malformato o incompleto. Correggi questo " "problema e prova ancora." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" "Non riesco ad analizzare il foglio di calcolo nel formato OpenDocument!" @@ -10828,13 +10819,13 @@ msgstr "" msgid "ESRI Shape File" msgstr "Shape File ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" "C'è stato un errore durante l'importazione del file shape ESRI: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10842,12 +10833,12 @@ msgstr "" "Hai cercato di importare un file non valido o il file importato contiene " "dati non validi!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "L'Estensione Spaziale di MySQL non supporta il tipo ESRI \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Il file importato non contiene alcun dato!" @@ -10859,7 +10850,7 @@ msgstr "Modalitá di compatibilità SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Non usare AUTO_INCREMENT per il valori zero" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13905,15 +13896,11 @@ msgstr "Erano attesi %1$d valori, ma ne sono stati trovati %2$d." msgid "An opening bracket followed by a set of values was expected." msgstr "Era attesa una parentesi aperta seguita da un insieme di valori." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "Era attesa una parentesi aperta." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "Era attesa una virgola o una parentesi chiusa" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Era attesa una virgola o una parentesi chiusa." @@ -13926,17 +13913,18 @@ msgstr "Era attesa una parentesi chiusa." msgid "Unrecognized data type." msgstr "Tipo dati non riconosciuto." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Un alias è stato trovato precedentemente." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Segno di punteggiatura \"punto\" inatteso." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Era atteso un alias." @@ -13954,19 +13942,19 @@ msgstr "Era atteso un offset." msgid "This option conflicts with \"%1$s\"." msgstr "Questa opzione è in conflitto con \"%1$s\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Era atteso il vecchio nome della tabella." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Era attesa la parola chiave \"TO\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Era atteso il nuovo nome della tabella." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Era attesa una operazione di rinomina." @@ -13992,15 +13980,15 @@ 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:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Inizio di statement inatteso." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Tipo statement non riconosciuto." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Non è stata iniziata alcuna transazione in precedenza." @@ -14023,15 +14011,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Parola chiave non riconosciuta." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Era atteso il nome dell'entity." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Era attesa almeno la definizione di un campo." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Era attesa una parola chiave \"RETURNS\"." @@ -14726,7 +14714,7 @@ msgstr "Visualizza dump (schema) della tabella" msgid "Invalid table name" msgstr "Nome tabella non valido" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Riga: %1$s, Campo: %2$s, Errore: %3$s" @@ -15647,7 +15635,7 @@ msgid "at beginning of table" msgstr "All'inizio della tabella" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Partizioni" @@ -15680,7 +15668,7 @@ msgstr "Tabella partizioni" msgid "Edit partitioning" msgstr "Modifica partizionamento" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Modifica la vista" @@ -15795,11 +15783,11 @@ msgstr "Nome VISTA" msgid "Column names" msgstr "Nomi dei campi" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Rinomina la vista in" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Elimina la vista (DROP)" @@ -17109,6 +17097,20 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert è impostato a 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Totale %d segnalibro" +#~ msgstr[1] "Totale %d segnalibri" + +#~ msgid "private" +#~ msgstr "privato" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s e %3$s segnalibri inclusi" + +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Era attesa una virgola o una parentesi chiusa" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/ja.po b/po/ja.po index 896ace031c..bb925a472f 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-01-22 11:11+0000\n" "Last-Translator: Masahiro Nishi \n" "Language-Team: Japanese " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "保存して閉じる" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "リセット" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Reset All" msgid "Reset all" msgstr "全リセット" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "フォームに入力されていない値があります!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "オプションを一つ以上選択してください!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "有効なポート番号を入力してください!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "正しい長さを入力してください!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "インデックスを追加する" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "インデックスを編集する" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "インデックスに %s 個のカラムを追加する" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "単一カラムのインデックスを作成" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "複雑なインデックスを作成" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "合成物:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "インデックスに使用するカラムを選択してください。" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "最低ひとつはカラムを追加してください。" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "SQLのプレビュー" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "クエリを検証" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "変更された行:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "実行した SQL" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y 軸の値" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "ホスト名が空です!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "ユーザ名が空です!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "パスワードが空です!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "パスワードが異なっています!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "選択したユーザを削除する" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "閉じる" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "テンプレートが作成されました。" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "テンプレートを更新しました。" -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "テンプレートを削除しました。" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "その他" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "接続/プロセス" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "ローカルのモニタ環境設定に互換性なし" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1164,157 +1167,157 @@ msgstr "" "せん。この環境設定ではおそらく機能させることはできないでしょう。設定項" "目よりモニタ環境設定をデフォルトに戻してください。" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "クエリキャッシュ効率" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "クエリキャッシュの使用状況" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "使用されているクエリキャッシュ" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "システム CPU の使用状況" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "システムメモリ" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "システムスワップ" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "平均負荷" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "総メモリ" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "キャッシュ割り当てメモリ" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "バッファ割り当てメモリ" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "空きメモリ" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "使用中メモリ" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "総スワップ領域" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "キャッシュ割り当てスワップ領域" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "使用中スワップ領域" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "空きスワップ領域" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "送信" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "受信" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "接続" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "プロセス" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "バイト" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d テーブル" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "問い合わせ" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "トラフィック" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "設定" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "モニタリンググラフを追加する" -#: js/messages.php:218 +#: js/messages.php:220 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "少なくとも1つの系列を追加してください" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1326,47 +1329,47 @@ msgstr "少なくとも1つの系列を追加してください" msgid "None" msgstr "なし" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "モニタ再開" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "モニタ一時中断" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log および slow_query_log は有効です。" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log は有効です。" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log は有効です。" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log および general_log は無効です。" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output はテーブルに設定されていません。" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output はテーブルに設定されています。" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1377,12 +1380,12 @@ msgstr "" "をログに記録します。お使いのシステムによっては、long_query_time を 0~2 秒に" "設定したほうがいいでしょう。" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time は %d 秒に設定されています。" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1391,31 +1394,31 @@ msgstr "" "されます。" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "log_output に %s を設定する" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "%s を有効にする" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "%s を無効にする" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Set long_query_time to %ds" msgid "Set long_query_time to %d seconds." msgstr "long_query_time を %d 秒に設定する" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1423,58 +1426,58 @@ msgstr "" "これらの変数を変更することはできません。root でログインするか、データベース管" "理者に連絡してください。" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "設定の変更" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "現在の設定" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "グラフの題名" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "差分値" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "除数 %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "単位" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "スロークエリログより" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "一般クエリログより" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "ログの解析中" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" "ログの解析および読み込みを行っています。少し時間がかかることがあります。" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "キャンセル" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1484,7 +1487,7 @@ msgstr "" "クエリをグループの基準として使用しています。そのため、開始時刻いったような属" "性は、他クエリでは異なる場合があります。" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1494,31 +1497,31 @@ msgstr "" "INSERT クエリは挿入されたデータ部は同一のようにみなされて、グループ化が行われ" "ます。" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "ログデータを読み込みました。この期間に行われたクエリは以下の通りです。" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "ログの表に移動する" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "データが存在しません" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "ログの解析を行いましたが、この期間のデータは見つかりませんでした。" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "解析しています…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "EXPLAIN の結果" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1526,7 +1529,7 @@ msgstr "EXPLAIN の結果" msgid "Status" msgstr "状態" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1536,59 +1539,59 @@ msgstr "状態" msgid "Time" msgstr "時間" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "合計時間:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "プロファイリングの結果" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "表" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "グラフ" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "ログの表のフィルタオプション" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "フィルタ" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "単語/正規表現でクエリを絞る:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "WHERE 節内のデータ部(文字列や数値など)は同一として扱いクエリをまとめる" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "グループ後の行数:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "合計:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "ログの読み込み" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "モニタの再描画に失敗しました" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1598,26 +1601,26 @@ msgstr "" "期限切れであるなら、これは正常な動作です。ページを再読み込みしてください。認" "証はやり直す必要があるかもしれません。" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "ページの再読み込み" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "変更された行:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "設定ファイルの構文解析に失敗しました。有効な JSON コードではないようです。" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "インポートした設定でのグラフの配置に失敗しました。設定をデフォルトに戻します…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1626,63 +1629,63 @@ msgstr "" msgid "Import" msgstr "インポート" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "モニタ環境設定のインポート" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "インポートするファイルを選択してください。" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "クエリを解析する" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "アドバイザ・システム" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "パフォーマンス的に検討が推奨される事象" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "事象" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "推奨設定" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "事象の詳細と判断理由" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "判断理由" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "判断値の算出方法" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "判断基準" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "パラメータが見つかりませんでした!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1694,68 +1697,68 @@ msgstr "パラメータが見つかりませんでした!" msgid "Cancel" msgstr "キャンセル" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "設定の変更" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "適用" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "読み込み中…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "リクエストを中止しました!!" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "要求を処理しています" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "リクエストは失敗しました!!" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Error in processing request" msgid "Error in processing request" msgstr "要求処理中でのエラー" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "エラーコード:%s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "エラーテキスト:%s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "データベースが選択されていません。" -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "カラムを削除しています" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "主キーを追加する" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1765,57 +1768,57 @@ msgstr "主キーを追加する" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "クリックすると、この通知を破棄します" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "データベースの名称を変更しています" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "データベースをコピーしています" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "文字セットを変更しています" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "外部キーのチェックを有効にする" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "ヘッダの取得に失敗しました。" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "検索しています" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "検索結果を隠す" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "検索結果を表示する" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "表示中" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "削除しています" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "ストアドファンクションの定義には、RETURN 文を含めなければなりません!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1831,46 +1834,46 @@ msgstr "ストアドファンクションの定義には、RETURN 文を含め msgid "Export" msgstr "エクスポート" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET エディタ" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "カラム %s に対しての値" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "新しいカラムに対しての値" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "個々の入力欄にそれぞれ値を入力してください" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "値 %d を追加する" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "注意:ファイルに複数のテーブルが含まれている場合、それらは1つに統合されま" "す。" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "クエリボックスを隠す" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "クエリボックスを表示" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1880,7 +1883,7 @@ msgstr "クエリボックスを表示" msgid "Edit" msgstr "編集" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1891,89 +1894,89 @@ msgstr "編集" msgid "Delete" msgstr "削除" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d は不正な行番号です。" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "参照されている値を表示する" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "変数 %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No column selected." msgid "Column selector" msgstr "カラムが選択されていません。" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "データベース内検索" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "もっと見る" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "この操作はいくつかのカラム定義を変更します。
本当に続けますか?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "続ける" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "主キーを追加する" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "主キーを追加しました。" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "追跡レポート" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -1981,90 +1984,90 @@ msgstr "" msgid "End of step" msgstr "改行コード" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "決定" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "データベースが選択されていません。" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "次のクエリが実行されます:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "テーブルに特権を追加" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "データベースが選択されていません。" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2074,161 +2077,161 @@ msgstr "データベースが選択されていません。" msgid "Save" msgstr "保存する" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "検索条件を隠す" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "検索条件を表示する" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "テーブル検索" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "カラム名: " -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "カラム名: " -#: js/messages.php:477 +#: js/messages.php:479 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "テーブルの最大数" -#: js/messages.php:478 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "テーブルの最大数" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "検索と置換の条件を隠す" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "検索と置換の条件を表示" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "プロット点は、それぞれの行のデータを表します。" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "プロット点にマウスカーソルを重ねると、そのラベルが表示されます。" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "拡大するには、マウスでグラフ内を範囲選択してください。" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "「Reset zoom」ボタンをクリックすることで元の状態に戻せます。" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "プロット点をクリックすることで、行のデータの閲覧と編集が可能です。" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "グラフの右下をドラッグすることで、大きさの調整が行えます。" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "カラムを 2 つ選択してください" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "異なるカラムを 2 つ選択してください" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "プロット点におけるデータ内容" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "無視" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "コピー" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "座標" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "線分" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "ポリゴン" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "幾何データ" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "内輪" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "外枠:" -#: js/messages.php:520 +#: js/messages.php:522 #, fuzzy #| msgid "Do you want to import remaining settings?" msgid "Do you want to copy encryption key?" msgstr "暗号化キーをコピーしますか?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "参照されているキーを選択" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "外部キーを選択してください" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "主キーまたはユニークキーを選択してください!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "表示するカラムの選択" -#: js/messages.php:536 +#: js/messages.php:538 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?" @@ -2236,93 +2239,93 @@ msgstr "" "レイアウトの変更を保存していません。保存しないと失われてしまいます。このまま" "続行しますか?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "ページ名" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "ページを選択してください" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "単位" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "編集するページを選択してください" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "有効なポート番号ではありません" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "リレーショナルスキーマをエクスポートする" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "修正を保存しました" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "カラム「\"%s\"」に対するオプションを追加する。" -#: js/messages.php:555 +#: js/messages.php:557 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%d object(s) created." msgstr "%1$d 行変更しました。" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "実行する" -#: js/messages.php:559 +#: js/messages.php:561 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "ESC キーで編集キャンセル" -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2330,49 +2333,49 @@ msgstr "" "データの一部を変更しましたが保存していません。データを保存せずにこのページか" "ら移動してもよろしいですか?" -#: js/messages.php:564 +#: js/messages.php:566 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "ドラッグでカラムの入れ替え" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "クリックでカラムを反転/解除" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "ダブルクリックでカラム名をコピー。" -#: js/messages.php:574 +#: js/messages.php:576 #, 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "すべて表示" -#: js/messages.php:578 +#: js/messages.php:580 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2381,127 +2384,127 @@ msgstr "" "ボックス、編集、コピー、削除のリンクに関連する機能は、保存後に動作しない場合" "があります。" -#: js/messages.php:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "元の位置" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "キャンセル" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "中断" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "インポートのデフォルト" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "ログファイルの閾値" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "最初にデータベースを選択してください" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "印刷" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "ほとんどの値は、直接ダブルクリック
することでも、編集できます。" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "ほとんどの値は、直接クリック
することでも、編集できます。" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "リンク先へ移動する:" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "カラム名のコピー。" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "右クリックでカラム名をクリップボードにコピーしてください。" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "パスワードを生成する" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "生成する" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "その他" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "パネルを表示" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "パネルを隠す" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "左のフレーム内にロゴを表示します。" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "メインフレームの詳細設定" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "メインフレームの詳細設定" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "リクエストされたページが履歴にありません。おそらく有効期限切れです。" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2511,122 +2514,122 @@ msgstr "" "します。最新バージョンは %s で、%s にリリースされています。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", 最終安定バージョン:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "最新版" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "ビューを作成する" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "サーバのポート" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "エラー報告を送信" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "JavaScript の致命的なエラーが発生しました。エラー報告を送信しますか?" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "報告の設定の変更" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "報告の詳細を表示" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "全て無視" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "このクエリをもう一度実行しますか?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "このブックマークを本当に削除しますか?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "実行されたクエリ" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "テーブルのコメント" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "検索結果を隠す" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2635,385 +2638,385 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "データベースのコピー先" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix" msgid "Add table prefix" msgstr "テーブル接頭辞の追加" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "テーブル名の接頭辞を付け替える" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "接頭辞を付け替えてテーブルをコピーする" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "前月" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "翌月" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "今日" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "1 月" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "2 月" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "3 月" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "4 月" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "5 月" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "6 月" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "7 月" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "8 月" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "9 月" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "10 月" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "11 月" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "12 月" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "1 月" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "2 月" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "3 月" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "4 月" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "5 月" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "6 月" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "7 月" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "8 月" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "9 月" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "10 月" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "11 月" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "12 月" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "日" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "月" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "火" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "水" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "木" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "金" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "土" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "日" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "月" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "火" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "水" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "木" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "金" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "土" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "月" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "火" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "水" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "木" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "金" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "土" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "年" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "時" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "分" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "秒" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "テキスト入力項目の値を利用する" -#: js/messages.php:886 +#: js/messages.php:888 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "有効なポート番号ではありません" -#: js/messages.php:887 +#: js/messages.php:889 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "有効なポート番号を入力してください!" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "有効なポート番号ではありません" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "有効なポート番号ではありません" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "有効なポート番号を入力してください!" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "有効なポート番号を入力してください!" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "正しい長さを入力してください!" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "有効なポート番号ではありません" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "有効なポート番号ではありません" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "有効なポート番号ではありません" -#: js/messages.php:925 +#: js/messages.php:927 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "正しい長さを入力してください!" -#: js/messages.php:930 +#: js/messages.php:932 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "有効なポート番号ではありません" -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "有効なポート番号ではありません" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "有効なポート番号を入力してください!" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "エラー" @@ -3064,36 +3067,36 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" "予期しない文字 (行: %1$s)。タブ文字があるべきところに \"%2$s\" がありました。" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "設定ファイル (%s) は存在しますが、読み込むことができません。" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "設定ファイルのパーミッションが正しくありません。誰でも書き込み可能になってい" "ます!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "フォントサイズ" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "subquery" msgid "Requery" msgstr "サブクエリ" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3112,92 +3115,73 @@ msgid "Database" msgstr "データベース" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Delete relation" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "リレーションを削除" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "共有" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "ブックマークを削除しました。" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "リレーションを削除" -#: libraries/Console.php:186 +#: libraries/Console.php:168 #, fuzzy #| msgid "Skip current error" msgid "During current session" msgstr "現在のエラーをスキップする" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "EXPLAIN で確認" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "プロファイリング" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "ブックマーク" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query cache" msgid "Query failed" msgstr "クエリキャッシュ" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "Query execution time" msgid "Queried time" msgstr "クエリの実行時間" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "SQL クエリボックス" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "クリア" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "SQL 履歴" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3215,183 +3199,183 @@ msgstr "SQL 履歴" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "オプション" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Bookmark table" msgid "Bookmarks" msgstr "ブックマークテーブル" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "SQL のデバッグ" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute every" msgid "Press Ctrl+Enter to execute query" msgstr "実行間隔" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute every" msgid "Press Enter to execute query" msgstr "実行間隔" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "昇順" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "降順" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Other" msgid "Order:" msgstr "その他" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "カラム" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute every" msgid "Execution order" msgstr "実行間隔" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Other" msgid "Order by:" msgstr "その他" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "SQL クエリ" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "SQL クエリ" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "色表示" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide Panel" msgid "Hide trace" msgstr "パネルを隠す" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "カラム" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "再描画" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "および" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Delete relation" msgid "Add bookmark" msgstr "リレーションを削除" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "ラベル" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "対象先のデータベース" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Delete relation" msgid "Share this bookmark" msgstr "リレーションを削除" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Reset to default" msgid "Set default" msgstr "デフォルトに戻す" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "SQL query history table" msgid "Show query history at start" msgstr "SQL クエリ履歴テーブル" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "コピーしたテーブルに切り替える" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "設定ファイルの読み込みに失敗しました" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3399,20 +3383,20 @@ msgstr "" "サーバが応答しません (あるいはローカルサーバのソケットが正しく設定されていま" "せん)。" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "サーバが応答しません。" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" "データベースを含んでいるディレクトリのパーミッションを確認してください。" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "詳細…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "設定ファイルに定義されている管理ユーザ(controluser)での接続に失敗しました。" @@ -3760,7 +3744,7 @@ msgstr "正確な数字とは限りません。[doc@faq3-11]FAQ 3.11[/doc] を #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3894,7 +3878,7 @@ msgstr "拡張によりファイルのアップロードが中断されました msgid "Unknown error in file upload." msgstr "ファイルのアップロード中に予期しないエラーが発生しました。" -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -3902,11 +3886,11 @@ msgstr "" "アップロードされたファイルの移動に失敗しました。[doc@faq1-11]FAQ 1.11[/doc] " "をご覧ください。" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "アップロードされたファイルを移動中にエラーが発生しました。" -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -3976,8 +3960,8 @@ msgid "Keyname" msgstr "キー名" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4027,13 +4011,13 @@ msgstr "インデックス %s を削除しました。" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "削除" @@ -4133,7 +4117,7 @@ msgstr "特権" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "操作" @@ -4148,7 +4132,7 @@ msgstr "SQL コマンドの追跡" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4555,11 +4539,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "テーマ %s の画像パスが無効です!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "プレビューは利用できません。" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "これにする" @@ -4869,23 +4853,23 @@ msgctxt "spatial types" msgid "Spatial" msgstr "空間データ" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "最長: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "統計データ" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4896,38 +4880,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL のメッセージ: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "EXPLAIN で確認" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "SQL の EXPLAIN 解析をスキップ" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP コードを省略" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "クエリを実行する" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP コードの作成" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -5019,6 +5003,10 @@ msgstr "/ 時" msgid "per day" msgstr "/ 日" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "共有" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "検索:" @@ -5135,13 +5123,13 @@ msgstr "カラムを追加する" msgid "Attributes" msgstr "属性" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to read configuration file!" msgstr "設定ファイルの読み込みに失敗しました" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -5149,32 +5137,32 @@ msgstr "" "通常、これは構文エラーがあることを意味します。以下に示す全てのエラーを確認し" "てください。" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "デフォルトの設定を読み込めませんでした: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "サーバのインデックスが不正です: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "サーバ %1$s のホスト名が不正です。設定を確認してください。" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "サーバ" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "設定ファイルに無効な認証方法が指定されています:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5182,24 +5170,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s を %s 以降にアップグレードしてください。" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS 変数が書き換えられている可能性があります" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "なんらかの攻撃をされている可能性があります" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "グローバル変数から数値キーが検出されました" @@ -6051,7 +6039,7 @@ msgstr "1 行目にカラム名を追加する" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Columns enclosed with:" msgid "Columns enclosed with" @@ -6059,7 +6047,7 @@ msgstr "カラム囲み記号:" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Columns escaped with:" msgid "Columns escaped with" @@ -6079,12 +6067,12 @@ msgstr "カラムに含まれている CRLF 文字を取り除く" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "カラムの終端記号" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated with:" msgid "Lines terminated with" @@ -6758,7 +6746,7 @@ msgid "Column names in first row" msgstr "1 行目にカラム名を追加する" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "空の行はインポートしない" @@ -8643,7 +8631,7 @@ msgid "Table %s has been emptied." msgstr "テーブル %s を空にしました。" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8781,8 +8769,8 @@ msgid "No data to display" msgstr "データが存在しません" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8829,53 +8817,53 @@ msgstr[0] "" msgid "No column selected." msgstr "カラムが選択されていません。" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "カラムは正常に移動されました。" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "クエリエラー" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "変更" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "インデックス" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "空間" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "全文" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "件数集計" @@ -8885,7 +8873,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s 拡張がありません。PHP の設定をチェックしてみてください。" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "変更なし" @@ -9732,19 +9720,19 @@ msgstr "返り値が空でした (行数 0)。" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "以下に示す構成が、作成もしくは変更されました。ここで次のことが行えます。" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 #, 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:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9753,42 +9741,42 @@ msgid "" msgstr "" "「オプション」のリンクをクリックすることで対応する設定の変更が行えます。" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 #, fuzzy #| msgid "Edit structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "名前の後ろにある「構造」のリンクより構造の編集が行えます。" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "データベース %s に移動" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "%s に対する設定の変更を行います" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "テーブル %s に移動" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s の構造" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "ビュー %s に移動" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9838,48 +9826,48 @@ msgstr "または" msgid "web server upload directory:" msgstr "ウェブサーバ上のアップロードディレクトリ" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "編集/挿入" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "%s 行づつ挿入を行う" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "続いて" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "新しい行として挿入する" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "新しい行として挿入し、エラーは無視する" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "挿入クエリ文を表示する" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "前のページに戻る" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "新しいレコードを追加する" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "このページに戻る" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "次の行を編集する" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9889,7 +9877,7 @@ msgstr "" "次の値に移動するときは TAB キーを使ってください。CTRL+カーソルキーを使うと自" "由に移動できます" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9901,11 +9889,11 @@ msgstr "" msgid "Value" msgstr "値" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "SQL クエリを表示" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "id %1$d の行を挿入しました" @@ -10802,7 +10790,7 @@ msgstr "テーブルを修復する" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "データまたはテーブルの削除" @@ -10815,32 +10803,32 @@ msgid "Delete the table (DROP)" msgstr "テーブルを削除する (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "分析" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "確認" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "最適化" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "再構築" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "修復" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10868,37 +10856,37 @@ msgstr "パーティションを削除" msgid "Check referential integrity:" msgstr "参照整合性の確認:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "同じテーブルには移動できません!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "同じテーブルにはコピーできません!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "テーブル %s を %s に移動しました。" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "テーブル %s を %s にコピーしました。" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "テーブル名が空です!" @@ -11079,7 +11067,7 @@ msgstr "データのダンプオプション" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "テーブルのデータのダンプ" @@ -11103,21 +11091,21 @@ msgstr "定義" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "テーブルの構造" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "ビュー用の構造" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "ビュー用の代替構造" @@ -11223,7 +11211,7 @@ msgid "Database:" msgstr "データベース" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11334,7 +11322,7 @@ msgid "Data creation options" msgstr "生成オプション" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "挿入前にテーブルを空にする" @@ -11418,7 +11406,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11464,61 +11452,61 @@ msgstr "使用中" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "ダンプしたテーブルの制約" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "テーブルの制約" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "ダンプしたテーブルの制約" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "検索するテーブル:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "値がゼロのものに対して AUTO_INCREMENT を使用しない" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT 値を追加する" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "テーブルに含まれている MIME タイプ" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "テーブルのリレーション" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "ビュー用の構造" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "データ読み込みエラー:" @@ -11552,7 +11540,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11575,15 +11563,15 @@ msgstr "" msgid "Column names: " msgstr "カラム名: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV インポートのパラメータが不正です: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -11592,18 +11580,18 @@ msgstr "" "指定されたカラム (%s) は無効です。カラム名のスペルが正しいか、カンマで区切ら" "れていないか、引用符で囲まれていないかを確認してください。" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "CSV 入力の書式が不正です (行: %d)。" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "CSV 入力のカラム数が不正です (行: %d)。" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "このプラグインでは圧縮されたファイルのインポートはできません!" @@ -11611,23 +11599,23 @@ msgstr "このプラグインでは圧縮されたファイルのインポート msgid "MediaWiki Table" msgstr "MediaWiki テーブル" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." msgstr "CSV 入力の書式が不正です (行: %d)。" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "パーセントは適切な小数に変換する (例:12.00% を .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "金額は単位を取り除く (例:$5.00 を 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -11635,7 +11623,7 @@ msgstr "" "指定された XML ファイルは、不完全もしくはフォーマットが正しくありません。問題" "を修正して再度試してみてください。" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11645,12 +11633,12 @@ msgstr "Open Document スプレッドシート" msgid "ESRI Shape File" msgstr "ESRI シェープファイル" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "ESRI シェープファイルをインポート中にエラーがありました: \"%s\"。" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 #, fuzzy #| msgid "" #| "You tried to import an invalid file or the imported file contains invalid " @@ -11662,12 +11650,12 @@ msgstr "" "無効なファイルもしくは無効なデータが含まれているファイルをインポートしようと" "しました。" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL の空間拡張が ESRI タイプをサポートしていません: \"%s\"。" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "The imported file does not contain any data" msgid "The imported file does not contain any data!" @@ -11681,7 +11669,7 @@ msgstr "SQL 互換モード:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "値がゼロのものに対して AUTO_INCREMENT を使用しない" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14842,15 +14830,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14865,17 +14849,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14897,23 +14882,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "開いているテーブルの数。" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "開いているテーブルの数。" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14946,17 +14931,17 @@ msgstr "イベント %1$s を作成しました。" msgid "Variable name was expected." msgstr "テーブル名のテンプレート" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "テーブルの先頭" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14979,19 +14964,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "行を削除しました" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15726,7 +15711,7 @@ msgstr "テーブルのダンプ (スキーマ) 表示" msgid "Invalid table name" msgstr "テーブル名が不正です" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16799,7 +16784,7 @@ msgid "at beginning of table" msgstr "テーブルの先頭" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16848,7 +16833,7 @@ msgstr "パーティション有り" msgid "Edit partitioning" msgstr "パーティションを削除" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "ビューを編集する" @@ -16975,11 +16960,11 @@ msgstr "ビューの名前" msgid "Column names" msgstr "カラム名" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "変更後のビュー名称" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Delete the table (DROP)" msgid "Delete the view (DROP)" @@ -18348,6 +18333,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert は 0 に設定されています" +#, fuzzy +#~| msgid "Delete relation" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "リレーションを削除" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "ブックマークを削除しました。" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/ka.po b/po/ka.po index 719c3df8db..7a380c5ada 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Georgian " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "ფაილის სახის შენახვა" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "დაბრუნება" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "ყველას მონიშნვა" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "ერთი სიტყვა მაინც" -#: js/messages.php:118 +#: js/messages.php:120 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number!" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:119 +#: js/messages.php:121 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid length!" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "ახალი ველის დამატება" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "რედაქტირების რეჟიმი" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" msgstr "%s ველის დამატება" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Create relation" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Create relation" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Fields enclosed by" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %s field(s)" msgid "Please select column(s) for the index." msgstr "%s ველის დამატება" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "You have to add at least one field." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "მოთხოვნაში" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Start" msgid "Matched rows:" msgstr "Startup" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL მოთხოვნა" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "მნიშვნელობა" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "ჰოსტის სახელის ველი ცარიელია!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "მომხმარებლის სახელის ველი ცარიელია!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "პაროლის ველი ცარიელია!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "პაროლებში შეუსაბამობაა!" -#: js/messages.php:148 +#: js/messages.php:150 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Remove selected users" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy msgid "Template was created." msgstr "Table %1$s has been created." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "პროფილი განახლდა." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "სტრიქონი წაიშალა" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "კავშირები" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Local monitor configuration incompatible!" msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1253,181 +1255,181 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Query cache" -#: js/messages.php:177 +#: js/messages.php:179 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Query cache" -#: js/messages.php:178 +#: js/messages.php:180 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Query cache" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "გამოყენება" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "Log file count" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Buffer Pool" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "სულ" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "ადგილის გამოყენება" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "Free pages" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "მიღებულია" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "კავშირები" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "პროცესები" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s table(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 #, fuzzy msgid "Questions" msgstr "სპარსული" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "ტრაფიკი" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "General relation features" -#: js/messages.php:215 +#: js/messages.php:217 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Snap to grid" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1439,47 +1441,47 @@ msgstr "" msgid "None" msgstr "არაა" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1487,157 +1489,157 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "ფაილის სახის შენახვა" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "ჩართულია" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "გათიშვა" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "მოთხოვნას დასჭირდა %01.4f წმ" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 #, fuzzy #| msgid "Other core settings" msgid "Change settings" msgstr "Other core settings" -#: js/messages.php:254 +#: js/messages.php:256 #, fuzzy #| msgid "Other core settings" msgid "Current settings" msgstr "Other core settings" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Report title" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 #, fuzzy #| msgid "Load" msgid "Analysing logs" msgstr "ჩატვირთვა" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "მოთხოვნების წაკითხვა" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 #, fuzzy msgid "Jump to Log table" msgstr "მონაცემთა ბაზები არაა" -#: js/messages.php:285 +#: js/messages.php:287 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "მონაცემთა ბაზები არაა" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Analyze" -#: js/messages.php:290 +#: js/messages.php:292 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "SQL-ის ახსნა" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1645,7 +1647,7 @@ msgstr "SQL-ის ახსნა" msgid "Status" msgstr "სტატუსი" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1655,100 +1657,100 @@ msgstr "სტატუსი" msgid "Time" msgstr "დრო" -#: js/messages.php:293 +#: js/messages.php:295 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "სულ" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Profiling" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "ცხრილი" -#: js/messages.php:296 +#: js/messages.php:298 #, fuzzy msgid "Chart" msgstr "სიმბოლოთა ნაკრებები" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 #, fuzzy #| msgid "Tables display options" msgid "Log table filter options" msgstr "ცხრილების ჩვენების პარამეტრები" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 #, fuzzy msgid "Filter" msgstr "ფაილები" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 #, fuzzy #| msgid "Number of inserted rows" msgid "Sum of grouped rows:" msgstr "ჩასმული სტრიქონების რაოდენობა" -#: js/messages.php:306 +#: js/messages.php:308 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "სულ" -#: js/messages.php:308 +#: js/messages.php:310 #, fuzzy #| msgid "Load" msgid "Loading logs" msgstr "ჩატვირთვა" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "გადატვირთვა" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1757,75 +1759,75 @@ msgstr "" msgid "Import" msgstr "შემოტანა" -#: js/messages.php:326 +#: js/messages.php:328 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "Could not load default configuration from: \"%1$s\"" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "მოთხოვნის განახლება" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "დოკუმენტაცია" -#: js/messages.php:339 +#: js/messages.php:341 #, fuzzy #| msgid "Details…" msgid "Rule details" msgstr "დეტალები…" -#: js/messages.php:340 +#: js/messages.php:342 #, fuzzy #| msgid "Customization" msgid "Justification" msgstr "Customization" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "შეუსაბამობაა პარამეტრებში!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1837,74 +1839,74 @@ msgstr "შეუსაბამობაა პარამეტრებშ msgid "Cancel" msgstr "გაუქმება" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Other core settings" msgid "Page-related settings" msgstr "Other core settings" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy #| msgid "Load" msgid "Loading…" msgstr "ჩატვირთვა" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "პროცესები" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Query cache" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "პროცესები" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Inside column:" msgid "Dropping column" msgstr "სვეტში:" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "%s ველის დამატება" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1914,74 +1916,74 @@ msgstr "%s ველის დამატება" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Rename database to" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Copy database to" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "სიმბოლოთა ნაკრები" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Disable foreign key checks" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy msgid "Failed to get real row count." msgstr "Failed to write file to disk." -#: js/messages.php:383 +#: js/messages.php:385 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "ძებნა" -#: js/messages.php:384 +#: js/messages.php:386 #, fuzzy #| msgid "SQL Query box" msgid "Hide search results" msgstr "SQL Query box" -#: js/messages.php:385 +#: js/messages.php:387 #, fuzzy #| msgid "SQL Query box" msgid "Show search results" msgstr "SQL Query box" -#: js/messages.php:386 +#: js/messages.php:388 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "არჩევა" -#: js/messages.php:387 +#: js/messages.php:389 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "%s-ის წაშლა" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1997,49 +1999,49 @@ msgstr "" msgid "Export" msgstr "ექსპორტი" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "ველების რაოდენობა სვეტებისათვის %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, fuzzy, php-format #| msgid "Add a new server" msgid "Add %d value(s)" msgstr "ახალი სერვერის დამატება" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 #, fuzzy #| msgid "SQL Query box" msgid "Hide query box" msgstr "SQL Query box" -#: js/messages.php:408 +#: js/messages.php:410 #, fuzzy #| msgid "SQL Query box" msgid "Show query box" msgstr "SQL Query box" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -2049,7 +2051,7 @@ msgstr "SQL Query box" msgid "Edit" msgstr "რედაქტირება" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -2060,92 +2062,92 @@ msgstr "რედაქტირება" msgid "Delete" msgstr "წაშლა" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "ცვლადი" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "Column names" msgid "Column selector" msgstr "სვეტების სახელები" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "მონაცემთა ბაზაში ძებნა" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "ატრიბუტები" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "შეცვლა" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2153,86 +2155,86 @@ msgstr "" msgid "End of step" msgstr "სტრიქონის დასასრული" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "შემოწირულობა" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "პრივილეგიების დამატება შემდეგი ცხრილისათვის" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2242,197 +2244,197 @@ msgstr "" msgid "Save" msgstr "შენახვა" -#: js/messages.php:472 +#: js/messages.php:474 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "SQL Query box" -#: js/messages.php:473 +#: js/messages.php:475 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "SQL Query box" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "ძებნა" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "სვეტების სახელები" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "სვეტების სახელები" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy #| msgid "SQL Query box" msgid "Hide find and replace criteria" msgstr "SQL Query box" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy #| msgid "SQL Query box" msgid "Show find and replace criteria" msgstr "SQL Query box" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "ველის სვეტების დამატება/წაშლა" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Data pointer size" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "იგნორირება" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "ასლი" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Lines terminated by" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Add an inner ring" msgid "Inner ring" msgstr "შიდა ქსელის დამატება" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Lines terminated by" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "გვერდის ნომერი:" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2440,242 +2442,242 @@ msgstr "ყველას მონიშნვა" msgid "Open page" msgstr "pages" -#: js/messages.php:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "ყველას მონიშნვა" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "გთხოვთ აირჩიოთ დასარედაქტირებელი გვერდი" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Relational schema" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "ცვლილებები შენახულია" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Values for column %s" msgid "Add an option for column \"%s\"." msgstr "ველების რაოდენობა სვეტებისათვის %s" -#: js/messages.php:555 +#: js/messages.php:557 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%d object(s) created." msgstr "%1$d row(s) affected." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Submit" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "სვეტების სახელები" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "ყველაფრის ჩვენება" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "საწყისი მდებარეობა" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "გაუქმება" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "შეწყვეტილია" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "ფაილების შემოტანა" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "ცხრილების არჩევა" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "დაბეჭდვა" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy msgid "Go to link:" msgstr "მონაცემთა ბაზები არაა" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "სვეტების სახელები" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "პაროლის დაგენერირება" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "დაგენერირება" -#: js/messages.php:628 +#: js/messages.php:630 #, fuzzy #| msgid "Mon" msgid "More" msgstr "ორშ" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "ყველაფრის ჩვენება" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "ახალი ველის დამატება" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Customize export options" msgid "Link with main panel" msgstr "Customize export options" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize export options" msgid "Unlink from main panel" msgstr "Customize export options" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2683,126 +2685,126 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "უკანასკნელ ვერსიაზე შემოწმება" -#: js/messages.php:648 +#: js/messages.php:650 #, fuzzy msgid "up to date" msgstr "მონაცემთა ბაზები არაა" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy msgid "Create view" msgstr "Create relation" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "სერვერის პორტი" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "სერვერის პორტი" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Other core settings" msgid "Change report settings" msgstr "Other core settings" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Report title" msgid "Show report details" msgstr "Report title" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "იგნორირება" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy msgid "Execute this query again?" msgstr "SQL მოთხოვნები" -#: js/messages.php:700 +#: js/messages.php:702 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "ნამდვილად გსურთ " -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "ცხრილის კომენტარები" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "SQL Query box" msgid "Hide arguments" msgstr "SQL Query box" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2811,38 +2813,38 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Copy database to" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "ახალი ველის დამატება" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Replace table data with file" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Replace table data with file" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "წინა" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2850,96 +2852,96 @@ msgid "Next" msgstr "შემდეგი" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 #, fuzzy #| msgid "Total" msgid "Today" msgstr "სულ" -#: js/messages.php:755 +#: js/messages.php:757 #, fuzzy #| msgid "Binary" msgid "January" msgstr "ბინარული" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 #, fuzzy #| msgid "Mar" msgid "March" msgstr "მარ" -#: js/messages.php:758 +#: js/messages.php:760 #, fuzzy #| msgid "Apr" msgid "April" msgstr "აპრ" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "მაი" -#: js/messages.php:760 +#: js/messages.php:762 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ივნ" -#: js/messages.php:761 +#: js/messages.php:763 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ივლ" -#: js/messages.php:762 +#: js/messages.php:764 #, fuzzy #| msgid "Aug" msgid "August" msgstr "აგვ" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ოქტ" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "იან" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "თებ" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "მარ" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "აპრ" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2947,78 +2949,78 @@ msgid "May" msgstr "მაი" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "ივნ" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "ივლ" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "აგვ" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "სექ" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "ოქტ" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "ნოე" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "დეკ" -#: js/messages.php:801 +#: js/messages.php:803 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "კვი" -#: js/messages.php:802 +#: js/messages.php:804 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "ორშ" -#: js/messages.php:803 +#: js/messages.php:805 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "სამ" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "პარ" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3026,86 +3028,86 @@ msgid "Sun" msgstr "კვი" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "ორშ" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "სამ" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "ოთხ" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "ხუთ" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "პარ" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "შაბ" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "კვი" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "ორშ" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "სამ" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 #, fuzzy #| msgid "Wed" msgid "We" msgstr "ოთხ" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "ხუთ" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "პარ" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "შაბ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3114,139 +3116,139 @@ msgstr "ვიკი" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "არაა" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in use" -#: js/messages.php:873 +#: js/messages.php:875 #, fuzzy #| msgid "per second" msgid "Second" msgstr "წამში" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "გამოიყენე ტექსტური ველი" -#: js/messages.php:886 +#: js/messages.php:888 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:887 +#: js/messages.php:889 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:925 +#: js/messages.php:927 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:930 +#: js/messages.php:932 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "შეცდომა" @@ -3297,34 +3299,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "შრიფტის ზომა" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "in query" msgid "Requery" msgstr "მოთხოვნაში" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3343,91 +3345,73 @@ msgid "Database" msgstr "მონაცემთა ბაზა" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Search" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "ძებნა" - -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 #, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "ძებნა" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "SQL-ის ახსნა" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profiling" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Bookmark table" msgid "Bookmark" msgstr "ცხრილის ჩანიშვნა" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query cache" msgid "Query failed" msgstr "Query cache" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "Maximum execution time" msgid "Queried time" msgstr "Maximum execution time" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy #| msgid "SQL query" msgid "SQL Query Console" msgstr "SQL მოთხოვნა" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "გაწმენდა" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "SQL history" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3445,178 +3429,178 @@ msgstr "SQL history" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "პარამეტრები" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Bookmark table" msgid "Bookmarks" msgstr "ცხრილის ჩანიშვნა" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Ctrl+Enter to execute query" msgstr "ჩანიშნული მოთხოვნის გაშვება" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Enter to execute query" msgstr "ჩანიშნული მოთხოვნის გაშვება" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "ზრდადობით" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "კლებადობით" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "სვეტები" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execution order" msgstr "ჩანიშნული მოთხოვნის გაშვება" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "SQL მოთხოვნები" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "SQL მოთხოვნები" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "ფერის ჩვენება" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Add new field" msgid "Hide trace" msgstr "ახალი ველის დამატება" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "სვეტები" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "განახლება" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "და" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Search" msgid "Add bookmark" msgstr "ძებნა" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "Label" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy msgid "Target database" msgstr "მონაცემთა ბაზაში ძებნა" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Search" msgid "Share this bookmark" msgstr "ძებნა" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Restore default value" msgid "Set default" msgstr "Restore default value" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "Flush query cache" msgid "Show query history at start" msgstr "Flush query cache" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Failed to set configured collation connection!" msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3624,21 +3608,21 @@ msgid "" "configured)." msgstr "(or the local MySQL server's socket is not correctly configured)" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "სერვერი არ პასუხობს" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "დეტალები…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -4012,7 +3996,7 @@ msgstr "შეიძლება იყოს მიახლოებითი. #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "%s databases have been dropped successfully." msgid "Your SQL query has been executed successfully." @@ -4143,17 +4127,17 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "შეიძლება იყოს მიახლოებითი. იხილეთ [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4219,8 +4203,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4270,13 +4254,13 @@ msgstr "" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -4374,7 +4358,7 @@ msgstr "პრივილეგიები" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "მოქმედებები" @@ -4389,7 +4373,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4805,11 +4789,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -5078,21 +5062,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Log file count" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "მაქს: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5103,38 +5087,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL-მა თქვა: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL-ის ახსნა" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP კოდის გარეშე" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "მოთხოვნის გაგზავნა" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP კოდის შექმნა" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5231,6 +5215,10 @@ msgstr "საათში" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5351,46 +5339,46 @@ msgstr "%s ველის დამატება" msgid "Attributes" msgstr "ატრიბუტები" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Failed to read configuration file!" msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Could not load default configuration from: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Invalid server index: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "სერვერი" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5398,24 +5386,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6231,7 +6219,7 @@ msgstr "Put fields names in the first row" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6239,7 +6227,7 @@ msgstr "Fields enclosed by" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6261,14 +6249,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Lines terminated by" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6916,7 +6904,7 @@ msgid "Column names in first row" msgstr "Put fields names in the first row" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -8549,7 +8537,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "Field %s has been dropped." msgid "View %s has been dropped." @@ -8689,8 +8677,8 @@ msgid "No data to display" msgstr "მონაცემთა ბაზები არაა" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8735,57 +8723,57 @@ msgstr[0] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Ignore errors" msgid "Query error" msgstr "შეცდომების იგნორირება" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "შეცვლა" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "ინდექსი" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Fulltext" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Session value" msgid "Distinct values" @@ -8797,7 +8785,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "ცვლილების გარეშე" @@ -9611,57 +9599,57 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "მონაცემთა ბაზები არაა" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Missing data for %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "მონაცემთა ბაზები არაა" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "მხოლოდ სტრუქტურა" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Export defaults" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9712,57 +9700,57 @@ msgstr "ან" msgid "web server upload directory:" msgstr "web server upload directory" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "ჩასმა" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, 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:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "და შემდეგ" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "ახალი სტრიქონის ჩამატება" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 #, fuzzy msgid "Show insert query" msgstr "Showing SQL query" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "წინა გვერდზე დაბრუნება" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "სხვა ახალი სტრიქონის დამატება" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "ამ გვერდზე დაბრუნება" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "შემდეგი სტრიქონის რედაქტირება" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9774,11 +9762,11 @@ msgstr "" msgid "Value" msgstr "მნიშვნელობა" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "ჩამატებული სტრიქონის id: %1$d" @@ -10666,7 +10654,7 @@ msgstr "ცხრილის აღდგენა" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10681,32 +10669,32 @@ msgid "Delete the table (DROP)" msgstr "მაგიდების წაშლა (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "შემოწმება" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "ოპტიმიზება" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "აღდგენა" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10734,37 +10722,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "ცხრილის სახელი ცარიელია!" @@ -10955,7 +10943,7 @@ msgstr "მონაცემთა ბაზის ჩვენების პ #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10981,21 +10969,21 @@ msgstr "აღწერილობა" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "სტრუქტურა ხედისათვის" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -11113,7 +11101,7 @@ msgid "Database:" msgstr "მონაცემთა ბაზა" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11228,7 +11216,7 @@ msgid "Data creation options" msgstr "გარდაქმნის პარამეტრები" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11297,7 +11285,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11347,61 +11335,61 @@ msgstr "" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "ცხრილ(ებ)ში:" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "ცხრილ(ებ)ში:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Add AUTO_INCREMENT value" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Add AUTO_INCREMENT value" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "სტრუქტურა ხედისათვის" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11438,7 +11426,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11458,34 +11446,34 @@ msgstr "" msgid "Column names: " msgstr "სვეტების სახელები" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Invalid field count in CSV input on line %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11493,29 +11481,29 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." msgstr "Invalid field count in CSV input on line %d." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11525,23 +11513,23 @@ msgstr "Open Document Spreadsheet" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -11557,7 +11545,7 @@ msgstr "SQL compatibility mode" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14630,15 +14618,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "Remove selected users" @@ -14653,17 +14637,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "Remove selected users" msgid "An alias was expected." @@ -14685,19 +14670,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14726,17 +14711,17 @@ msgstr "Table %1$s has been created." msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "ცხრილის დასაწყისში" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14757,17 +14742,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "სტრიქონი წაიშალა" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15493,7 +15478,7 @@ msgstr "" msgid "Invalid table name" msgstr "ცხრილის არასწორი სახელი" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16627,7 +16612,7 @@ msgid "at beginning of table" msgstr "ცხრილის დასაწყისში" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16676,7 +16661,7 @@ msgstr "დაყოფილი" msgid "Edit partitioning" msgstr "დაყოფილი" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16811,12 +16796,12 @@ msgstr "VIEW name" msgid "Column names" msgstr "სვეტების სახელები" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Rename table to" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Delete the table (DROP)" msgid "Delete the view (DROP)" @@ -18014,6 +17999,12 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "max. concurrent connections" +#, fuzzy +#~| msgid "Search" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "ძებნა" + #, fuzzy #~| msgid "You should use SSL connections if your web server supports it" #~ msgid "This %soption%s should be enabled if your web server supports it." diff --git a/po/kk.po b/po/kk.po index 32b5573810..754ffab508 100644 --- a/po/kk.po +++ b/po/kk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kazakh " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Барлығын ерекшелеу" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "кез-келген сөз" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add Index" msgid "Add index" msgstr "Индекс қосу" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Индексті өзгерту" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format #| msgid "Add columns" msgid "Add %s column(s) to index" msgstr "Бағаналар қосу" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add columns" msgid "Please select column(s) for the index." msgstr "Бағаналар қосу" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "Update Query" msgid "Simulate query" msgstr "Жаңартылуға жіберілген сұраныс" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Sort" msgid "Matched rows:" msgstr "Сұрыптау" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Use this value" msgid "Y values" msgstr "Осы мәнді қолданыңыз" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Хост аты бос тұр!" -#: js/messages.php:145 +#: js/messages.php:147 #, fuzzy msgid "The user name is empty!" msgstr "Қолданушы аты бос тұр!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Құпия сөз бос тұр!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Құпия сөздер бір-біріне ұқсамайды!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Таңдалынған қолдаушыларды жою" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Жабу" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "Table %s has been emptied." msgid "Template was deleted." msgstr "%s кестесі аластанды" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Басқа" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "Локальды монитордың баптауы үйлеспеуде" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1209,166 +1212,166 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System swap" msgid "System CPU usage" msgstr "Үстемелеу жүйесі" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Жүйелiк жад" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Үстемелеу жүйесі" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Бос жад" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Қолданылудағы жад" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Барлығы" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "System swap" msgid "Used swap" msgstr "Үстемелеу жүйесі" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "System swap" msgid "Free swap" msgstr "Үстемелеу жүйесі" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 #, fuzzy msgid "Bytes received" msgstr "Байт қабылданды" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Процесстер" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "Байт" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "КБ" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "ЭБ" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d Кесте(лер)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Сұрақтар" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Баптау" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Торға график қосу" -#: js/messages.php:218 +#: js/messages.php:220 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "Тәңiр жарылқасын, ең болмаса топтамаға бiр айнымалы қосыңыз" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1380,47 +1383,47 @@ msgstr "Тәңiр жарылқасын, ең болмаса топтамаға msgid "None" msgstr "Жоқ" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "Айнымалылар general_log және slow_query_log қосулы." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "Айнымалы general_log қосулы." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "Айнымалы slow_query_log қосулы." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "Айнымалы slow_query_log және general_log өшірілген." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "Айнымалы log_output кесте үшін орнатылмаған." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "Айнымалы log_output кесте үшін орнатылды." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1428,137 +1431,137 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Қосу %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Өшіру %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Set long_query_time to %ds" msgid "Set long_query_time to %d seconds." msgstr "long_query_time орнату %d сек" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Баптауын өзгерту" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Ағымдағы баптау" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Бiрлiк" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Журналдарды талдау" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Журнал кестесіне өту" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Мәліметтер жоқ" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1566,7 +1569,7 @@ msgstr "" msgid "Status" msgstr "Күй" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1576,82 +1579,82 @@ msgstr "Күй" msgid "Time" msgstr "Уақыт" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Толық уақыт:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Кесте" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "График" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Сүзгі" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Топтасқан қатарлар сомасы:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Барлығы:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Журналдардың жүктелуі" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1660,67 +1663,67 @@ msgstr "" msgid "Import" msgstr "Импорт" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyze table" msgid "Analyse query" msgstr "Кестенiң талдауы" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Мәселе" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Ұсыныс" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Дәлелдеу" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Қолданған айнымалы / формула" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Тест" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Параметрлері қате!" -#: js/messages.php:350 +#: js/messages.php:352 #: 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,70 +1735,70 @@ msgstr "Параметрлері қате!" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Баптауын өзгерту" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Жүктелуде…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Процесстер" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Query execution time" msgid "Request failed!!" msgstr "Сұраныстың орындалу уақыты" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Бағананың жойылуы" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add/Delete columns" msgid "Adding primary key" msgstr "Бағандарды Қосу/Өшіру" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1805,61 +1808,61 @@ msgstr "Бағандарды Қосу/Өшіру" msgid "OK" msgstr "Жарайды" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Дерекқорының атауын қайта қою." -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Дерекқорының көшірілуі" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Foreign key check:" msgid "Enable foreign key checks" msgstr "Сыртқы кілттерді тексерілісі:" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Іздеу" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Іздеу нәтижелерін жасыру" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Іздеу нәтижелерін көрсету" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Көру" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Жою" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1875,46 +1878,46 @@ msgstr "" msgid "Export" msgstr "Экспорт" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "%s баған мәні" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Жаңа баған мәні" -#: js/messages.php:398 +#: js/messages.php:400 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Enter each value in a separate field." msgstr "Әрбір мәнді жеке өріске енгізіңіз" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "%d мән(ін)(дерін) қосу" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Сұраныс өрісін жасыру" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Сұраныс өрісін көрсету" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1924,7 +1927,7 @@ msgstr "Сұраныс өрісін көрсету" msgid "Edit" msgstr "Өзгерту" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1935,177 +1938,177 @@ msgstr "Өзгерту" msgid "Delete" msgstr "Жою" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Disable %s" msgid "Variable %d:" msgstr "Өшіру %s" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Бірде-бір қатар таңдалынбады" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Дерекқорынан іздеу" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Бос жад" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Column" msgid "Continue" msgstr "Бағана" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Бақылаудың есептемесі" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Дайын" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No rows selected" msgid "No dependencies selected!" msgstr "Бірде-бір қатар таңдалынбады" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2115,415 +2118,415 @@ msgstr "Бірде-бір қатар таңдалынбады" msgid "Save" msgstr "Сақтау" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Іздеу параметрлерiн жасыру" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Іздеу параметрлерiн көрсету" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column" msgid "Column maximum:" msgstr "Бағана" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column" msgid "Column minimum:" msgstr "Бағана" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "Іздеу параметрлерiн жасыру" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "Іздеу параметрлерiн көрсету" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Елемеу" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Көшіру" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Нүкте" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Сызық" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Көпбұрыш" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Геометрия" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Ішкі пішін" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Сыртқы пішін" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Сыртқы кілтті таңдаңыз" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Save" msgid "Save page" msgstr "Сақтау" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:543 +#: js/messages.php:545 #, fuzzy #| msgid "Delete" msgid "Delete page" msgstr "Жою" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Бiрлiк" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Байланыс схемасын түзету немесе экспорттау" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "\"%s\" баған мәні" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "Белгіні алу/орнату үшін шертіңіз" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "Атын көшіру үшін өріске тышқанмен екі рет шерту жасаңыз" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Бәрін көрсету" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "Сызық" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import" msgid "Import status" msgstr "Импорт" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "Барлығын ерекшелеу" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "Сілтемеге өту" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "Баған атын көшіру" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Шығару" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Тағы" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Бәрін көрсету" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "Индекстерді жасыру" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show indexes" msgid "Show hidden navigation tree items." msgstr "Индекстерді көрсету" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Hide indexes" msgid "Link with main panel" msgstr "Индекстерді жасыру" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Hide indexes" msgid "Unlink from main panel" msgstr "Индекстерді жасыру" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2531,117 +2534,117 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "Соңғы тұрақты болжам:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Баптауын өзгерту" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "Бәрін көрсету" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Елемеу" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "" -#: js/messages.php:700 +#: js/messages.php:702 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "Сіз шынымен де сұраныстың орындалуын қалайсыз бе \"%s\"?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Кестеге түсініктеме" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Іздеу нәтижелерін жасыру" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2650,359 +2653,359 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Дерекқорының көшірілуі" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "Кестениң префиксін ауыстыру" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Кестениң префиксін ауыстыру" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Кестені префикс пен бірге көшіру" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Алдыңғы" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Келесі" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Бүгін" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Қаңтар" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Ақпан" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Наурыз" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Сәуір" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Мамыр" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Маусым" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Шілде" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Тамыз" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Қыркүйек" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Қазан" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Қараша" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Желтоқсан" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Қаң" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Ақп" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Нау" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Сәу" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Мам" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Мау" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Шіл" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Там" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Қыр" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Қаз" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Қар" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Жел" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Жексенбі" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Дүйсенбі" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Сейсенбі" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Сәрсенбі" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Бейсенбі" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Жұма" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Сенбі" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Жек" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Дүй" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Сей" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Сәр" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Бей" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Жұм" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Сен" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Жк" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Дс" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Сс" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Бс" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Жм" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Сн" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Сағат" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Минут" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Секунд" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "Барлығын ерекшелеу" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please enter at least {0} characters" msgstr "Тәңiр жарылқасын, ең болмаса топтамаға бiр айнымалы қосыңыз" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Қате" @@ -3052,33 +3055,33 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 #, fuzzy msgid "Font size" msgstr "Қарiп өлшемi" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3097,86 +3100,68 @@ msgid "Database" msgstr "Дерекқор" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Delete" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Жою" -msgstr[1] "Жою" - -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 #, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Delete" msgid "No bookmarks" msgstr "Жою" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Delete" msgid "Bookmark" msgstr "Жою" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query execution time" msgid "Query failed" msgstr "Сұраныстың орындалу уақыты" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "Query execution time" msgid "Queried time" msgstr "Сұраныстың орындалу уақыты" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3194,197 +3179,197 @@ msgstr "" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Delete" msgid "Bookmarks" msgstr "Жою" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Update Query" msgid "Press Ctrl+Enter to execute query" msgstr "Жаңартылуға жіберілген сұраныс" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Update Query" msgid "Press Enter to execute query" msgstr "Жаңартылуға жіберілген сұраныс" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Өсу бойынша" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Кему бойынша" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Other" msgid "Order:" msgstr "Басқа" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "Бағана" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Other" msgid "Order by:" msgstr "Басқа" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "Show query box" msgid "Ungroup queries" msgstr "Сұраныс өрісін көрсету" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show all" msgid "Show trace" msgstr "Бәрін көрсету" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide indexes" msgid "Hide trace" msgstr "Индекстерді жасыру" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "Бағана" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "Және" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Delete" msgid "Add bookmark" msgstr "Жою" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy #| msgid "Remove database" msgid "Target database" msgstr "Дерекқорын өшіру" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Delete" msgid "Share this bookmark" msgstr "Жою" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Default" msgid "Set default" msgstr "Келісім бойынша" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "Show query box" msgid "Show query history at start" msgstr "Сұраныс өрісін көрсету" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied database" msgid "Switch to dark theme" msgstr "Көшірілген дерекқорына өту" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Failed to set configured collation connection!" msgstr "Локальды монитордың баптауы үйлеспеуде" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3731,7 +3716,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3857,15 +3842,15 @@ msgstr "Файлды жүктеу, оның кеңейтілім салдары msgid "Unknown error in file upload." msgstr "Файлды жүктеу кезіндегі белгісіз қате." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Жүктелген файлды ауыстыру кезіндегі қате." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -3931,8 +3916,8 @@ msgid "Keyname" msgstr "Индекс атауы" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3982,13 +3967,13 @@ msgstr "Индекс %s жойылған болатын." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Жою" @@ -4086,7 +4071,7 @@ msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "" @@ -4101,7 +4086,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4494,11 +4479,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -4763,21 +4748,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4788,38 +4773,38 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Created" msgid "Without PHP code" msgstr "Құрылған" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Сұранысты жіберу" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Created" msgid "Create PHP code" msgstr "Құрылған" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit Index" msgctxt "Inline edit query" @@ -4909,6 +4894,10 @@ msgstr "сағатқа" msgid "per day" msgstr "күнге" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5023,44 +5012,44 @@ msgstr "Бағандарды Қосу/Өшіру" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Failed to read configuration file!" msgstr "Локальды монитордың баптауы үйлеспеуде" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server:" msgid "Server %d" msgstr "Сервер:" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5068,24 +5057,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5764,13 +5753,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5788,12 +5777,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -6372,7 +6361,7 @@ msgid "Column names in first row" msgstr "" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -7799,7 +7788,7 @@ msgid "Table %s has been emptied." msgstr "%s кестесі аластанды." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format msgid "View %s has been dropped." msgstr "%s көрсетілімі жойылған" @@ -7934,8 +7923,8 @@ msgid "No data to display" msgstr "Мәліметтер жоқ" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7983,52 +7972,52 @@ msgstr[1] "" msgid "No column selected." msgstr "Бірде-бір қатар таңдалынбады" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Өзгерту" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -8040,7 +8029,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8793,54 +8782,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8886,53 +8875,53 @@ msgstr "Немесе" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8944,11 +8933,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9812,7 +9801,7 @@ msgstr "Кестені калпына келтіру" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9825,32 +9814,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9878,35 +9867,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -10078,7 +10067,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10102,21 +10091,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10214,7 +10203,7 @@ msgid "Database:" msgstr "Дерекқор" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Database" msgid "Data:" @@ -10315,7 +10304,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10384,7 +10373,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10430,60 +10419,60 @@ msgstr "қолданыста" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for dumped tables" msgstr "Кесте бойынша:" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Кесте бойынша:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT қосу" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT қосу" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10515,7 +10504,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10533,33 +10522,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10567,28 +10556,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10596,23 +10585,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10624,7 +10613,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -13422,15 +13411,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No rows selected" @@ -13445,17 +13430,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No rows selected" msgid "An alias was expected." @@ -13477,19 +13463,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "Table %s has been emptied." msgid "A rename operation was expected." @@ -13517,17 +13503,17 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "Replace table prefix" msgid "Unexpected beginning of statement." msgstr "Кестениң префиксін ауыстыру" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13548,17 +13534,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "Table %s has been emptied." msgid "At least one column definition was expected." msgstr "%s кестесі аластанды" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14236,7 +14222,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15239,7 +15225,7 @@ msgid "at beginning of table" msgstr "Кестениң префиксін ауыстыру" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -15282,7 +15268,7 @@ msgstr "Сипаттама" msgid "Edit partitioning" msgstr "Индексті өзгерту" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -15410,11 +15396,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Қойылымның атын өзгерту" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Drop the database (DROP)" msgid "Delete the view (DROP)" @@ -16520,6 +16506,13 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Паралельді_кірістірмелерді анықтау" +#, fuzzy +#~| msgid "Delete" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Жою" +#~ msgstr[1] "Жою" + #, fuzzy #~| msgid "Replace table prefix" #~ msgid "Replace table prefix:" diff --git a/po/km.po b/po/km.po index 5fc6ac78d4..b0ccdb345e 100644 --- a/po/km.po +++ b/po/km.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Central Khmer " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "ជ្រើសទាំងអស់" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "ខ្វះ​តម្លៃ​ក្នុង​បែបបទ!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "សូម​បញ្ចូល​ប្រវែង​ត្រឹម​ត្រូវ!" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add Index" msgid "Add index" msgstr "បន្ថែម​សន្ទស្សន៍" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "កែ​សន្ទស្សន៍" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "បន្ថែម​ជួរ​ឈរ %s ទៅ​សន្ទស្សន៍" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %s column(s) to index" msgid "Please select column(s) for the index." msgstr "បន្ថែម​ជួរ​ឈរ %s ទៅ​សន្ទស្សន៍" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "តម្លៃ Y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "ឈ្មោះ​អ្នក​ប្រើ​នៅ​ទទេ!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "ពាក្យ​សម្ងាត់​នៅ​ទទេ!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "ពាក្យ​សម្ងាត់​មិន​ដូច​គ្នា!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "ការ​លុប​អ្នក​ប្រើ​ដែល​បាន​ជ្រើស" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "បិទ" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The bookmark has been deleted." msgid "Template was deleted." msgstr "បាន​លុប​ចំណាំ។" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "ផ្សេងៗ" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "ការ​ភ្ជាប់ / ដំណើរការ" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1150,159 +1152,159 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "ការ​ប្រើ CPU ប្រព័ន្ធ" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "អង្គ​ចងចាំ​ប្រព័ន្ធ" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "អង្គ​ចងចាំ​សរុប" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "អង្គ​ចងចាំ​ទំនេរ" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "អង្គ​ចងចាំ​ដែល​បាន​ប្រើ" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total:" msgid "Total swap" msgstr "សរុប៖" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "ចំនួន​បៃ​ដែល​បាន​ផ្ញើ" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "ចំនួន​បៃ​ដែល​បាន​ទទួល" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "ការ​តភ្ជាប់" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "ដំណើរការ" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d តារាង" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "សំណួរ" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "ចរាចរណ៍" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "ការ​កំណត់" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1314,47 +1316,47 @@ msgstr "" msgid "None" msgstr "គ្មាន" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1362,137 +1364,137 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "បើក %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "បិទ %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "កំណត់ long_query_time ទៅ %d វិនាទី។" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" "អ្នក​មិន​អាច​ផ្លាស់​ប្ដូរ​អថេរ​ទាំង​នេះ​ទេ។ សូម​ចូល​ជា root ឬ​ទាក់ទង​ទៅ​អ្នក​គ្រប់គ្រង​មូលដ្ឋាន​ទិន្នន័យ​របស់​អ្នក។" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "ប្ដូរ​ការ​កំណត់" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "ការ​កំណត់​បច្ចុប្បន្ន" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "ភាព​ខុស​គ្នា" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "បាន​ចែក​នឹង %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "ពី​កំណត់​ត្រា​យឺត" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "ពី​កំណត់​ត្រា​ទូទៅ" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "បោះបង់​សំណើ" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "រក​មិន​ឃើញ​ទិន្នន័យ" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "បាន​វិភាគ​កំណត់ត្រា ប៉ុន្តែ​រក​មិន​ឃើញ​ទិន្នន័យ​ក្នុង​ពេល​នេះ​ទេ។" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "កំពុង​វិភាគ…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "ពន្យល់​លទ្ធផល" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1500,7 +1502,7 @@ msgstr "ពន្យល់​លទ្ធផល" msgid "Status" msgstr "ស្ថានភាព" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1510,82 +1512,82 @@ msgstr "ស្ថានភាព" msgid "Time" msgstr "" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "តារាង" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "ត្រង" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "សរុប៖" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "កំពុង​ផ្ទុក​កំណត់ត្រា" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "ផ្ទុក​ទំព័រ​ឡើង​វិញ" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1594,65 +1596,65 @@ msgstr "" msgid "Import" msgstr "នាំចូល" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "បញ្ហា" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "ការ​ណែនាំ" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "សាកល្បង" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "ប៉ារ៉ាម៉ែត្រ​មិន​ល្អ!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1664,74 +1666,74 @@ msgstr "ប៉ារ៉ាម៉ែត្រ​មិន​ល្អ!" msgid "Cancel" msgstr "បោះបង់" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "ប្ដូរ​ការ​កំណត់" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "កំពុង​ផ្ទុក…" -#: js/messages.php:358 +#: js/messages.php:360 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "បាន​បោះបង់​សំណើ!" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "កំពុង​ដំណើរការ​សំណើ" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Request Aborted!!" msgid "Request failed!!" msgstr "បាន​បោះបង់​សំណើ!" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "មាន​កំហុស​ក្នុង​ពេល​ដំណើរការ​សំណើ" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "កូដ​កំហុស៖ %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "អត្ថបទ​កំហុស៖ %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "មិន​បាន​ជ្រើស​មូលដ្ឋាន​ទិន្នន័យ។" -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "ការ​លុប​ជួរ​ឈរ" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Adding Primary Key" msgid "Adding primary key" msgstr "ការ​បន្ថែម​លេខ​ប​ឋម" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1741,59 +1743,59 @@ msgstr "ការ​បន្ថែម​លេខ​ប​ឋម" msgid "OK" msgstr "" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Select All" msgid "Renaming databases" msgstr "ជ្រើសទាំងអស់" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Select All" msgid "Copying database" msgstr "ជ្រើសទាំងអស់" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1809,44 +1811,44 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1856,7 +1858,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1867,173 +1869,173 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Disable %s" msgid "Variable %d:" msgstr "បិទ %s" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "អង្គ​ចងចាំ​ទំនេរ" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "រួម​ចំណែក" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "មិន​បាន​ជ្រើស​មូលដ្ឋាន​ទិន្នន័យ។" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "មិន​បាន​ជ្រើស​មូលដ្ឋាន​ទិន្នន័យ។" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2043,386 +2045,386 @@ msgstr "មិន​បាន​ជ្រើស​មូលដ្ឋាន​ទ msgid "Save" msgstr "" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Reload page" msgid "Delete page" msgstr "ផ្ទុក​ទំព័រ​ឡើង​វិញ" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid page name" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "បោះបង់" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import" msgid "Import status" msgstr "នាំចូល" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "ជ្រើសទាំងអស់" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Table comments:" msgid "Show panel" msgstr "មតិយោបល់​តារាង៖" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2430,111 +2432,111 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "ប្ដូរ​ការ​កំណត់" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "" -#: js/messages.php:700 +#: js/messages.php:702 #, 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:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments:" msgid "Show arguments" msgstr "មតិយោបល់​តារាង៖" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2543,379 +2545,379 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "No databases selected." msgid "Copy tables to" msgstr "មិន​បាន​ជ្រើស​មូលដ្ឋាន​ទិន្នន័យ។" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:888 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid email address" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:887 +#: js/messages.php:889 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date ( ISO )" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "សូម​បញ្ចូល​ប្រវែង​ត្រឹម​ត្រូវ!" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter the same value again" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter at least {0} characters" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value between {0} and {1}" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:925 +#: js/messages.php:927 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "សូម​បញ្ចូល​ប្រវែង​ត្រឹម​ត្រូវ!" -#: js/messages.php:930 +#: js/messages.php:932 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value greater than or equal to {0}" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date or time" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "" @@ -2965,32 +2967,32 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3009,84 +3011,65 @@ msgid "Database" msgstr "មូលដ្ឋានទិន្នន័យ" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "New bookmark" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "បង្កើត​ចំណាំ​ថ្មី" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "បាន​លុប​ចំណាំ។" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "New bookmark" msgid "No bookmarks" msgstr "បង្កើត​ចំណាំ​ថ្មី" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain output" msgid "Explain" msgstr "ពន្យល់​លទ្ធផល" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "New bookmark" msgid "Bookmark" msgstr "បង្កើត​ចំណាំ​ថ្មី" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3104,169 +3087,169 @@ msgstr "" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "New bookmark" msgid "Bookmarks" msgstr "បង្កើត​ចំណាំ​ថ្មី" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Table comments:" msgid "Show trace" msgstr "មតិយោបល់​តារាង៖" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "New bookmark" msgid "Add bookmark" msgstr "បង្កើត​ចំណាំ​ថ្មី" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy #| msgid "Select All" msgid "Target database" msgstr "ជ្រើសទាំងអស់" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Create bookmark" msgid "Share this bookmark" msgstr "បង្កើត​ចំណាំ" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Default" msgid "Set default" msgstr "លំនាំដើម" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3581,7 +3564,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3702,15 +3685,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3774,8 +3757,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3825,13 +3808,13 @@ msgstr "" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "លុប" @@ -3929,7 +3912,7 @@ msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "" @@ -3944,7 +3927,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4315,11 +4298,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -4582,21 +4565,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4607,36 +4590,36 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Created" msgid "Without PHP code" msgstr "បានបង្កើត" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Created" msgid "Create PHP code" msgstr "បានបង្កើត" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit Index" msgctxt "Inline edit query" @@ -4726,6 +4709,10 @@ msgstr "" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "" @@ -4836,41 +4823,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4878,24 +4865,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5564,13 +5551,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5588,12 +5575,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -6152,7 +6139,7 @@ msgid "Column names in first row" msgstr "" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -7542,7 +7529,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "" @@ -7674,8 +7661,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7712,52 +7699,52 @@ msgstr[0] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7767,7 +7754,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8506,54 +8493,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8599,53 +8586,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8657,11 +8644,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9490,7 +9477,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9503,32 +9490,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9556,35 +9543,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9753,7 +9740,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9777,21 +9764,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9881,7 +9868,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9974,7 +9961,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10043,7 +10030,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10086,52 +10073,52 @@ msgstr "កំពុង​ប្រើ" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10161,7 +10148,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10179,33 +10166,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10213,28 +10200,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10242,23 +10229,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10270,7 +10257,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -13003,15 +12990,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -13026,17 +13009,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -13058,19 +13042,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The bookmark has been deleted." msgid "A rename operation was expected." @@ -13098,15 +13082,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13127,17 +13111,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The bookmark has been deleted." msgid "At least one column definition was expected." msgstr "បាន​លុប​ចំណាំ។" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13802,7 +13786,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14733,7 +14717,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14770,7 +14754,7 @@ msgstr "ការបង្កើត៖" msgid "Edit partitioning" msgstr "កែ​សន្ទស្សន៍" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14889,11 +14873,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" @@ -15935,6 +15919,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ត្រូវវ​បាន​កំណត់​ទៅ 0" +#, fuzzy +#~| msgid "New bookmark" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "បង្កើត​ចំណាំ​ថ្មី" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "បាន​លុប​ចំណាំ។" + #, fuzzy #~| msgid "Table" #~ msgid "tables" diff --git a/po/kn.po b/po/kn.po index e9f3b51706..c60e80546b 100644 --- a/po/kn.po +++ b/po/kn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-07-24 13:05+0200\n" "Last-Translator: Shameem Ahmed A Mulla \n" "Language-Team: Kannada " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1096,155 +1099,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1256,47 +1259,47 @@ msgstr "" msgid "None" msgstr "" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1304,136 +1307,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1441,7 +1444,7 @@ msgstr "" msgid "Status" msgstr "ಸ್ಥಿತಿ" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1451,82 +1454,82 @@ msgstr "ಸ್ಥಿತಿ" msgid "Time" msgstr "" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1535,65 +1538,65 @@ msgstr "" msgid "Import" msgstr "" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "ಕಳಪೆ ನಿಯತಾಂಕಗಳು!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1605,60 +1608,60 @@ msgstr "ಕಳಪೆ ನಿಯತಾಂಕಗಳು!" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1668,55 +1671,55 @@ msgstr "" msgid "OK" msgstr "" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1732,44 +1735,44 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1779,7 +1782,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1790,164 +1793,164 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -1957,368 +1960,368 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2326,105 +2329,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2433,351 +2436,351 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "No tables selected." msgid "Copy tables to" msgstr "ಯಾವುದೇ ಕೋಷ್ಟಕಗಳು ಆಯ್ಕೆ ಮಾಡಲಿಲ್ಲ." -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "ಜನವರಿ" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "ಫೆಬ್ರವರಿ" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "ಮಾರ್ಚ್" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "ಏಪ್ರಿಲ್" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "ಮೇ" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "ಜೂನ್" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "ಜುಲೈ" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "ಆಗಸ್ಟ್" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "ಸಪ್ಟೆಂಬರ್" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "ಅಕ್ಟೋಬರ್" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "ನವೆಂಬರ್" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "ಡಿಸೆಂಬರ್" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "ಜನ" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "ಫೆಬ್ರು" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "ಮಾ" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "ಏಪ್ರಿ" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "ಮೇ" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "ಜೂ" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "ಜು" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "ಆಗ" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "ಸೆಪ್ಟೆಂ" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "ಅಕ್ಟೋ" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "ನವೆಂ" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "ಡಿಸೆಂ" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "ರವಿವಾರ" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "ಸೋಮವಾರ" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "ಮಂಗಳವಾರ" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "ಬುಧವಾರ" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "ಗುರುವಾರ" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "ಶುಕ್ರವಾರ" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "ಶನಿವಾರ" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "ರ" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "ಸೋ" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "ಮಂ" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "ಬು" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "ಗು" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "ಶು" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "ಶನಿ" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "ರ" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "ಸೋ" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "ಮಂ" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "ಬು" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "ಗು" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "ಶು" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "ಶನಿ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "" @@ -2827,32 +2830,32 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2872,76 +2875,59 @@ msgstr "" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -2959,157 +2945,157 @@ msgstr "" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3422,7 +3408,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3539,15 +3525,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3611,8 +3597,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3662,13 +3648,13 @@ msgstr "" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -3766,7 +3752,7 @@ msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "" @@ -3781,7 +3767,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4152,11 +4138,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -4419,21 +4405,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4444,36 +4430,36 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Created" msgid "Without PHP code" msgstr "ರಚಿಸಲಾಗಿದೆ" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Created" msgid "Create PHP code" msgstr "ರಚಿಸಲಾಗಿದೆ" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" @@ -4561,6 +4547,10 @@ msgstr "" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "" @@ -4665,41 +4655,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4707,24 +4697,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5381,13 +5371,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5405,12 +5395,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -5967,7 +5957,7 @@ msgid "Column names in first row" msgstr "" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -7349,7 +7339,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "" @@ -7479,8 +7469,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7518,52 +7508,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7573,7 +7563,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8294,54 +8284,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8387,53 +8377,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8445,11 +8435,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9269,7 +9259,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9282,32 +9272,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9333,35 +9323,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9530,7 +9520,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9554,21 +9544,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9658,7 +9648,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9750,7 +9740,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9819,7 +9809,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9861,52 +9851,52 @@ msgstr "ಬಳಕೆಯಲ್ಲಿ" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -9936,7 +9926,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -9954,33 +9944,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -9988,28 +9978,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10017,23 +10007,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10045,7 +10035,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -12750,15 +12740,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "" @@ -12771,17 +12757,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "" @@ -12799,19 +12786,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "" @@ -12837,15 +12824,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12866,15 +12853,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13532,7 +13519,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14437,7 +14424,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14472,7 +14459,7 @@ msgstr "ಸೃಷ್ಟಿ:" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14589,11 +14576,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/ko.po b/po/ko.po index f4c4517eb1..2eb0524699 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-02-08 15:17+0000\n" "Last-Translator: Seongki Shin \n" -"Language-Team: Korean " -"\n" +"Language-Team: Korean \n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,7 +47,7 @@ msgid "Table comments:" msgstr "테이블 설명:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -101,7 +101,7 @@ msgstr "종류" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -163,16 +163,16 @@ msgid "Comments" msgstr "설명" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "기본" -#: db_datadict.php:165 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:376 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:141 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:446 @@ -196,17 +196,17 @@ msgstr "기본" msgid "No" msgstr "아니오" -#: db_datadict.php:165 js/messages.php:519 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:521 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:143 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -260,7 +260,7 @@ msgstr "테이블" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -405,23 +405,23 @@ msgid "Point:" msgstr "포인트:" #: gis_data_editor.php:216 gis_data_editor.php:243 gis_data_editor.php:299 -#: gis_data_editor.php:372 js/messages.php:508 +#: gis_data_editor.php:372 js/messages.php:510 msgid "X" msgstr "X" #: gis_data_editor.php:219 gis_data_editor.php:247 gis_data_editor.php:303 -#: gis_data_editor.php:378 js/messages.php:509 +#: gis_data_editor.php:378 js/messages.php:511 msgid "Y" msgstr "Y" #: gis_data_editor.php:241 gis_data_editor.php:297 gis_data_editor.php:370 -#: js/messages.php:511 +#: js/messages.php:513 #, php-format msgid "Point %d" msgstr "포인트 %d" #: gis_data_editor.php:254 gis_data_editor.php:310 gis_data_editor.php:388 -#: js/messages.php:517 +#: js/messages.php:519 msgid "Add a point" msgstr "포인트 추가" @@ -443,7 +443,7 @@ msgstr "내부 원 %d:" msgid "Add a linestring" msgstr "선 추가" -#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:518 +#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:520 msgid "Add an inner ring" msgstr "내부 링 추가" @@ -460,12 +460,12 @@ msgstr "폴리곤 추가" msgid "Add geometry" msgstr "공간 데이터를 추가" -#: gis_data_editor.php:411 js/messages.php:349 libraries/DbSearch.php:463 +#: gis_data_editor.php:411 js/messages.php:351 libraries/DbSearch.php:463 #: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:139 #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -495,7 +495,7 @@ msgstr "공간 데이터를 추가" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "실행" @@ -515,7 +515,7 @@ msgstr "" msgid "Succeeded" msgstr "성공함" -#: import.php:58 js/messages.php:592 +#: import.php:58 js/messages.php:594 msgid "Failed" msgstr "실패함" @@ -523,7 +523,7 @@ msgstr "실패함" msgid "Incomplete params" msgstr "불완전한 인자" -#: import.php:184 +#: import.php:185 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -532,15 +532,15 @@ msgstr "" "너무 큰 파일을 업로드하려고 시도했습니다. 제한을 해결하기 위해서는 " "%sdocumentation%s를 참조하여 주십시오." -#: import.php:360 import.php:665 +#: import.php:361 import.php:666 msgid "Showing bookmark" msgstr "북마크 보이기" -#: import.php:376 import.php:661 +#: import.php:377 import.php:662 msgid "The bookmark has been deleted." msgstr "북마크를 제거했습니다." -#: import.php:474 +#: import.php:475 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -549,12 +549,12 @@ msgstr "" "업로드된 파일을 이동할 수 없습니다. 서버 설정에 open_basedir이 활성화되어 있" "지만, %s 디렉토리(임시 파일 저장용)에 접근 권한이 없습니다." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:491 import.php:568 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "파일을 읽을 수 없습니다!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:502 import.php:517 import.php:542 import.php:557 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -563,7 +563,7 @@ msgstr "" "지원되지 않는 압축(%s)형식의 파일을 업로드하려고 시도했습니다. 지원이 구현되" "지 않았거나 설정에서 사용하지 않게 되어있습니다." -#: import.php:574 +#: import.php:575 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -572,22 +572,24 @@ msgstr "" "가져올 데이터가 없습니다. 파일이 지정되지 않았거나 파일 크기가 PHP 설정의 최" "대 파일 크기를 초과했을 수 있습니다. [doc@faq1-16]FAQ 1.16[/doc] 참조." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:627 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "" "가져오기 플러그인을 로드할 수 없습니다. 올바로 설치되었는지 확인해주세요!" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:669 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "북마크 %s가 생성되었습니다." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "가져오기를 성공적으로 마쳤습니다. %d 쿼리가 실행되었습니다." +#: import.php:679 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "가져오기를 성공적으로 마쳤습니다. %d 쿼리가 실행되었습니다." -#: import.php:705 +#: import.php:710 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -596,7 +598,7 @@ msgstr "" "스크립트 시간 제한이 초과되었습니다. 이어서 하시려면 같은 파일을 다시 전송해 " "주세요 (%s, %s)." -#: import.php:715 +#: import.php:720 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -608,8 +610,8 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "가져오기에 필요한 절차를 로드할 수 없습니다." -#: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: import_status.php:116 js/messages.php:450 js/messages.php:602 +#: libraries/Util.php:795 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "뒤로" @@ -632,7 +634,7 @@ msgstr "" msgid "General settings" msgstr "일반 설정" -#: index.php:191 js/messages.php:625 +#: index.php:191 js/messages.php:627 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:287 msgid "Change password" @@ -704,10 +706,11 @@ msgstr "PHP 정보 보기" msgid "Version information:" msgstr "버전 정보:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:442 libraries/Util.php:509 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "문서" @@ -828,95 +831,95 @@ msgstr "" "Server 가 Suhosin 으로 운영중입니다. 이로 인해 발생할 수 있는 문제는 " "%sdocumentation%s 에서 확인이 가능합니다." -#: js/messages.php:39 libraries/import.lib.php:207 sql.php:161 +#: js/messages.php:41 libraries/import.lib.php:207 sql.php:161 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다." -#: js/messages.php:45 +#: js/messages.php:47 msgid "Confirm" msgstr "확인" -#: js/messages.php:46 +#: js/messages.php:48 #, php-format msgid "Do you really want to execute \"%s\"?" msgstr "정말로 \"%s\"을/를 실행하시겠습니까?" -#: js/messages.php:48 libraries/mult_submits.lib.php:440 +#: js/messages.php:50 libraries/mult_submits.lib.php:440 msgid "You are about to DESTROY a complete database!" msgstr "이 데이터베이스 전체를 제거하려고 합니다!" -#: js/messages.php:50 +#: js/messages.php:52 msgid "You are about to DESTROY a complete table!" msgstr "이 테이블 전체를 제거하려고 합니다!" -#: js/messages.php:52 +#: js/messages.php:54 msgid "You are about to TRUNCATE a complete table!" msgstr "이 테이블의 모든 데이터를 비우려고 합니다!" -#: js/messages.php:53 +#: js/messages.php:55 msgid "Delete tracking data for this table?" msgstr "이 테이블에 대한 추적 데이터를 삭제합니까?" -#: js/messages.php:55 +#: js/messages.php:57 msgid "Delete tracking data for these tables?" msgstr "이 테이블들에 대한 추적 데이터를 제거하시겠습니까?" -#: js/messages.php:57 +#: js/messages.php:59 msgid "Delete tracking data for this version?" msgstr "이 버전에 대한 추적 데이터를 제거하시겠습니까?" -#: js/messages.php:59 +#: js/messages.php:61 msgid "Delete tracking data for these versions?" msgstr "이 버전에 대한 추적 데이터를 제거하시겠습니까?" -#: js/messages.php:60 +#: js/messages.php:62 msgid "Delete entry from tracking report?" msgstr "추적 보고서에서 이 항목을 제거하시겠습니까?" -#: js/messages.php:61 +#: js/messages.php:63 msgid "Deleting tracking data" msgstr "추적 데이터 삭제중" -#: js/messages.php:62 +#: js/messages.php:64 msgid "Dropping Primary Key/Index" msgstr "기본 키 / 인덱스를 제거중" -#: js/messages.php:63 +#: js/messages.php:65 msgid "Dropping Foreign key." msgstr "외래키를 제거중." -#: js/messages.php:65 +#: js/messages.php:67 msgid "This operation could take a long time. Proceed anyway?" msgstr "이 명령은 오랜 시간이 걸릴 수 있습니다. 그래도 실행하시겠습니까?" -#: js/messages.php:67 +#: js/messages.php:69 #, php-format msgid "Do you really want to delete user group \"%s\"?" msgstr "\"%s\"그룹을 삭제하시겠습니까?" -#: js/messages.php:69 +#: js/messages.php:71 #, php-format msgid "Do you really want to delete the search \"%s\"?" msgstr "\"%s\" 검색을 삭제하겠습니까?" -#: js/messages.php:71 +#: js/messages.php:73 msgid "You have unsaved changes; are you sure you want to leave this page?" msgstr "" "바뀐 내용을 저장하지 않았습니다. 저장하지 않고 페이지를 이동하겠습니까?" -#: js/messages.php:73 +#: js/messages.php:75 msgid "Do you really want to revoke the selected user(s) ?" msgstr "선택한 사용자를 정말로 삭제하시겠습니까?" -#: js/messages.php:75 +#: js/messages.php:77 msgid "Do you really want to delete this central column?" msgstr "이 중심 컬럼을 정말로 삭제하시겠습니까?" -#: js/messages.php:77 +#: js/messages.php:79 msgid "Do you really want to delete the selected items?" msgstr "선택된 항목들을 정말로 삭제하시겠습니까?" -#: js/messages.php:79 +#: js/messages.php:81 msgid "" "Do you really want to DROP the selected partition(s)? This will also DELETE " "the data related to the selected partition(s)!" @@ -924,21 +927,21 @@ msgstr "" "선택된 파티션을 정말로 제거하시겠습니까? 이는 선택된 파티션과 연관된 데이터들" "을 함께 삭제할 것입니다!" -#: js/messages.php:83 +#: js/messages.php:85 msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "선택된 파티션의 내용을 정말로 비우시겠습니까?" -#: js/messages.php:85 +#: js/messages.php:87 #, fuzzy #| msgid "Do you really want to TRUNCATE the selected partition(s)?" msgid "Do you really want to remove partitioning?" msgstr "선택된 파티션의 내용을 정말로 비우시겠습니까?" -#: js/messages.php:86 +#: js/messages.php:88 msgid "Do you really want to RESET SLAVE?" msgstr "정말로 초기화 슬레이브를 실행 하시겠습니까?" -#: js/messages.php:88 +#: js/messages.php:90 msgid "" "This operation will attempt to convert your data to the new collation. In " "rare cases, especially where a character doesn't exist in the new collation, " @@ -950,15 +953,15 @@ msgstr "" "운 문자셋에 존재하지 않을 경우, 다르게 표시될 수 있습니다; 이 경우 되돌릴 수 " "있고 다음을 참고 하세요 " -#: js/messages.php:94 +#: js/messages.php:96 msgid "Garbled Data" msgstr "혼동된 데이터" -#: js/messages.php:96 +#: js/messages.php:98 msgid "Are you sure you wish to change the collation and convert the data?" msgstr "콜레이션 변경과 데이터 변환을 실행 하시겠습니까?" -#: js/messages.php:98 +#: js/messages.php:100 msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -968,166 +971,166 @@ msgid "" "" msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "정말로 모든 열 정렬을 변경 하고 모든 데이터를 변환 하시겠습니까?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "저장 & 닫기" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "초기화" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "모두 초기화" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "입력 폼 안에 빠진 값이 있습니다!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "하나 이상의 옵션을 선택하세요!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "올바른 숫자를 입력하세요!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "올바른 길이를 입력하세요!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "인덱스 추가" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "인덱스 수정" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "인덱스에 %s 열 추가" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "단일 컬럼 인덱스 생성" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "복합 인덱스 생성" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "이것과 합치기:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "인덱스에 추가할 열을 선택해주세요." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "적어도 한 개 이상의 컬럼을 추가해야 합니다." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "SQL 미리보기" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "쿼리 시뮬레이션 하기" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "일치하는 행:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL 질의:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Y값" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "호스트명이 없습니다!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "사용자명이 없습니다!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "암호가 없습니다!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "암호가 동일하지 않습니다!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "선택한 사용자를 삭제" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "닫기" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "템플릿이 생성되었습니다." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "템플릿이 업데이트 되었습니다." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "템플릿이 삭제되었습니다." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "기타" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "연결 / 프로세스" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "호환되지 않는 로컬 모니터 설정입니다!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1138,155 +1141,155 @@ msgstr "" "지 않습니다. 현재 설정은 더 이상 작동되지 않을 수 있습니다. 설정메뉴에" "서 설정을 초기화해 주세요." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "질의 캐시 효율" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "질의 캐시 사용량" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "질의 캐시 사용됨" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "시스템 CPU 사용량" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "시스템 메모리" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "시스템 스왑" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "평균 부하" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "전체 메모리" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "캐시된 메모리" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "버퍼 메모리" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "사용가능 메모리" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "사용된 메모리" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "전체 스왑" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "캐시된 스왑" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "사용된 스왑" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "사용가능 스왑" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "바이트 보냄" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "바이트 받음" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "연결 수" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "프로세스" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d개 테이블(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "질의" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "소통량" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "설정" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "차트에 그리드 추가" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "하나 이상의 변수를 시리즈에 추가하십시오!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1298,47 +1301,47 @@ msgstr "하나 이상의 변수를 시리즈에 추가하십시오!" msgid "None" msgstr "없음" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "모니터링 재개" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "모니터링 정지" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "자동 새로고침 시작" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "자동 새로고침 중지" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "일반 로그와 슬로우 쿼리 로그가 활성화 되었습니다." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "일반 로그가 활성화 되었습니다." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "슬로우 쿼리 로그가 활성화 되었습니다." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "슬로우 쿼리 로그와 일반 로그가 비활성화 되었습니다." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "테이블에 대한 로그 출력이 설정되지 않았습니다." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "테이블에 대한 로그 출력이 설정되었습니다." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1350,12 +1353,12 @@ msgstr "" "을 0-2초로 설정하는 것을 권장합니다. 사용하는 시스템에 따라 적절하게 설정하" "십시오." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time이 %d초로 설정되였습니다." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1363,30 +1366,30 @@ msgstr "" "다음 설정은 서버 전체에 적용되고 서버 재기동시 기본 설정으로 초기화됩니다:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "로그 출력을 %s로 설정" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "%s 사용가능" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "%s 사용안함" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "long_query_time을 %d초로 설정." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1394,58 +1397,58 @@ msgstr "" "변수들을 변경할 수 없습니다. root로 로그인하거나 데이터베이스 관리자에게 문의" "하십시오." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "설정 변경" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "현재 설정" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "차트 제목" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "차이" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "%s로 구분" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "단위" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "느린 로그로부터" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "일반 로그로부터" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" "서버의 로그에 저장된 이 쿼리에 해당하는 데이터베이스 이름을 알 수 없습니다." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "로그 분석 중" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "로그를 읽고 분석합니다. 이 작업은 시간이 걸릴 수 있습니다." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "요청 취소" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1454,7 +1457,7 @@ msgstr "" "이 열은 함께 그룹화된 동일한 질의의 양을 보여줍니다. 그러나 질의 자체만으로 " "그룹화하기 때문에, 시작 시간 등의 질의에 대한 다른 특성은 다를 수 있습니다." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1463,31 +1466,31 @@ msgstr "" "INSERT 쿼리들만 선택되었기 때문에, 입력하는 데이터에 상관없이 같은 테이블을 " "대상으로 하는 쿼리들끼리 또 분류되었습니다." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "로그자료가 로드되었습니다. 쿼리들이 실행되었던 기간:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "로그 테이블로 이동" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "자료가 없습니다" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "로그가 분석되었습니다. 하지만 해당 기간내에는 자료가 없습니다." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "분석중…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "SQL 해석" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1495,7 +1498,7 @@ msgstr "SQL 해석" msgid "Status" msgstr "상태" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1505,58 +1508,58 @@ msgstr "상태" msgid "Time" msgstr "시간" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "전체 시간:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "프로파일링 결과" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "테이블" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "차트" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "로그 테이블의 필터 옵션" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "필터" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "단어/정규식에 의한 필터 질의:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "그룹 쿼리, WHERE 절 변수 데이터를 무시합니다" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "그룹화된 행의 합계:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "전체:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "로그를 불러오는 중" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "모니터링 리프리쉬가 실패하였습니다" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1566,24 +1569,24 @@ msgstr "" "의 경우 세션이 만료되었기 때문입니다.페이지를 다시 로드하고 새로 인증받는 것" "이 도움이 될것입니다." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "페이지 새로고침" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "적용된 행:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "설정 파일을 분석할 수 없습니다. 유효한 JSON 코드가 아닙니다." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "가져온 설정과 차트 격자를 그리는데 실패했습니다. 기본 설정으로 적용중…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1592,65 +1595,65 @@ msgstr "가져온 설정과 차트 격자를 그리는데 실패했습니다. msgid "Import" msgstr "가져오기" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "모니터 설정 가져오기" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "가져올 파일을 선택하세요." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "가져오기를 수행하기 위한 파일이 서버에 없습니다!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "질의 분석" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "조언 시스템" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "가능한 성능 문제" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "이슈" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "추천" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "규칙 세부 사항" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "인증" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "사용된 변수 / 수식" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "테스트" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "잘못된 인자!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1662,60 +1665,60 @@ msgstr "잘못된 인자!" msgid "Cancel" msgstr "취소" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "페이지 관련 설정" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "적용" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "불러오는 중…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "요청이 취소되었습니다!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "요청 처리 중" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "요청에 실패했습니다!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "요청 처리 중 에러 발생" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "오류 코드: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "에러 메시지: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "데이터베이스를 선택하지 않았습니다." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "열 삭제 중" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "기본키 추가 중" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1725,55 +1728,55 @@ msgstr "기본키 추가 중" msgid "OK" msgstr "확인" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "클릭하면 이 알림을 받지 않습니다" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "데이터베이스 이름 변경 중" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "데이터베이스 복사 중" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "문자셋 변경 중" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "외래 키(foreign key) 점검 사용" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "실제 줄 갯수 알아오기 실패." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "검색중" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "검색 결과 숨기기" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "검색 결과 보이기" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "보기" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "삭제중" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "저장 함수의 정의는 RETURN문을 포함해야 합니다!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1789,44 +1792,44 @@ msgstr "저장 함수의 정의는 RETURN문을 포함해야 합니다!" msgid "Export" msgstr "내보내기" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET 수정" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "\"%s\" 열의 값" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "새로운 열의 값" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "각각의 필드에 값을 입력하세요." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "%d 값 추가" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "참고: 파일에 여러 테이블이 포함되어 있다면, 하나로 결합됩니다." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "질의 상자 숨기기" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "질의 상자 보이기" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1836,7 +1839,7 @@ msgstr "질의 상자 보이기" msgid "Edit" msgstr "수정" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1847,124 +1850,124 @@ msgstr "수정" msgid "Delete" msgstr "삭제" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d는 올바른 행번호가 아닙니다." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "외래값 탐색" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "변수 %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "고르기" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "컬럼 셀렉터" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "현재 리스트 검색" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "더 보기" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "정말로?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "컬럼 정의의 일부가 변경될 수도 있습니다.
계속하겠습니까?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "계속" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "기본키 추가" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "기본 키가 추가되었습니다." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "다음 단계로 가는 중…" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "정규화의 첫번째 단계는 테이블 '%s'를 완성하는 것이다." -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "단계의 끝" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "정규화의 두번째 단계 (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "완료" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "부분 의존성 확인" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "선택된 부분 의존성은 다음과 같다:" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "부분 의존성이 선택되지 않았습니다!" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "테이블의 데이터에 기초한 가능한 부분 의존성을 알려주세요" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "부분 의존성 목록을 숨김" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1972,41 +1975,41 @@ msgstr "" "잠시 기다리십시오! 데이터의 크기와 열의 갯수에 따라 수 초 가량 시간이 걸릴 " "수 있습니다." -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "단계" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "다음의 행동이 수행될 것이다:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "다음 테이블을 생성" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "정규화의 세번째 단계 (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "선택된 의존성은 다음과 같다:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "의존성이 선택되지 않았습니다!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2016,145 +2019,145 @@ msgstr "의존성이 선택되지 않았습니다!" msgid "Save" msgstr "저장" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "검색 조건 숨기기" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "검색 조건 보이기" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "범위 검색" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "열(컬럼) 최댓값:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "열(컬럼) 최솟값:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "최솟값:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "최댓값:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "찾기와 바꾸기 조건 숨김" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "찾기와 바꾸기 조건 보임" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "각 포인트는 데이터 행을 나타냅니다." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "포인트에 마우스를 올리면 라벨이 표시됩니다." -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "확대하려면 마우스로 플롯의 한 영역을 선택하세요." -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "줌 원래대로 보기 버튼을 클릭하면 원본 상태로 돌아갑니다." -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "데이터 포인트(플롯 지점)를 클릭하면 행의 열람과 편집이 가능합니다." -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "우측 하단 코너로 드래그하여 플롯을 확대할 수 있습니다." -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "두 개의 열 선택" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "두 개의 서로다른 열 선택" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "데이터 포인트 내용" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "무시" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "복사" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "포인트" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "줄(열) 구분자" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "폴리곤" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "기하데이터" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "내부 원" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "외부 원" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "암호화 키를 복사하겠습니까?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "암호화 키" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "참고키 선택" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "외래키 선택" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "기본키 혹은 유니크키를 선택하십시오!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "출력할 필드 선택" -#: js/messages.php:536 +#: js/messages.php:538 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?" @@ -2162,76 +2165,76 @@ msgstr "" "레이아웃의 변경을 저장하지 않았습니다. 저장하지 않으면, 변경사항이 손실됩니" "다. 이대로 계속 하시겠습니까?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "페이지 이름" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "페이지 저장" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "페이지를 다른 이름으로 저장" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "페이지 열기" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "페이지 삭제" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "제목 없음" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "계속할 페이지를 선택하세요" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "올바른 페이지 이름을 입력하세요" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "현재 페이지의 수정된 내용을 저장하겠습니까?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "페이지 삭제 성공" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "관계 스키마를 내보내기" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "수정된 내용이 저장되었습니다" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "컬럼 \"%s\"에 대한옵션 추가 ." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d 개의 개체가 생성되었습니다." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "확인" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "편집을 취소하려면 ESC를 누르세요." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2239,15 +2242,15 @@ msgstr "" "일부 데이터를 변경한 후 저장하지 않았습니다. 데이터를 저장하지 않고 페이지를 " "이동하기를 원합니까?" -#: js/messages.php:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "재정렬하려면 드래그하세요." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "이 열의 값에 따라 결과를 정렬하려면 누르세요." -#: js/messages.php:567 +#: js/messages.php:569 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 " @@ -2257,26 +2260,26 @@ msgstr "" "
- Ctrl+Click 또는 Alt+Click (맥: Shift+Option+Click) 으로 ORDER BY 절로" "부터 이 컬럼 제거" -#: js/messages.php:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "선택/해제하려면 클릭하세요." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "칼럼명을 복사하려면 더블클릭하세요." -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "칼럼보이기 여부를 바꾸려면
드롭다운 화살표를 클릭하세요." -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "모두 보기" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2284,11 +2287,11 @@ msgstr "" "이 테이블에는 유일 속성을 가진 컬럼이 없습니다. 저장 시에 격자창 편집, 체크박" "스, 편집, 복사, 삭제 등의 기능이 정상적으로 동작하지 않을 수 있습니다." -#: js/messages.php:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "올바른 16진수 문자열을 입력하세요. 사용가능한 문자는 0-9, A-F 입니다." -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2296,101 +2299,101 @@ msgstr "" "정말 모든 열을 보시겠습니까? 테이블 크기가 큰 경우 브라우저가 정지할 수 있습" "니다." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "원본 길이" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "취소" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "중지됨" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "성공" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "상태 가져오기" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "파일을 여기로 끌어오세요" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "데이터베이스를 먼저 선택하세요" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "인쇄" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "값을 더블클릭 하여 바로 수정할 수 있습니다.
(일부 제외)." -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "값을 클릭하여 바로 수정할 수 있습니다.
(일부 제외)." -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "다음 링크로 이동:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "컬럼 이름 복사." -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "마우스 오른쪽버튼을 클릭하여 클립보드에 컬럼 이름을 복사할 수 있습니다." -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "암호 생성" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "생성" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "더보기" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "패널 표시" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "패널 숨기기" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "숨겨진 탐색 트리의 항목보기." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "매인 패널에 링크" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "매인 패널에서 링크 해제" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" "요청하신 페이지를 기록에서 찾을 수 없습니다. 만기 되었을 수도 있습니다." -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2399,47 +2402,47 @@ msgstr "" "phpMyAdmin 업그레이드가 필요합니다. 최신버전은 %s이며 %s에 릴리즈 되었습니다." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", 최신 안정 버전:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "최신버전" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "뷰 생성" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "오류 보고서 전송" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "오류 보고서 제출" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "치명적인 자바스크립트 오류 발생. 오류를 전송할까요?" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "보고서 설정 변경" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "보고서 상세 보기" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "PHP의 실행시간 제한에 걸려 내보내기가 완료되지 않았습니다!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2448,58 +2451,58 @@ msgstr "" "경고: 현재 페이지의 폼 필드는 %d개가 넘습니다. 폼이 전송될 때 PHP의 " "max_input_vars 설정에 의해 일부 필드가 손실될 수 있습니다." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "서버 에러가 감지되었습니다!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "이 창의 아래쪽을 보세요." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "모두 무시" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "각 설정은 현재 전송중입니다. 기다려주세요." -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "이 질의를 다시 실행합니까?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "정말 이 북마크를 삭제하겠습니까?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "매개변수 보이기" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "매개변수 숨기기" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2508,355 +2511,355 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "데이터베이스를 복사합니다" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "테이블 접두사 추가:" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "테이블의 접두사를 교체" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "테이블에 접두사를 추가하여 복제" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "이전" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "다음" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "오늘" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "1월" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "2월" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "3월" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "4월" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "5월" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "6월" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "7월" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "8월" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "9월" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "10월" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "11월" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "12월" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "1월" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "2월" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "3월" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "4월" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "5월" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "6월" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "7월" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "8월" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "9월" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "10월" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "11월" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "12월" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "일요일" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "월요일" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "화요일" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "수요일" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "목요일" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "금요일" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "토요일" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "일" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "월" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "화" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "수" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "목" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "금" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "토" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "일" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "월" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "화" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "수" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "목" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "금" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "토" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "없음" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "시" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "분" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "초" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "해당 항목은 필수 항목입니다" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "이 필드를 수정하세요" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "올바른 이메일 주소를 입력하세요" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "올바른 URL을 입력하세요" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "올바른 날짜를 입력하세요" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "올바른 날짜(ISO 형식)를 입력하세요" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "올바른 숫자를 입력하세요" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "올바른 신용 카드 번호를 입력하세요" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "숫자만 입력해 주세요" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "같은 값을 한번 더 입력하세요" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "최소 {0} 글자 이상 입력해주세요" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "{0} 에서 {1} 사이의 값을 입력하세요" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "{0}과 같거나 작은 값을 입력하세요" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "{0}과 같거나 큰 값을 입력하세요" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "올바른 날짜 또는 시간을 입력하세요" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "올바른 HEX값을 입력하세요" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "오류" @@ -2908,33 +2911,33 @@ msgstr "" "%1$s 행에 알 수 없는 문자가 있습니다. 탭 문자가 있어야 하지만, \"%2$s\"가 있" "습니다." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "이미 존재하고 있는 환경설정 파일 (%s) 을 읽을 수 없습니다." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "설정 파일에 잘못된 권한이 지정되어있습니다. 익명 쓰기 권한이면 안됩니다!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "글꼴 크기" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "접기" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "펼치기" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "다시 쿼리하기" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2954,75 +2957,58 @@ msgstr "데이터베이스" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "총 %d 개의 북마크" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "공유" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "북마크 %1$s, %2$s 그리고 %3$s가 포함되었습니다" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "북마크 없음" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "설명" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "프로파일링" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "북마크" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "질의 실패" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "질의 실행 시간" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "SQL 질의 콘솔" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "콘솔" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "최근 기록" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3040,141 +3026,141 @@ msgstr "최근 기록" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "옵션" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "북마크" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "SQL 디버그" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Ctrl+Enter를 눌러 쿼리를 실행" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Enter를 눌러 쿼리를 실행" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "오름차순" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "내림차순" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "순서:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "개수" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "실행 순서" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "정렬 순서:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "그룹 질의" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "그룹 해제 질의" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "추적 보기" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "추적 숨기기" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "개수:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "다시 보기" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "추가" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "북마크 추가" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "레이블" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "대상 데이터베이스" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "이 북마크를 공유" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "기본값으로 초기화" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "항상 질의 메시지를 확장" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "시작할 때 질의 기록을 보여주기" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "어두운 테마로 변경" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "설정 파일을 읽는데 실패했습니다!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3182,19 +3168,19 @@ msgstr "" "서버가 응답하지 않습니다 (또는 로컬 서버의 소켓이 현재 제대로 구성되어 있지 " "않습니다)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "서버가 응답하지 않습니다." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "디렉토리를 포함하는 데이터베이스의 권한을 확인하십시오." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "자세히…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "관리사용자(controluser, 설정에 정의됨)로서의 접속에 실패." @@ -3505,7 +3491,7 @@ msgstr "근사값입니다. [doc@faq3-11]FAQ 3.11[/doc]를 참조하세요." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "쿼리가 성공적으로 실행되었습니다." @@ -3625,16 +3611,16 @@ msgstr "확장프로그램 때문에 파일 업로드가 중지되었습니다." msgid "Unknown error in file upload." msgstr "파일 업로드 중에 알 수 없는 오류가 발생했습니다." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "업로드된 파일을 이동시킬 수 없습니다. [doc@faq1-11]FAQ 1.11[/doc] 참조." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "업로드된 파일을 이동하는 중에 오류가 발생하였습니다." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "업로드한 파일을 읽을 수 없습니다." @@ -3698,8 +3684,8 @@ msgid "Keyname" msgstr "키 이름" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3749,13 +3735,13 @@ msgstr "인덱스 %s 를 제거했습니다." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "삭제" @@ -3854,7 +3840,7 @@ msgstr "사용권한" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "테이블 작업" @@ -3869,7 +3855,7 @@ msgstr "SQL 명령어 트래킹" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4240,11 +4226,11 @@ msgstr "%1$s의 외래키 생성 에러 (데이터 타입을 확인하세요)" msgid "No valid image path for theme %s found!" msgstr "%s 테마를 위한 올바른 이미지 경로를 찾을 수 없습니다!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "미리보기가 불가능합니다." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "사용하기" @@ -4552,21 +4538,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "공간(좌표)형" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "최대: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4577,36 +4563,36 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL 메시지: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL 해석" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "SQL 해석 생략" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP 코드 없이 보기" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "질의 실행" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "PHP 코드 보기" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "인라인 편집" @@ -4694,6 +4680,10 @@ msgstr "시간당" msgid "per day" msgstr "하루당" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "공유" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "검색:" @@ -4798,11 +4788,11 @@ msgstr "새 컬럼 추가" msgid "Attributes" msgstr "보기" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "설정 파일을 읽는데 실패했습니다!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4810,31 +4800,31 @@ msgstr "" "일반적으로 이것은 문법 오류가 있음을 의미합니다. 다음의 모든 오류를 확인하십" "시오." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "기본 설정을 가져올 수 없습니다: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "잘못된 서버 인덱스: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "서버 %1$s의 호스트 이름이 잘못되었습니다. 설정을 확인하십시오." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "서버 %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "설정 파일에 잘못된 인증 방식 설정되어 있습니다.:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4842,24 +4832,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s를 %s 이상으로 업그레이드 하십시오." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "오류: 토큰 불일치" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS 덮어쓰기 시도" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "어떤 공격을 받고있을 가능성이 있습니다" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "전역 변수에서 숫자로 된 키가 발견 되었습니다" @@ -5576,13 +5566,13 @@ msgstr "첫 줄에 열 이름을 넣기" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "열을 시작하는 문자" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "특수 문자 구분에 사용된 문자" @@ -5600,12 +5590,12 @@ msgstr "열 내의 CRLF 문자를 제거하기" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "열을 종료하는 문자" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "행을 종료하는 문자" @@ -6179,7 +6169,7 @@ msgid "Column names in first row" msgstr "첫행에 컬럼명 출력" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "가져오기시 비어있는 행 제외" @@ -7739,7 +7729,7 @@ msgid "Table %s has been emptied." msgstr "테이블 %s 을 비웠습니다." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -7874,8 +7864,8 @@ msgid "No data to display" msgstr "표시할 데이터 없음" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7917,53 +7907,53 @@ msgstr[0] "'%s'라는 컬럼명은 MySQL 예약어입니다." msgid "No column selected." msgstr "선택된 열이 없습니다." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "컬럼을 이동했습니다." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "질의 오류" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "변경" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "인덱스" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Fulltext" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "중복되지 않은 값" @@ -7973,7 +7963,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s 확장기능이 설치되지 않았습니다. PHP의 설정을 확인하십시오." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "변화 없음" @@ -8760,54 +8750,54 @@ msgstr "결과값이 없습니다. (빈 레코드 리턴)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "데이터베이스 이동: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "%s 에 대한 설정 변경" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "테이블 이동: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s 의 구조" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "뷰로 이동: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8853,48 +8843,48 @@ msgstr "또는" msgid "web server upload directory:" msgstr "웹 서버 업로드 디렉터리:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "편집/삽입" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "%s 개의 행을 추가로 삽입" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "이어서" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "새 행을 삽입합니다" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "새 행을 삽입하고 에러를 무시합니다" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "삽입 쿼리 보기" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "이전 페이지로 되돌아가기" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "새 행(레코드) 삽입하기" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "이 페이지로 되돌아가기" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "다음 행 수정" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -8902,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8914,11 +8904,11 @@ msgstr "TAB 키나 CTRL+화살표로 값 사이를 이동할 수 있습니다" msgid "Value" msgstr "값" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "SQL 쿼리 보기" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "삽입된 행의 id: %1$d" @@ -9767,7 +9757,7 @@ msgstr "테이블 복구" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "데이터나 테이블 삭제" @@ -9780,32 +9770,32 @@ msgid "Delete the table (DROP)" msgstr "테이블 삭제(DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "분석" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "검사" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "옵티마이저" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "리빌드" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "복구" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9833,37 +9823,37 @@ msgstr "파티셔닝 삭제" msgid "Check referential integrity:" msgstr "referential 무결성 검사:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "같은 테이블이 있어 옮길 수 없음!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "같은 테이블이 있어 복사할 수 없음!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "테이블 %s 을 %s 로 옮겼습니다." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "%s 테이블이 %s 으로 복사되었습니다." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "테이블명이 없습니다!" @@ -10044,7 +10034,7 @@ msgstr "데이터 덤프 옵션" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "테이블의 덤프 데이터" @@ -10068,21 +10058,21 @@ msgstr "정의" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "테이블 구조" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "뷰 구조" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10174,7 +10164,7 @@ msgid "Database:" msgstr "데이터베이스:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "데이터:" @@ -10277,7 +10267,7 @@ msgid "Data creation options" msgstr "데이터 생성 옵션" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "삽입 전에 테이블 비우기" @@ -10354,7 +10344,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10398,53 +10388,53 @@ msgstr "사용중" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "덤프된 테이블의 제약사항" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "테이블의 제약사항" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "덤프된 테이블의 인덱스" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "테이블의 인덱스" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "덤프된 테이블의 AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "테이블의 AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "뷰 구조" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "데이터 읽기 오류:" @@ -10476,7 +10466,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10494,15 +10484,15 @@ msgstr "" msgid "Column names: " msgstr "열(컬럼) 이름: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV를 가져오기 위한 파라미터가 잘못됨: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10511,20 +10501,20 @@ msgstr "" "지정한 컬럼(%s)이 잘못되었습니다. 각 컬럼의 이름에 대해, 오타가 없는지, 콤마" "로 구분되어 있는지 확인하시고, 컬럼 이름을 따옴표로 묶지 않도록 하세요." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, fuzzy, php-format #| msgid "Invalid rule declaration on line %s." msgid "Invalid format of CSV input on line %d." msgstr "%s 행에 잘못된 규칙 선언" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid rule declaration on line %s." msgid "Invalid column count in CSV input on line %d." msgstr "%s 행에 잘못된 규칙 선언" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "이 플러그인은 압축파일의 가져오기를 지원하지 않습니다!" @@ -10532,22 +10522,22 @@ msgstr "이 플러그인은 압축파일의 가져오기를 지원하지 않습 msgid "MediaWiki Table" msgstr "MediaWiki 테이블" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "잘못된 mediawiki 입력 행:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "퍼센테이지를 소수로 변경(예: 12.00% 를 .12 로)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "통화 단위 제거 (예: $5.00 를 5.00 로)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10555,7 +10545,7 @@ msgstr "" "해당 XML 파일의 포멧이 잘못되었거나 미완성 상태입니다. 문제점을 수정한 후 재" "시도 하세요." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Open Document 스프레드시트 형식을 해석할 수 없습니다!" @@ -10563,24 +10553,24 @@ msgstr "Open Document 스프레드시트 형식을 해석할 수 없습니다!" msgid "ESRI Shape File" msgstr "ESRI Shapefile" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "ESRI 형태의 파일을 가져오는 도중 에러가 발생했습니다: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" "가져오기한 파일이 잘못된 파일이거나 파일이 잘못된 값을 포함하고 있습니다!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "가져온 파일에 아무런 데이터도 없습니다!" @@ -10592,7 +10582,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13481,15 +13471,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -13504,17 +13490,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -13536,23 +13523,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "열린 테이블 수." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "열린 테이블 수." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -13585,17 +13572,17 @@ msgstr "이벤트 %1$s 를 생성했습니다." msgid "Variable name was expected." msgstr "파일명 템플릿" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "테이블의 처음" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13618,19 +13605,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "행을 삭제 하였습니다." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14332,7 +14319,7 @@ msgstr "테이블의 덤프(스키마) 데이터 보기" msgid "Invalid table name" msgstr "잘못된 테이블 이름" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15345,7 +15332,7 @@ msgid "at beginning of table" msgstr "테이블의 처음" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15392,7 +15379,7 @@ msgstr "파티션 있음" msgid "Edit partitioning" msgstr "파티셔닝 삭제" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "뷰 편집" @@ -15517,11 +15504,11 @@ msgstr "뷰 이름" msgid "Column names" msgstr "열(칼럼) 이름" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "뷰 이름 변경" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "뷰 삭제(DROP)" @@ -16740,6 +16727,13 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert가 0으로 설정되었습니다" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "총 %d 개의 북마크" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "북마크 %1$s, %2$s 그리고 %3$s가 포함되었습니다" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/ksh.po b/po/ksh.po index cde66cb7de..6e39893a39 100644 --- a/po/ksh.po +++ b/po/ksh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2014-10-02 15:09+0200\n" "Last-Translator: Purodha \n" "Language-Team: Colognian " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Alle ußwähle" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add a point" msgid "Add index" msgstr "Donn ene Pungk derbei" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "" -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1102,155 +1106,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1262,47 +1266,47 @@ msgstr "" msgid "None" msgstr "" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1310,136 +1314,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1447,7 +1451,7 @@ msgstr "" msgid "Status" msgstr "" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1457,82 +1461,82 @@ msgstr "" msgid "Time" msgstr "" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1541,63 +1545,63 @@ msgstr "" msgid "Import" msgstr "" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1609,60 +1613,60 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1672,59 +1676,59 @@ msgstr "" msgid "OK" msgstr "" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Select All" msgid "Renaming databases" msgstr "Alle ußwähle" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Select All" msgid "Copying database" msgstr "Alle ußwähle" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1740,44 +1744,44 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1787,7 +1791,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1798,164 +1802,164 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -1965,372 +1969,372 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "Alle ußwähle" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "not active" msgid "Show panel" msgstr "nit aktief" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2338,105 +2342,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2445,353 +2449,353 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Table" msgid "Copy tables to" msgstr "Tabäll" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "Alle ußwähle" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "" @@ -2841,32 +2845,32 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2886,77 +2890,60 @@ msgstr "Dahtebangk" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -2974,163 +2961,163 @@ msgstr "" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "not active" msgid "Show trace" msgstr "nit aktief" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy #| msgid "Select All" msgid "Target database" msgstr "Alle ußwähle" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Default" msgid "Set default" msgstr "Schtandatt" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3447,7 +3434,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3565,15 +3552,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3637,8 +3624,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3688,13 +3675,13 @@ msgstr "" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Falle lohße" @@ -3792,7 +3779,7 @@ msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "" @@ -3807,7 +3794,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4183,11 +4170,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -4450,21 +4437,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4475,36 +4462,36 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Created" msgid "Without PHP code" msgstr "Aanjelaat" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Created" msgid "Create PHP code" msgstr "Aanjelaat" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" @@ -4592,6 +4579,10 @@ msgstr "" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "" @@ -4700,41 +4691,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4742,24 +4733,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5426,13 +5417,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5450,12 +5441,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -6012,7 +6003,7 @@ msgid "Column names in first row" msgstr "" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -7395,7 +7386,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "" @@ -7528,8 +7519,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7568,52 +7559,52 @@ msgstr[2] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7623,7 +7614,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8354,54 +8345,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8447,53 +8438,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8505,11 +8496,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9333,7 +9324,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9346,32 +9337,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9397,35 +9388,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9594,7 +9585,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9618,21 +9609,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9722,7 +9713,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9814,7 +9805,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9883,7 +9874,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9925,52 +9916,52 @@ msgstr "weed jebruch" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10000,7 +9991,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10018,33 +10009,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10052,28 +10043,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10081,23 +10072,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10109,7 +10100,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -12814,15 +12805,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "" @@ -12835,17 +12822,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "" @@ -12863,19 +12851,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "" @@ -12901,15 +12889,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12930,15 +12918,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13596,7 +13584,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14499,7 +14487,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14533,7 +14521,7 @@ msgstr "Ein Tabäll" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14648,11 +14636,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/ky.po b/po/ky.po index a1c166caa9..21ea0e85ee 100644 --- a/po/ky.po +++ b/po/ky.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kyrgyz " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Баарын танда" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add a point" msgid "Add index" msgstr "Чекит кой" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "Database %1$s has been created." msgid "Template was deleted." msgstr "%1$s аттуу берилиштер базасы түзүлдү." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "" -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1121,155 +1124,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1281,47 +1284,47 @@ msgstr "" msgid "None" msgstr "" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1329,136 +1332,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1466,7 +1469,7 @@ msgstr "" msgid "Status" msgstr "Статус" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1476,82 +1479,82 @@ msgstr "Статус" msgid "Time" msgstr "" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1560,65 +1563,65 @@ msgstr "" msgid "Import" msgstr "" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Туура эмес параметрлер!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1630,62 +1633,62 @@ msgstr "Туура эмес параметрлер!" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Value for the column \"%s\"" msgid "Adding primary key" msgstr "\"%s\" мамычанын мааниси" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1695,59 +1698,59 @@ msgstr "\"%s\" мамычанын мааниси" msgid "OK" msgstr "" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Select All" msgid "Renaming databases" msgstr "Баарын танда" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Select All" msgid "Copying database" msgstr "Баарын танда" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1763,44 +1766,44 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1810,7 +1813,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1821,164 +1824,164 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -1988,377 +1991,377 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner ring %d:" msgid "Inner ring" msgstr "Ички шакекче %d:" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Сырткы шакекче:" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "\"%s\" мамычанын мааниси" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "Баарын танда" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Table comments:" msgid "Show panel" msgstr "Жадыбал жөнүндө маалымат:" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2366,107 +2369,107 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments:" msgid "Show arguments" msgstr "Жадыбал жөнүндө маалымат:" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2475,353 +2478,353 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Table comments:" msgid "Copy tables to" msgstr "Жадыбал жөнүндө маалымат:" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "Баарын танда" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "" @@ -2871,32 +2874,32 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2916,76 +2919,59 @@ msgstr "Берилиштер базасы" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3003,163 +2989,163 @@ msgstr "" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Table comments:" msgid "Show trace" msgstr "Жадыбал жөнүндө маалымат:" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy #| msgid "Select All" msgid "Target database" msgstr "Баарын танда" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Default" msgid "Set default" msgstr "Default" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3476,7 +3462,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3598,15 +3584,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3670,8 +3656,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3721,13 +3707,13 @@ msgstr "" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Алып сал" @@ -3825,7 +3811,7 @@ msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "" @@ -3840,7 +3826,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4213,11 +4199,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -4480,21 +4466,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4505,36 +4491,36 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Created" msgid "Without PHP code" msgstr "Жасалды" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Created" msgid "Create PHP code" msgstr "Жасалды" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" @@ -4622,6 +4608,10 @@ msgstr "" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "" @@ -4732,41 +4722,41 @@ msgstr "\"%s\" мамычанын мааниси" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4774,24 +4764,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5460,13 +5450,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5484,12 +5474,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -6046,7 +6036,7 @@ msgid "Column names in first row" msgstr "" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -7437,7 +7427,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "View %s has been dropped." @@ -7571,8 +7561,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7612,52 +7602,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7667,7 +7657,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8404,54 +8394,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8497,53 +8487,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8555,11 +8545,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9388,7 +9378,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9401,32 +9391,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9452,35 +9442,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9649,7 +9639,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9673,21 +9663,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9777,7 +9767,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9869,7 +9859,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9938,7 +9928,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9980,52 +9970,52 @@ msgstr "колдонууда" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10055,7 +10045,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10073,33 +10063,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10107,28 +10097,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10136,23 +10126,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10164,7 +10154,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -12886,15 +12876,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "Database %1$s has been created." @@ -12909,17 +12895,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "Database %1$s has been created." msgid "An alias was expected." @@ -12939,19 +12926,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "Database %1$s has been created." msgid "A rename operation was expected." @@ -12979,15 +12966,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13008,17 +12995,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13681,7 +13668,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14608,7 +14595,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14643,7 +14630,7 @@ msgstr "Тузуу:" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14760,11 +14747,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/li.po b/po/li.po index 274556324a..155e14c300 100644 --- a/po/li.po +++ b/po/li.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-12-29 15:36+0000\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: Limburgish " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "," -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1089,155 +1092,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1249,47 +1252,47 @@ msgstr "" msgid "None" msgstr "" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1297,136 +1300,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1434,7 +1437,7 @@ msgstr "" msgid "Status" msgstr "" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1444,82 +1447,82 @@ msgstr "" msgid "Time" msgstr "Tied" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1528,63 +1531,63 @@ msgstr "" msgid "Import" msgstr "" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "" -#: js/messages.php:350 +#: js/messages.php:352 #: 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,60 +1599,60 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1659,55 +1662,55 @@ msgstr "" msgid "OK" msgstr "" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1723,44 +1726,44 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1770,7 +1773,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1781,164 +1784,164 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -1948,368 +1951,368 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2317,105 +2320,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2424,349 +2427,349 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 msgid "Copy tables to" msgstr "" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "jannewarie" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "fibberwarie" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "miert" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "april" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "mei" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "juni" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "juli" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "augustus" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "september" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "oktober" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "november" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "dec" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Oer" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "secónd" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "" @@ -2816,32 +2819,32 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2861,76 +2864,59 @@ msgstr "Database" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -2948,157 +2934,157 @@ msgstr "" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3409,7 +3395,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3526,15 +3512,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3598,8 +3584,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3649,13 +3635,13 @@ msgstr "" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -3753,7 +3739,7 @@ msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "" @@ -3768,7 +3754,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4139,11 +4125,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -4406,21 +4392,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4431,32 +4417,32 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" @@ -4544,6 +4530,10 @@ msgstr "" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "" @@ -4648,41 +4638,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4690,24 +4680,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5364,13 +5354,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5388,12 +5378,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -5950,7 +5940,7 @@ msgid "Column names in first row" msgstr "" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -7332,7 +7322,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "" @@ -7462,8 +7452,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7501,52 +7491,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7556,7 +7546,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8275,54 +8265,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8368,53 +8358,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8426,11 +8416,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9250,7 +9240,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9263,32 +9253,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9314,35 +9304,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9511,7 +9501,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9535,21 +9525,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9639,7 +9629,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9731,7 +9721,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9800,7 +9790,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9842,52 +9832,52 @@ msgstr "" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -9917,7 +9907,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -9935,33 +9925,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -9969,28 +9959,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -9998,23 +9988,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10026,7 +10016,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -12727,15 +12717,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "" @@ -12748,17 +12734,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "" @@ -12776,19 +12763,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "" @@ -12814,15 +12801,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12843,15 +12830,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13509,7 +13496,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14405,7 +14392,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14438,7 +14425,7 @@ msgstr "" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14553,11 +14540,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/lt.po b/po/lt.po index 67b041be5a..750f51106a 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Lithuanian " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Išsaugoti į failą" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Atstatyti į pradinę būseną" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Pažymėti visas" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Trūksta reikšmės formoje!" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "bent vienas iš žodžių" -#: js/messages.php:118 +#: js/messages.php:120 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number!" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:119 +#: js/messages.php:121 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid length!" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Pridėti indeksą" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Redaguoti indeksą" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Pridėti %s stulpelį(-ius) į indeksą" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Sukurti sąryšį" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Sukurti sąryšį" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Columns enclosed with:" msgid "Composite with:" msgstr "Laukų reikšmės apskliaustos su:" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %s column(s) to index" msgid "Please select column(s) for the index." msgstr "Pridėti %s stulpelį(-ius) į indeksą" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Jūs turite pridėti bent vieną stulpelį (ar skiltį)." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "užklausa vykdoma" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "Paveiktos eilutės:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL užklausa" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y Reikšmės" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Tuščias prisijungimo adresas!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Tuščias vartotojo vardas!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Tuščias slaptažodis!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Slaptažodžiai nesutampa!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Šalinami pažymėti vartotojai" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Uždaryti" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Sukurtų puslapių skaičius." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profilis papildytas." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Eilutė buvo ištrinta" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Kita" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "," -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Prisijungimai / Procesai" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Failed to read configuration file" msgid "Local monitor configuration incompatible!" msgstr "Nepavyko perskaityti konfigūracijos failo" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1223,169 +1228,169 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Užklausų pagreitinimo (kešo) efektyvumas" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Užklausų pagreitinimo (kešo) naudojamumas" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Užklausų pagreitinimas (kešas) naudojamas" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Sistemos CPU naudojimas" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Sistemos atmintis" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Sistemos swap" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Vidutinis apkrovimas" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Iš viso atminties" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Podėlio atmintis" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Buferio atmintis" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Laisva atmintis" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Naudojama atmintis" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Iš viso Swap" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Podėlio Swap" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Naudojama swap" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Laisva Swap" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Išsiųsta baitų" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Gauta baitų" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Prisijungimai" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Procesai" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d lentelė(-ės)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Apkrovimas" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Nustatymai" -#: js/messages.php:215 +#: js/messages.php:217 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Pritraukti prie tinklelio" -#: js/messages.php:218 +#: js/messages.php:220 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "Prašome pridėti bent vieną kintamąjį į eilę" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1397,47 +1402,47 @@ msgstr "Prašome pridėti bent vieną kintamąjį į eilę" msgid "None" msgstr "Ne" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log ir slow_query_log yra įjungti." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log įjungtas." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log įjungtas." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log ir general_log yra išjungti." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1445,12 +1450,12 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time yra nustatytas į %d sekundė(-es/-žių)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1459,31 +1464,31 @@ msgstr "" "serverio pakartotino paleidimo:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Nustatyti log_output į %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Įjungti %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Išjungti %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Set long_query_time to %ds" msgid "Set long_query_time to %d seconds." msgstr "Nustatyti long_query_time į %ds" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1491,95 +1496,95 @@ msgstr "" "Jūs negalite pakeisti šių kintamųjų. Prašome prisijungti kaip root arba " "susisiekite su Jūsų duombazės administratoriumi." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Keisti nustatymus" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Dabartiniai nustatymai" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Diagramos antraštė" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Skirtumas" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Padalintas į %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Vienetas" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Analizuojami žurnalai" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Atsisakyti užklausos" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Eiti į žurnalo lentelę" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Duomenys nerasti" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analizuojama…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Paaiškinti išvestį" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1587,7 +1592,7 @@ msgstr "Paaiškinti išvestį" msgid "Status" msgstr "Būsena" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1597,88 +1602,88 @@ msgstr "Būsena" msgid "Time" msgstr "Laikas" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Iš viso užtruko:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Profiliavimo rezultatai" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Lentelė" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Diagrama" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 #, fuzzy #| msgid "Tables display options" msgid "Log table filter options" msgstr "Lentelių rodymo nustatymai" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filtras" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filtro užklausa pagal žodį/regexp:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Sugrupuoti užklausas, nepaisant kintamųjų duomenų WHERE dalyje" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Sugrupuotų eilučių suma:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Iš viso:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Įkeliami žurnalai" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Puslapį įkelti iš naujo" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Paveiktos eilutės:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Nepavyko išnagrinėti konfigūracinio failo. Atrodo, kad tai nėra teisingas " "JSON kodas." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Nepavyko sudaryti diagramos tinklelio su importuota konfigūracija. Nustatoma " "į numatytąją konfigūraciją…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1687,73 +1692,73 @@ msgstr "" msgid "Import" msgstr "Importuoti" -#: js/messages.php:326 +#: js/messages.php:328 #, fuzzy #| msgid "Could not import configuration" msgid "Import monitor configuration" msgstr "Nepavyko importuoti konfigūracijos" -#: js/messages.php:328 +#: js/messages.php:330 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import." msgstr "Prašome pasirinkti pirminį raktą arba unikalųjį raktą" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Atnaujinti užklausą" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Galimos našumo bėdos" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Bėda" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Rekomendacija" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Taisyklės detalės" -#: js/messages.php:340 +#: js/messages.php:342 #, fuzzy #| msgid "Authentication" msgid "Justification" msgstr "Atpažinimas" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Naudojamas kintamasis / formulė" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Išbandyti" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Blogi parametrai!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1765,72 +1770,72 @@ msgstr "Blogi parametrai!" msgid "Cancel" msgstr "Atšaukti" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Keisti nustatymus" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Įkeliama…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Vykdoma užklausa" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Užklausų saugykla" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Error in processing request" msgid "Error in processing request" msgstr "Klaida vykdant užklausą" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Nepažymėjote duomenų bazės." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Šalinamas stulpelis" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Pridėti pirminį raktą" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1840,67 +1845,67 @@ msgstr "Pridėti pirminį raktą" msgid "OK" msgstr "Gerai" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Paspauskite, kad praleistumėte šį perspėjimą" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Keičiamas duomenų bazės pavadinimas" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Kopijuojama duomenų bazė" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Keičiama koduotė" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Atsisakyti išorinių raktų tikrinimo" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "Nepavyko gauti/priimti antraščių" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Ieškoma" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Slėpti paieškos rezultatus" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Rodyti paieškos rezultatas" -#: js/messages.php:386 +#: js/messages.php:388 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Peržiūrėti" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Šaliname" -#: js/messages.php:391 +#: js/messages.php:393 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:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1916,47 +1921,47 @@ msgstr "Apibrėžimas „stored“ funkcijos turi turėti RETURN teiginį!" msgid "Export" msgstr "Eksportuoti" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET redaktorius" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Stulpelio „%s“ reikšmės" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Reikšmės naujajam stulpeliui" -#: js/messages.php:398 +#: js/messages.php:400 #, 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:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Pridėti %d reikšmę(-es)" -#: js/messages.php:403 +#: js/messages.php:405 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:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Slėpti užklausos laukelį" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Rodyti užklausos laukelį" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1966,7 +1971,7 @@ msgstr "Rodyti užklausos laukelį" msgid "Edit" msgstr "Redaguoti" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1977,96 +1982,96 @@ msgstr "Redaguoti" msgid "Delete" msgstr "Trinti" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 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:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Naršyti išorines reikšmes" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Kintamasis" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Nepasirinkti įrašai" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Paieška duomenų bazėje" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Laisva atmintis" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "Prisidėti" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Pridėti pirminį raktą" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Stulpeliui %s sukurtas PIRMINIS raktas." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Sekimo ataskaita" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2074,90 +2079,90 @@ msgstr "" msgid "End of step" msgstr "Eilutės galas" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Atlikta" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Nepažymėjote duomenų bazės." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 #, 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:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Sukurti privilegijas šiai lentelei" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Nepažymėjote duomenų bazės." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2167,439 +2172,439 @@ msgstr "Nepažymėjote duomenų bazės." msgid "Save" msgstr "Išsaugoti" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Slėpti paieškos kriterijų" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Rodyti paieškos kriterijų" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Paieška" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "Stulpelių vardai: " -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "Stulpelių vardai: " -#: js/messages.php:477 +#: js/messages.php:479 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "Didžiausias skaičius lentelių" -#: js/messages.php:478 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "Didžiausias skaičius lentelių" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "Slėpti paieškos kriterijų" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "Rodyti paieškos kriterijų" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Pasirinkite du stulpelius" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Pasirinkite du skirtingus stulpelius" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Duomenų rodyklės dydis" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignoruoti" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Kopijuoti" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Taškas" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Atkarpų seka" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Daugiakampis" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometrija" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Vidinis žiedas" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Išorinis žiedas:" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Pasirinkite siejamą raktą" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Pasirinkti Foreign Key" -#: js/messages.php:533 +#: js/messages.php:535 #, 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "Puslapio vardas" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "Pasirinkite puslapį" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Vienetas" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Pasirinkite puslapį redagavimui" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Keisti arba eksportuoti ryšių schemą" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Pakeitimai išsaugoti" -#: js/messages.php:554 +#: js/messages.php:556 #, 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:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Siųsti" -#: js/messages.php:559 +#: js/messages.php:561 #, 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:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "Vilkite, kad pertvarkytumėte" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "Paspauskite, kad (at)pažymėti" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Stulpelių vardai" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Rodyti viską" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Pirminė padėtis" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Atšaukti" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Nutraukta" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Importuoti numatytąsias reikšmes" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Pasirinkite lenteles" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Spausdinti" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "Eiti pagal nuorodą" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Stulpelių vardai" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Generuoti slaptažodį" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Generuoti" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Daugiau" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Rodyti viską" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "Nerodyti indeksų" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Logotipą rodyti kairiame rėmelyje" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Adaptuoti pagrindinė rėmelį" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Adaptuoti pagrindinė rėmelį" -#: js/messages.php:639 +#: js/messages.php:641 #, 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2609,124 +2614,124 @@ msgstr "" "atnaujinimą. Naujausia versija yra %s, išleista %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", naujausia stabili versija:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "naujausias" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Sukurti rodinį" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Serverio jungtis" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Serverio jungtis" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Keisti nustatymus" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Rodyti atidarytas lenteles" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoruoti" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Rodyti šią užklausą vėl" -#: js/messages.php:700 +#: js/messages.php:702 #, 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:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Įvykdytos užklausos" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Lentelės komentarai" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Slėpti paieškos rezultatus" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2735,36 +2740,36 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopijuoti duomenų bazę į" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix" msgid "Add table prefix" msgstr "Pridėti lentelės priešdėlį" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Pakeisti lentelės pavadinimo priešdėlį" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopijuoti lentelę su pavadinimo priešdėliu" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Ankstesnis" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2772,149 +2777,149 @@ msgid "Next" msgstr "Kitas" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Šiandien" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "sausio" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "vasario" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "kovo" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "balandžio" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Geg" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "birželio" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "liepos" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "rugpjūčio" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "rugsėjo" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "spalio" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "lapkričio" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "gruodžio" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Sau" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Vas" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Kov" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Bal" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Geg" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Bir" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Lie" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Rgp" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Rgs" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Spa" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Lap" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Grd" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Sekmadienis" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Pirmadienis" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Antradienis" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Trečiadienis" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Ketvirtadienis" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Penktadienis" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Šeštadienis" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2922,207 +2927,207 @@ msgid "Sun" msgstr "Sek" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Pir" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Ant" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Tre" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Ket" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Pen" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Šeš" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Sk" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Pr" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "An" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Tr" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Kt" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Pn" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Št" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Ne" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Valanda" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minutė" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Sekundės" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Naudokite teksto įvedimo lauką" -#: js/messages.php:886 +#: js/messages.php:888 #, 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:889 #, 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:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:925 +#: js/messages.php:927 #, 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:930 +#: js/messages.php:932 #, 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:936 +#: js/messages.php:938 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Klaida" @@ -3177,35 +3182,35 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Esamo konfigūracinio failo (%s) neina nuskaityti." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Blogos teisės konfigūracinio failo, neturėtų būti įrašymo galimybė visiems!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Šrifto dydis" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "Query" msgid "Requery" msgstr "SQL užklausa" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3224,96 +3229,77 @@ msgid "Database" msgstr "Duomenų bazė" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Delete relation" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Ištrinti sąryšį" -msgstr[1] "Ištrinti sąryšį" -msgstr[2] "Ištrinti sąryšį" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "padalintas" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "Nuoroda ištrinta." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Ištrinti sąryšį" -#: libraries/Console.php:186 +#: libraries/Console.php:168 #, fuzzy #| msgid "Skip current error" msgid "During current session" msgstr "Praleisti šią klaidą" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "Paaiškinti SQL" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profiliavimas" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Bookmark table" msgid "Bookmark" msgstr "Pažymėti lentelę" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query cache" msgid "Query failed" msgstr "Užklausų saugykla" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "Query execution time" msgid "Queried time" msgstr "Užklausos vykdymo laikas" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "SQL užklausos langelis" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Išvalyti" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "SQL užklausų istorija" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3331,183 +3317,183 @@ msgstr "SQL užklausų istorija" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Nustatymai" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Bookmark table" msgid "Bookmarks" msgstr "Pažymėti lentelę" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Derinti SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute every" msgid "Press Ctrl+Enter to execute query" msgstr "Vykdyti kas" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute every" msgid "Press Enter to execute query" msgstr "Vykdyti kas" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Didėjimo tvarka" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Mažėjimo tvarka" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Other" msgid "Order:" msgstr "Kita" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "Stulpelis" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute every" msgid "Execution order" msgstr "Vykdyti kas" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Other" msgid "Order by:" msgstr "Kita" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "SQL užklausos" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "SQL užklausos" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Rodyti spalvą" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide indexes" msgid "Hide trace" msgstr "Nerodyti indeksų" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "Stulpelis" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Atnaujinti" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "Ir" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Delete relation" msgid "Add bookmark" msgstr "Ištrinti sąryšį" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "Nuorodos Antraštė" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Į duomenų bazę" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Delete relation" msgid "Share this bookmark" msgstr "Ištrinti sąryšį" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Reset to default" msgid "Set default" msgstr "Atstatyti numatytąsias reikšmes" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "SQL query history table" msgid "Show query history at start" msgstr "SQL užklausų žurnalo lentelė" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Pereiti į lentelės kopiją" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "Nepavyko perskaityti konfigūracijos failo" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -3515,21 +3501,21 @@ msgid "" "configured)." msgstr "(arba vietiniai MySQL serverio socketai yra blogai sukonfigūruoti)" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Serveris neatsako" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Detalės…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3892,7 +3878,7 @@ msgstr "Gali būti apytikslis. Žiūrėkite [doc@faq3-11]DUK 3.11[/doc]" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4026,17 +4012,17 @@ msgstr "Failo įkėlimas sustabdytas dėl failo plėtinio." msgid "Unknown error in file upload." msgstr "Nežinoma klaida failų įkėlime." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Klaida perkeliant įkeltą failą, žiūrėti [doc@faq1-11]DUK 1.11[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Klaida perkeliant atsiųstą failą." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -4106,8 +4092,8 @@ msgid "Keyname" msgstr "Indekso pavadinimas" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4157,13 +4143,13 @@ msgstr "Indeksas %s ištrintas." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Šalinti" @@ -4262,7 +4248,7 @@ msgstr "Privilegijos" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Veiksmai" @@ -4277,7 +4263,7 @@ msgstr "Sekimas" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4694,11 +4680,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "Nerasta tinkamo paveiksliukų kelio temai %s!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Peržiūra negalima." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "pasirinkti" @@ -4971,23 +4957,23 @@ msgctxt "spatial types" msgid "Spatial" msgstr "" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Didžiausias dydis: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Statiniai duomenys" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4998,38 +4984,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL atsakymas: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Paaiškinti SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Praleisti SQL užklausos aiškinimą" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "be PHP kodo" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Vykdyti užklausą" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP kodas" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5121,6 +5107,10 @@ msgstr "per valandą" msgid "per day" msgstr "per dieną" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "padalintas" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5239,13 +5229,13 @@ msgstr "Pridėti stulpelį" msgid "Attributes" msgstr "Atributai" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to read configuration file!" msgstr "Nepavyko perskaityti konfigūracijos failo" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -5253,32 +5243,32 @@ msgstr "" "Tai dažniausiai reiškia, kad yra įvelta sintaksės klaida, prašome patikrinti " "žemiau esančias klaidas." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nepavyko užkrauti numatytų nustatymų failo iš: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Blogas serverio indeksas: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Blogas serverio %1$s hostname. Prašome peržiūrėti nustatymus." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Serveris" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Blogai nustatytas identifikavimo metodas nustatymuose:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5286,24 +5276,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Rekomenduojame atnaujint %s iki %s ar vėlesnės versijos." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "galimas pažeidžiamumas" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6123,7 +6113,7 @@ msgstr "Stulpelių pavadinimus įrašyti pirmoje eilutėje" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Columns enclosed with:" msgid "Columns enclosed with" @@ -6131,7 +6121,7 @@ msgstr "Laukų reikšmės apskliaustos su:" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Columns escaped with:" msgid "Columns escaped with" @@ -6153,14 +6143,14 @@ msgstr "Pašalinti CRLF simbolius laukeliuose" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "Laukai baigiasi" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated with:" msgid "Lines terminated with" @@ -6840,7 +6830,7 @@ msgid "Column names in first row" msgstr "Stulpelių pavadinimai pirmoje eilutėje" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Neimportuoti tuščių eilučių" @@ -8646,7 +8636,7 @@ msgid "Table %s has been emptied." msgstr "Lentelės reikšmės %s ištuštintos." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8787,8 +8777,8 @@ msgid "No data to display" msgstr "Nėra duomenų" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8839,55 +8829,55 @@ msgstr[2] "" msgid "No column selected." msgstr "Nepasirinkti įrašai" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Užklausos klaida" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Redaguoti" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeksas" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Fulltext" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8899,7 +8889,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s plėtinys nerastas. Prašome patikrinti PHP nustatymus." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nėra pakeitimų" @@ -9707,18 +9697,18 @@ msgstr "MySQL gražino tuščią rezultatų rinkinį (nėra eilučių)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 #, 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:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9727,45 +9717,45 @@ msgid "" msgstr "" "Keisti bet kuriuos iš šių nustatymų spauskite atitinkamą „Nustatymai“ nuorodą" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 #, 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:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Eiti į duomenų bazę" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Keisti nustatymus %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Eiti į lentelę" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struktūra %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Eiti į rodinį (view)" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9815,50 +9805,50 @@ msgstr "Arba" msgid "web server upload directory:" msgstr "web serverio katalogas atsiuntimams" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Įterpti" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Tęstį įterpimą su %s eilučių" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "ir tada" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Įterpti kaip naują įrašą" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Įterpti kaip naują eilutę ir ignoruoti klaidas" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Rodyti įterptą užklausą" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Sugrįžti į buvusį puslapį" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Įterpti kitą naują eilutę" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Grįžti atgal į šį puslapį" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Redaguoti kitą įrašą" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9867,7 +9857,7 @@ msgid "" msgstr "" "Šokinėjimui tarp reikšmių naudokite TAB mygtuką arba naudokite CTRL+rodyklės" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9879,11 +9869,11 @@ msgstr "" msgid "Value" msgstr "Reikšmė" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Rodoma SQL užklausa" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Įterpto įrašo id: %1$d" @@ -10765,7 +10755,7 @@ msgstr "Taisyti lentelę" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Ištrinti duomenis arba lentelę" @@ -10778,32 +10768,32 @@ msgid "Delete the table (DROP)" msgstr "Ištrinti lentelę (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analizuoti" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Pažymėti" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimizuoti" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Perdaryti" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Taisyti" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10831,37 +10821,37 @@ msgstr "Pašalinti skaidymą" msgid "Check referential integrity:" msgstr "Patikrinti sąryšių vientisumą:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Negalima perkelti lentelės į ją pačią!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Negalima kopijuoti lentelės į ją pačią!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Lentelė %s perkelta į %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Letelė %s nukopijuota į %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Tuščias lentelės vardas!" @@ -11044,7 +11034,7 @@ msgstr "Duomenų išvedimo nustatymai" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Sukurta duomenų kopija lentelei" @@ -11070,21 +11060,21 @@ msgstr "Paaiškinimas" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Sukurta duomenų struktūra lentelei" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktūra peržiūrėjimui" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Tik struktūra rodiniui" @@ -11190,7 +11180,7 @@ msgid "Database:" msgstr "Duomenų bazė" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11307,7 +11297,7 @@ msgid "Data creation options" msgstr "Objekto kūrimo nustatymai" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11392,7 +11382,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11438,61 +11428,61 @@ msgstr "šiuo metu naudojama" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Apribojimai eksportuotom lentelėm" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Apribojimai lentelei" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Apribojimai eksportuotom lentelėm" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Viduje lentelių:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Pridėti AUTO_INCREMENT reikšmę" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPAI LENTELEI" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "SĄRYŠIAI LENTELEI" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Klaida skaitant duomenis:" @@ -11526,7 +11516,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11546,15 +11536,15 @@ msgstr "" msgid "Column names: " msgstr "Stulpelių vardai: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Negalimas parametras CSV importavimui: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -11563,18 +11553,18 @@ msgstr "" "Blogai nurodyti stulpeliai (%s)! Įsitikinkite, kad stulpelių vardai parašyti " "gerai, atskirti kableliais ir apskliausti (apimti, aptverti) kabutėmis." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Neteisingas CSV įvedimo formatas eilutėje %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Neteisingas stulpelių skaičius CSV įvedimo eilutėje %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Priedas nepalaiko suglaudintų importų!" @@ -11582,24 +11572,24 @@ msgstr "Priedas nepalaiko suglaudintų importų!" msgid "MediaWiki Table" msgstr "MediaWiki lentelė" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." msgstr "Neteisingas CSV įvedimo formatas eilutėje %d." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" "Importuoti procentus kaip dešimtainius (pavyzdžiui. 12.00% į .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importuoti valiutas (pavyzdžiui. $5.00 į 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -11607,7 +11597,7 @@ msgstr "" "XML failo specifikacija yra neteisinga arba neišbaigta. Prašome pataisyti " "klaidas ir bandyti dar kartą." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11617,23 +11607,23 @@ msgstr "Open Document skaičiuoklė" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "This page does not contain any tables!" msgid "The imported file does not contain any data!" @@ -11647,7 +11637,7 @@ msgstr "SQL suderinamumo režimas:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nenaudokite AUTO_INCREMENT nulinėms reikšmėms" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14729,15 +14719,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14752,17 +14738,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14784,23 +14771,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Lentelių kurios yra atidarytos skaičius." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Lentelių kurios yra atidarytos skaičius." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14831,17 +14818,17 @@ msgstr "Įvykis %1$s buvo sukurtas." msgid "Variable name was expected." msgstr "Lentelės vardo šablonas" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Lentelės pradžioje" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14862,19 +14849,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15589,7 +15576,7 @@ msgstr "Peržiūrėti lentelės struktūros atvaizdį" msgid "Invalid table name" msgstr "Neteisingas lentelės vardas" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16700,7 +16687,7 @@ msgid "at beginning of table" msgstr "Lentelės pradžioje" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16747,7 +16734,7 @@ msgstr "Skaidinys %s" msgid "Edit partitioning" msgstr "Pašalinti skaidymą" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Keisti rodinį" @@ -16878,11 +16865,11 @@ msgstr "VIEW pavadinimas" msgid "Column names" msgstr "Stulpelių vardai" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Pervadinti rodinį į" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Delete the table (DROP)" msgid "Delete the view (DROP)" @@ -18073,6 +18060,19 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "MyISAM concurrent įterpimai" +#, fuzzy +#~| msgid "Delete relation" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Ištrinti sąryšį" +#~ msgstr[1] "Ištrinti sąryšį" +#~ msgstr[2] "Ištrinti sąryšį" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "Nuoroda ištrinta." + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/lv.po b/po/lv.po index 58c67f0615..84ce589b9a 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-01-23 11:11+0000\n" "Last-Translator: Arturs Nikolajevs \n" "Language-Team: Latvian " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Saglabāt kā failu" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Atcelt" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Iezīmēt visu" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Formā trūkst vērtību!" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "kaut viens no vārdiem" -#: js/messages.php:118 +#: js/messages.php:120 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid number!" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:119 +#: js/messages.php:121 #, fuzzy #| msgid "Please enter a valid length" msgid "Please enter a valid length!" msgstr "Lūdzu ievadiet derīgu garumu" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Pievienot jaunu lauku" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Labot indeksu" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Pievienot %s lauku(s) indeksam" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Servera versija" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Servera versija" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Lauki iekļauti iekš" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %s column(s) to index" msgid "Please select column(s) for the index." msgstr "Pievienot %s lauku(s) indeksam" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Izvēlieties vismaz vienu kolonnu attēlošanai" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "vaicājumā" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "Aizskartās rindas:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL vaicājums" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y Vērtība" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Hosts nav norādīts!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Lietotāja vārds nav norādīts!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Parole nav norādīta!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Paroles nesakrīt!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Dzēš izvēlētos lietotājus" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Aizvērt" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy msgid "Template was created." msgstr "Tabula %s tika izdzēsta" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profils tika modificēts." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Ieraksts tika dzēsts" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Cits" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Savienojumi / Procesi" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1191,161 +1196,161 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Vaicājuma kešatmiņas efektivitāte" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Pieprasījumu kešatmiņas lietojums" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Izmantotā pieprasījumu kešatmiņa" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Sistēmas CPU noslodze" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Sistēmas atmiņa" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Vidējais noslogojums" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Kopējā atmiņa" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Brīvā atmiņa" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Izmantotā atmiņa" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Kopā" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Diska vietas lietošana" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Nosūtītie baiti" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Saņemtie baiti" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Konekcijas" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Procesi" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "baiti" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabula(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Jautājumi" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Datu apmaiņa" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Uzstādījumi" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1357,47 +1362,47 @@ msgstr "" msgid "None" msgstr "Nav" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1405,139 +1410,139 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Saglabāt log_output kā %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Ieslēgt %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Izslēgt %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "Vaicājums ilga %01.4f s" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Mainīt uzstādījumus" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Pašreizējie uzstādījumi" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "Importēt failus" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Vienība" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Analizē žurnālus" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Atcelt pieprasījumu" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Pāriet uz žurnālu tabulu" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Dati netika atrasti" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analizē…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Izskaidrot izvadu" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1545,7 +1550,7 @@ msgstr "Izskaidrot izvadu" msgid "Status" msgstr "Statuss" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1555,88 +1560,88 @@ msgstr "Statuss" msgid "Time" msgstr "Laiks" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Kopējais laiks:" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "SQL rezultāts" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tabula" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Diagramma" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Žurnālu tabulas filtrēšanas opcijas" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filtrs" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 #, fuzzy #| msgid "Number of rows per page" msgid "Sum of grouped rows:" msgstr "Rindu skaits vienā lapā" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Kopā:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Ielādē žurnālus" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Pārlādēt lapu" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Aizskartās rindas:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1645,71 +1650,71 @@ msgstr "" msgid "Import" msgstr "Imports" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 #, fuzzy #| msgid "Please select the file you want to import" msgid "Please select the file you want to import." msgstr "Lūdzu izvēlies importējamo failu" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "Analizēt pieprasījumu" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Problēma" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Ieteikums" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Noteikuma detaļas" -#: js/messages.php:340 +#: js/messages.php:342 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Dokumentācija" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Tests" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Nepareizi parametri!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1721,71 +1726,71 @@ msgstr "Nepareizi parametri!" msgid "Cancel" msgstr "Atcelt" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Mainīt uzstādījumus" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Ielādē…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Apstrādā pieprasījumu" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy msgid "Request failed!!" msgstr "Vaicājuma tips" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Kļūdas kods: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Kļūdas teksts: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Datubāze nav izvēlēta." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Procedure" msgid "Dropping column" msgstr "Procesi" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "Pievienot %s lauku(s)" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1795,63 +1800,63 @@ msgstr "Pievienot %s lauku(s)" msgid "OK" msgstr "Labi" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Pārsauc datubāzes" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Kopē datubāzi" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Maina kodējumu" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Nepārbaudīt ārējās atslēgas" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Meklē" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Slēpt meklēšanas rezultātus" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Rādīt meklēšanas rezultātus" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Apskata" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Dzēš" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1867,44 +1872,44 @@ msgstr "" msgid "Export" msgstr "Eksports" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Tabulas %s vērtības" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Pievienot jaunu lietotāju" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Slēpt pieprasījumu logu" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Rādīt pieprasījumu logu" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1914,7 +1919,7 @@ msgstr "Rādīt pieprasījumu logu" msgid "Edit" msgstr "Labot" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1925,96 +1930,96 @@ msgstr "Labot" msgid "Delete" msgstr "Dzēst" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Pārlūkot ārējās vērtības" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Mainīgais" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No column selected." msgid "Column selector" msgstr "Nav izvēlēta kolonna." -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Meklēt datubāzē" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Brīvā atmiņa" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "Piedalies" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 #, 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:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Labot" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2022,90 +2027,90 @@ msgstr "" msgid "End of step" msgstr "Tabulas beigās" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 #, fuzzy #| msgid "None" msgid "Done" msgstr "Nav" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Datubāze nav izvēlēta." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Pievienot privilēģijas uz sekojošo tabulu" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Datubāze nav izvēlēta." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2115,189 +2120,189 @@ msgstr "Datubāze nav izvēlēta." msgid "Save" msgstr "Saglabāt" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Slēpt meklēšanas kritērijus" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Rādīt meklēšanas kritērijus" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Meklēt" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Kolonnu nosaukumi" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Kolonnu nosaukumi" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "Slēpt meklēšanas kritērijus" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "Rādīt meklēšanas kritērijus" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Izvēlies 2 kolonnas" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Izvēlies 2 dažādas kolonnas" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Satura rādītājs" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignorēt" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Kopēt" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Punkts" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Līnija" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Ģeometrija" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Iekšējais aplis" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Ārējais aplis:" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Lapas numurs:" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2305,243 +2310,243 @@ msgstr "Iezīmēt visu" msgid "Open page" msgstr "Aizņem" -#: js/messages.php:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Iezīmēt visu" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Vienība" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Izvēlieties lapu redigēšanai" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid page name" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Relāciju shēma" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Labojumi tika saglabāti" -#: js/messages.php:554 +#: js/messages.php:556 #, 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:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Nosūtīt" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Kolonnu nosaukumi" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Rādīt visu" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Oriģinālā pozīcija" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Atcelt" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Pārtraukts" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy msgid "Import status" msgstr "Importēt failus" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Izvēlieties tabulas" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Drukāt" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy msgid "Go to link:" msgstr "Nav datubāzu" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Kolonnu nosaukumi" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Mainīt paroli" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 #, fuzzy msgid "Generate" msgstr "Uzģenerēja" -#: js/messages.php:628 +#: js/messages.php:630 #, fuzzy #| msgid "Mon" msgid "More" msgstr "P" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Rādīt visu" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Pievienot jaunu lauku" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Rādīt režģi" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy msgid "Link with main panel" msgstr "Datubāzu eksporta opcijas" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy msgid "Unlink from main panel" msgstr "Datubāzu eksporta opcijas" -#: js/messages.php:639 +#: js/messages.php:641 #, 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2549,122 +2554,122 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 #, fuzzy msgid "up to date" msgstr "Nav datubāzu" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy msgid "Create view" msgstr "Servera versija" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy msgid "Send error report" msgstr "Servera ID" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy msgid "Submit error report" msgstr "Servera ID" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Mainīt uzstādījumus" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy msgid "Show report details" msgstr "Rādīt tabulas" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignorēt" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Rādīt šo vaicājumu šeit atkal" -#: js/messages.php:700 +#: js/messages.php:702 #, 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:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL vaicājums" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentārs tabulai" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Slēpt meklēšanas rezultātus" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2673,38 +2678,38 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopēt datubāzi uz" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Pievienot jaunu lauku" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Aizvietot tabulas datus ar datiem no faila" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Aizvietot tabulas datus ar datiem no faila" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Iepriekšējie" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2712,96 +2717,96 @@ msgid "Next" msgstr "Nākamie" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Kopā" -#: js/messages.php:755 +#: js/messages.php:757 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binārais" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:758 +#: js/messages.php:760 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Mai" -#: js/messages.php:760 +#: js/messages.php:762 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jūn" -#: js/messages.php:761 +#: js/messages.php:763 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jūl" -#: js/messages.php:762 +#: js/messages.php:764 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2809,78 +2814,78 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Jūn" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Jūl" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Dec" -#: js/messages.php:801 +#: js/messages.php:803 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Sv" -#: js/messages.php:802 +#: js/messages.php:804 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "P" -#: js/messages.php:803 +#: js/messages.php:805 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "O" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pk" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2888,225 +2893,225 @@ msgid "Sun" msgstr "Sv" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "P" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "O" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "T" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "C" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Pk" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "S" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Sv" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "O" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 #, fuzzy #| msgid "Wed" msgid "We" msgstr "T" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "C" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pk" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "S" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Nav" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lietošanā" -#: js/messages.php:873 +#: js/messages.php:875 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekundē" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Lietot teksta lauku" -#: js/messages.php:886 +#: js/messages.php:888 #, 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:889 #, 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:890 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date ( ISO )" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid number" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:896 +#: js/messages.php:898 #, 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:898 +#: js/messages.php:900 #, fuzzy #| msgid "Please enter a valid length" msgid "Please enter only digits" msgstr "Lūdzu ievadiet derīgu garumu" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter the same value again" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter at least {0} characters" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, 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:925 +#: js/messages.php:927 #, 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:930 +#: js/messages.php:932 #, 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:936 +#: js/messages.php:938 #, 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:941 +#: js/messages.php:943 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid HEX input" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Kļūda" @@ -3156,34 +3161,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "in query" msgid "Requery" msgstr "vaicājumā" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3202,91 +3207,72 @@ msgid "Database" msgstr "Datubāze" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Search" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Meklēt" -msgstr[1] "Meklēt" -msgstr[2] "Meklēt" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "Ieraksts tika dzēsts." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "Meklēt" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "Izskaidrot SQL" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Search" msgid "Bookmark" msgstr "Meklēt" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy msgid "Query failed" msgstr "Vaicājuma tips" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy msgid "SQL Query Console" msgstr "SQL vaicājums" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 #, fuzzy msgid "Clear" msgstr "Kalendārs" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "SQL vēsture" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3304,10 +3290,10 @@ msgstr "SQL vēsture" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 @@ -3315,188 +3301,188 @@ msgstr "SQL vēsture" msgid "Options" msgstr "Darbības" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Search" msgid "Bookmarks" msgstr "Meklēt" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Ctrl+Enter to execute query" msgstr "Izpildīt iegrāmatoto vaicājumu" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Enter to execute query" msgstr "Izpildīt iegrāmatoto vaicājumu" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Augošā secībā" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Dilstošā secībā" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Other" msgid "Order:" msgstr "Cits" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "Lauks" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execution order" msgstr "Izpildīt iegrāmatoto vaicājumu" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Other" msgid "Order by:" msgstr "Cits" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy msgid "Group queries" msgstr "SQL vaicājums" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy msgid "Ungroup queries" msgstr "SQL vaicājums" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Rādīt krāsas" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Add new field" msgid "Hide trace" msgstr "Pievienot jaunu lauku" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "Lauks" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Atjaunot" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "Un" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Search" msgid "Add bookmark" msgstr "Meklēt" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "Nosaukums" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy msgid "Target database" msgstr "Meklēt datubāzē" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Search" msgid "Share this bookmark" msgstr "Meklēt" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy msgid "Set default" msgstr "Importēt failus" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy msgid "Show query history at start" msgstr "SQL vaicājums" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Pārslēgties uz nokopēto tabulu" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Serveris neatbild" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3875,7 +3861,7 @@ msgstr "Var būt aptuvens skaits. Skatīt [doc@faq3-11]FAQ 3.11[/doc]" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4006,16 +3992,16 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4082,8 +4068,8 @@ msgid "Keyname" msgstr "Atslēgas nosaukums" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4134,13 +4120,13 @@ msgstr "Indekss %s tika izdzēsts." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Likvidēt" @@ -4238,7 +4224,7 @@ msgstr "Privilēģijas" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Darbības" @@ -4253,7 +4239,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4666,11 +4652,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "izmantot šo stilu" @@ -4941,21 +4927,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Kopā" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Maksimālais izmērs: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4966,38 +4952,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL teica: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Izskaidrot SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Neizskaidrot SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Bez PHP koda" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Izpildīt vaicājumu" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Izveidot PHP kodu" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5092,6 +5078,10 @@ msgstr "stundā" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5212,42 +5202,42 @@ msgstr "Pievienot %s lauku(s)" msgid "Attributes" msgstr "Atribūti" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Serveris" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5255,24 +5245,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Jums ir jāuzliek %s %s vai jaunāks." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5979,7 +5969,7 @@ msgstr "Likt kolonnu nosaukumus pirmajā rindā" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -5987,7 +5977,7 @@ msgstr "Lauki iekļauti iekš" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6009,14 +5999,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Rindas atdalītas ar" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6639,7 +6629,7 @@ msgid "Column names in first row" msgstr "Likt kolonnu nosaukumus pirmajā rindā" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -8127,7 +8117,7 @@ msgid "Table %s has been emptied." msgstr "Tabula %s tika iztukšota." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format msgid "View %s has been dropped." msgstr "Lauks %s tika izdzēsts" @@ -8267,8 +8257,8 @@ msgid "No data to display" msgstr "Dati netika atrasti" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." @@ -8316,56 +8306,56 @@ msgstr[2] "" msgid "No column selected." msgstr "Nav izvēlēta kolonna." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Vaicājuma tips" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Labot" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indekss" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Pilni teksti" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy msgid "Distinct values" msgstr "Pārlūkot ārējās vērtības" @@ -8376,7 +8366,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Netika labots" @@ -9174,55 +9164,55 @@ msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Nav datubāzu" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Nav datubāzu" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tikai struktūra" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9273,50 +9263,50 @@ msgstr "Vai" msgid "web server upload directory:" msgstr "web servera augšupielādes direktorija" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Pievienot" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Ievietot kā jaunu rindu" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Atgriezties atpakaļ iepriekšējā lapā" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Ievietot vēl vienu rindu" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Atgriezties šajā lapā" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9326,7 +9316,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9338,11 +9328,11 @@ msgstr "" msgid "Value" msgstr "Vērtība" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10226,7 +10216,7 @@ msgstr "Restaurēt tabulu" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10242,34 +10232,34 @@ msgid "Delete the table (DROP)" msgstr "Nav datubāzu" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 #, fuzzy msgid "Check" msgstr "Čehu" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 #, fuzzy msgid "Repair" msgstr "Restaurēt tabulu" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10298,37 +10288,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Pārbaudīt referenciālo integritāti:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Nevar pārvietot tabulu uz viņu pašu!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Nevar nokopēt tabulu uz viņu pašu!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabula %s tika pārvietota uz %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabula %s tika pārkopēta uz %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Tabulas nosaukums nav norādīts!" @@ -10521,7 +10511,7 @@ msgstr "Datubāzu eksporta opcijas" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dati tabulai" @@ -10548,14 +10538,14 @@ msgstr "Apraksts" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tabulas struktūra tabulai" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10563,7 +10553,7 @@ msgstr "Tikai struktūra" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10681,7 +10671,7 @@ msgid "Database:" msgstr "Datubāze" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10796,7 +10786,7 @@ msgid "Data creation options" msgstr "Transformācijas opcijas" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10865,7 +10855,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10911,60 +10901,60 @@ msgstr "lietošanā" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Ierobežojumi izmestām tabulām" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Ierobežojumi tabulai" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ierobežojumi izmestām tabulām" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Tabulā(s):" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Pievienot AUTO_INCREMENT vērtību" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Pievienot AUTO_INCREMENT vērtību" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPI TABULAI" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELĀCIJAS TABULAI" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Tikai struktūra" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11000,7 +10990,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11020,33 +11010,33 @@ msgstr "" msgid "Column names: " msgstr "Kolonnu nosaukumi" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11054,28 +11044,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11085,23 +11075,23 @@ msgstr "Dokumentācija" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -11115,7 +11105,7 @@ msgstr "MySQL 4.0 savietojams" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14159,15 +14149,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14182,17 +14168,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14214,19 +14201,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14255,17 +14242,17 @@ msgstr "Tabula %s tika izdzēsta" msgid "Variable name was expected." msgstr "Faila nosaukuma šablons" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Tabulas sākumā" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14286,17 +14273,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15005,7 +14992,7 @@ msgstr "Apskatīt tabulas dampu (shēmu)" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16126,7 +16113,7 @@ msgid "at beginning of table" msgstr "Tabulas sākumā" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16171,7 +16158,7 @@ msgstr "Pozīcija" msgid "Edit partitioning" msgstr "Pievienot jaunu lauku" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16307,12 +16294,12 @@ msgstr "" msgid "Column names" msgstr "Kolonnu nosaukumi" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Pārsaukt tabulu uz" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Nav datubāzu" @@ -17429,6 +17416,19 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Search" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Meklēt" +#~ msgstr[1] "Meklēt" +#~ msgstr[2] "Meklēt" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "Ieraksts tika dzēsts." + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/mk.po b/po/mk.po index d2451fbb9b..62e1a51861 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:23+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Macedonian " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Сочувај како податотека" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Поништи" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "избери се" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Недостасува вредност во образецот!" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "барем еден од зборовите" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Додади ново поле" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit next row" msgid "Edit index" msgstr "Ажурирање на следниот запис" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" msgstr "Додади %s полиња" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Верзија на серверот" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Верзија на серверот" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Полињата се раздвоени со" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %s field(s)" msgid "Please select column(s) for the index." msgstr "Додади %s полиња" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Морате да изберете барем една колона за приказ" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "во упитот" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Latched pages" msgid "Matched rows:" msgstr "Заглавени страници" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL упит" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Вредност" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Името на host-от е празно!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Не е внесен назив на корисник!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Лозинка е празна!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Лозинките не се идентични!" -#: js/messages.php:148 +#: js/messages.php:150 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Избриши ги селектираните корисници" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy msgid "Template was created." msgstr "Табелата %s е избришана" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Профилот е променет." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Записот е избришан" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Конекции" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1238,177 +1241,177 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 #, fuzzy msgid "Query cache efficiency" msgstr "Вид на упит" -#: js/messages.php:177 +#: js/messages.php:179 #, fuzzy msgid "Query cache usage" msgstr "Вид на упит" -#: js/messages.php:178 +#: js/messages.php:180 #, fuzzy msgid "Query cache used" msgstr "Вид на упит" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "Големина" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "Вкупно" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Бафер" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Вкупно" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Големина" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "Слободни страници" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Примено" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Конекции" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 #, fuzzy msgid "Processes" msgstr "Листа на процеси" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "бајти" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s табела" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 #, fuzzy msgid "Questions" msgstr "Персиски" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Сообраќај" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Општи особини на релациите" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1420,47 +1423,47 @@ msgstr "" msgid "None" msgstr "нема" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1468,154 +1471,154 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Сочувај како податотека" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Овозможено" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Оневозможено" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "време на извршување на упитот %01.4f секунди" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Општи особини на релациите" -#: js/messages.php:254 +#: js/messages.php:256 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Општи особини на релациите" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "Увоз на податотека" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 #, fuzzy msgid "Analysing logs" msgstr "Локален" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Барања за читање" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 #, fuzzy msgid "Jump to Log table" msgstr "Базата на податоци не постои" -#: js/messages.php:285 +#: js/messages.php:287 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Базата на податоци не постои" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Објасни SQL" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1623,7 +1626,7 @@ msgstr "Објасни SQL" msgid "Status" msgstr "Статус" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1633,99 +1636,99 @@ msgstr "Статус" msgid "Time" msgstr "Време" -#: js/messages.php:293 +#: js/messages.php:295 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Вкупно" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "SQL резултат" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Табела" -#: js/messages.php:296 +#: js/messages.php:298 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Кодна страна" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "Опции на табелата" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 #, fuzzy #| msgid "Number of rows per page" msgid "Sum of grouped rows:" msgstr "Број на записи на страница" -#: js/messages.php:306 +#: js/messages.php:308 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Вкупно" -#: js/messages.php:308 +#: js/messages.php:310 #, fuzzy msgid "Loading logs" msgstr "Локален" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 #, fuzzy #| msgid "Rename database to" msgid "Reload page" msgstr "Преименувај ја базата на податоци во" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1735,71 +1738,71 @@ msgstr "" msgid "Import" msgstr "Извоз" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Ажурирај" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 -msgid "Issue" -msgstr "" - -#: js/messages.php:338 -#, fuzzy -#| msgid "Documentation" -msgid "Recommendation" -msgstr "Документација" - #: js/messages.php:339 -msgid "Rule details" +msgid "Issue" msgstr "" #: js/messages.php:340 #, fuzzy #| msgid "Documentation" -msgid "Justification" +msgid "Recommendation" msgstr "Документација" #: js/messages.php:341 -msgid "Used variable / formula" +msgid "Rule details" msgstr "" #: js/messages.php:342 +#, fuzzy +#| msgid "Documentation" +msgid "Justification" +msgstr "Документација" + +#: js/messages.php:343 +msgid "Used variable / formula" +msgstr "" + +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Add new field" msgid "No parameters found!" msgstr "Додади ново поле" -#: js/messages.php:350 +#: js/messages.php:352 #: 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,70 +1814,70 @@ msgstr "Додади ново поле" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Општи особини на релациите" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy msgid "Loading…" msgstr "Локален" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy msgid "Processing request" msgstr "Листа на процеси" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy msgid "Request failed!!" msgstr "Вид на упит" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy msgid "Error in processing request" msgstr "Листа на процеси" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Не е избрана ни една база на податоци." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Inside table(s):" msgid "Dropping column" msgstr "во табела(и):" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "Додади %s полиња" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1884,71 +1887,71 @@ msgstr "Додади %s полиња" msgid "OK" msgstr "ОК" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Преименувај ја базата на податоци во" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Копирај ја базата на податоци во" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Кодна страна" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Исклучи проверка на надворешни клучеви" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Пребарување" -#: js/messages.php:384 +#: js/messages.php:386 #, fuzzy msgid "Hide search results" msgstr "SQL упит" -#: js/messages.php:385 +#: js/messages.php:387 #, fuzzy msgid "Show search results" msgstr "SQL упит" -#: js/messages.php:386 +#: js/messages.php:388 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Преглед" -#: js/messages.php:387 +#: js/messages.php:389 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Бришам %s" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1964,47 +1967,47 @@ msgstr "" msgid "Export" msgstr "Извоз" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Values for column %s" msgstr "Број на записи на страница" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Додади нов корисник" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 #, fuzzy msgid "Hide query box" msgstr "SQL упит" -#: js/messages.php:408 +#: js/messages.php:410 #, fuzzy msgid "Show query box" msgstr "SQL упит" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -2014,7 +2017,7 @@ msgstr "SQL упит" msgid "Edit" msgstr "Промени" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -2025,94 +2028,94 @@ msgstr "Промени" msgid "Delete" msgstr "избриши" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Прегледни ги надворешните вредности" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Променлива" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Нема селектирани записи" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Пребарување низ базата на податоци" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Атрибути" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Примарниот клуч %s е додаден." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Промени" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2120,90 +2123,90 @@ msgstr "" msgid "End of step" msgstr "на крајот од табелата" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 #, fuzzy #| msgid "None" msgid "Done" msgstr "нема" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Не е избрана ни една база на податоци." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Додади привилегии на следната табела" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Не е избрана ни една база на податоци." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2213,429 +2216,429 @@ msgstr "Не е избрана ни една база на податоци." msgid "Save" msgstr "Сочувај" -#: js/messages.php:472 +#: js/messages.php:474 #, fuzzy msgid "Hide search criteria" msgstr "SQL упит" -#: js/messages.php:473 +#: js/messages.php:475 #, fuzzy msgid "Show search criteria" msgstr "SQL упит" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Пребарување" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Имиња на колони" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Имиња на колони" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL упит" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL упит" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Додади/избриши колона" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Големина на покажувачите на податоци" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Игнорирај" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Копирај" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Линиите се завршуваат со" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Додади нов корисник" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Линиите се завршуваат со" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Број на страници:" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "избери се" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Изберете страница која менувате" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Релациона шема" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Измените се сочувани" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Add an option for column \"%s\"." msgstr "Број на записи на страница" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Испрати" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Имиња на колони" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "прикажи ги сите" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Оргинална позиција" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Прекинато" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy msgid "Import status" msgstr "Увоз на податотека" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Избери табели" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Печати" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy msgid "Go to link:" msgstr "Базата на податоци не постои" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Имиња на колони" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Генерирање на лозинка" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Генерирај" -#: js/messages.php:628 +#: js/messages.php:630 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пон" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "прикажи ги сите" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Додади ново поле" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Прикажи мрежа" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy msgid "Link with main panel" msgstr "Опции за извоз на бази на податоци" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy msgid "Unlink from main panel" msgstr "Опции за извоз на бази на податоци" -#: js/messages.php:639 +#: js/messages.php:641 #, 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2643,121 +2646,121 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 #, fuzzy msgid "up to date" msgstr "Базата на податоци не постои" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy msgid "Create view" msgstr "Верзија на серверот" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy msgid "Send error report" msgstr "ID на серверот" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy msgid "Submit error report" msgstr "ID на серверот" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Општи особини на релациите" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy msgid "Show report details" msgstr "Прикажи табели" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Игнорирај" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Прикажи го повторно овој упит" -#: js/messages.php:700 +#: js/messages.php:702 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Дали навистина сакате да " -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL упит" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Коментар на табелата" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy msgid "Hide arguments" msgstr "SQL упит" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2766,36 +2769,36 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Копирај ја базата на податоци во" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Додади ново поле" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Замени го префиксот на табелата" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Копирај табела со префикс" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Претходна" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2803,96 +2806,96 @@ msgid "Next" msgstr "Следен" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Вкупно" -#: js/messages.php:755 +#: js/messages.php:757 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарен" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:758 +#: js/messages.php:760 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "мај" -#: js/messages.php:760 +#: js/messages.php:762 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:761 +#: js/messages.php:763 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:762 +#: js/messages.php:764 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2900,78 +2903,78 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "дек" -#: js/messages.php:801 +#: js/messages.php:803 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:802 +#: js/messages.php:804 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:803 +#: js/messages.php:805 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Вто" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2979,201 +2982,201 @@ msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Вто" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Саб" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Вто" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Саб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "нема" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:873 +#: js/messages.php:875 #, fuzzy #| msgid "per second" msgid "Second" msgstr "во секунда" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Користи текст поле" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Изберете база на податоци" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please enter a valid date or time" msgstr "Изберете страница која менувате" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Грешка" @@ -3223,34 +3226,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "in query" msgid "Requery" msgstr "во упитот" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3269,90 +3272,71 @@ msgid "Database" msgstr "База на податоци" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Search" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Пребарување" -msgstr[1] "Пребарување" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "Маркерот е избришан." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "Пребарување" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "Објасни SQL" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Search" msgid "Bookmark" msgstr "Пребарување" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy msgid "Query failed" msgstr "Вид на упит" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy msgid "SQL Query Console" msgstr "SQL упит" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 #, fuzzy msgid "Clear" msgstr "Календар" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "SQL историја" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3370,10 +3354,10 @@ msgstr "SQL историја" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 @@ -3381,164 +3365,164 @@ msgstr "SQL историја" msgid "Options" msgstr "Операции" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Search" msgid "Bookmarks" msgstr "Пребарување" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Ctrl+Enter to execute query" msgstr "Изврши запамтен упит" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Enter to execute query" msgstr "Изврши запамтен упит" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Растечки редослед" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Опаѓачки редослед" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column names" msgid "Count" msgstr "Имиња на колони" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execution order" msgstr "Изврши запамтен упит" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy msgid "Group queries" msgstr "SQL упит" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy msgid "Ungroup queries" msgstr "SQL упит" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Прикажи боја" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Add new field" msgid "Hide trace" msgstr "Додади ново поле" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column names" msgid "Count:" msgstr "Имиња на колони" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Освежи" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "и" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Search" msgid "Add bookmark" msgstr "Пребарување" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "Назив" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy msgid "Target database" msgstr "Пребарување низ базата на податоци" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Search" msgid "Share this bookmark" msgstr "Пребарување" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy msgid "Set default" msgstr "Увоз на податотека" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy msgid "Show query history at start" msgstr "SQL упит" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Премини на копираната табела" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3546,21 +3530,21 @@ msgid "" "configured)." msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Серверот не одговара" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3941,7 +3925,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4072,18 +4056,18 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Бројот на записи може да биде приближен. За подетални информации види FAQ " "3.11" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4151,8 +4135,8 @@ msgid "Keyname" msgstr "Име на клуч" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4203,13 +4187,13 @@ msgstr "Клучот %s е избиршан." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Бриши" @@ -4307,7 +4291,7 @@ msgstr "Привилегии" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Операции" @@ -4322,7 +4306,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4736,11 +4720,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "превземи" @@ -5011,21 +4995,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Вкупно" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Максимална големина: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5036,38 +5020,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL порака: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Објасни SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Прескокни ги објаснувањата на SQL-от" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "без PHP код" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Изврши SQL" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Направи PHP код" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5162,6 +5146,10 @@ msgstr "на час" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5282,42 +5270,42 @@ msgstr "Додади %s полиња" msgid "Attributes" msgstr "Атрибути" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Сервер" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5325,25 +5313,25 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" "Би требало да го надоградите вашиот %s сервер на верзија %s или понова." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6049,7 +6037,7 @@ msgstr "Стави ги имињата на полињата во првата #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6057,7 +6045,7 @@ msgstr "Полињата се раздвоени со" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6079,14 +6067,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Линиите се завршуваат со" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6714,7 +6702,7 @@ msgid "Column names in first row" msgstr "Стави ги имињата на полињата во првата редица" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -8210,7 +8198,7 @@ msgid "Table %s has been emptied." msgstr "Табелата %s е испразнета." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8351,8 +8339,8 @@ msgid "No data to display" msgstr "Базата на податоци не постои" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." @@ -8400,56 +8388,56 @@ msgstr[1] "" msgid "No column selected." msgstr "Нема селектирани записи" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Изабраните корисници успешно се избришани." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Вид на упит" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, fuzzy, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "Изабраните корисници успешно се избришани." -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Промени" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Клуч" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Текст клуч" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy msgid "Distinct values" msgstr "Прегледни ги надворешните вредности" @@ -8460,7 +8448,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Нема измени" @@ -9276,55 +9264,55 @@ msgstr "MySQL врати празен резултат (нула записи)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Базата на податоци не постои" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Базата на податоци не постои" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Само структура" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9377,50 +9365,50 @@ msgstr "или" msgid "web server upload directory:" msgstr "директориум за праќање на веб серверот" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Нов запис" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Внеси како нов запис" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Назад на претходната страница" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Додади уште еден нов запис" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Врати се на оваа страница" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Ажурирање на следниот запис" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9430,7 +9418,7 @@ msgstr "" "Користете го TAB тастерот за движење од поле во поле, или CTRL+стрелка за " "слободно движење" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9442,11 +9430,11 @@ msgstr "" msgid "Value" msgstr "Вредност" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10331,7 +10319,7 @@ msgstr "Поправка на табелата" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10347,34 +10335,34 @@ msgid "Delete the table (DROP)" msgstr "Базата на податоци не постои" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 #, fuzzy msgid "Check" msgstr "Чешки" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 #, fuzzy msgid "Repair" msgstr "Поправка на табелата" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10402,37 +10390,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Провери го референцијалниот интегритет:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Не може да ја преместам табелата во самата себе!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Не можам да ја копирам табелата во самата себе!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Табелата %s е преместена во %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Табелата %s е копирана во %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Името на табелата е празно!" @@ -10626,7 +10614,7 @@ msgstr "Опции за извоз на бази на податоци" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Приказ на податоци од табелата" @@ -10653,14 +10641,14 @@ msgstr "Опис" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Структура на табелата" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10668,7 +10656,7 @@ msgstr "Само структура" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10786,7 +10774,7 @@ msgid "Database:" msgstr "База на податоци" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10901,7 +10889,7 @@ msgid "Data creation options" msgstr "Опции на трансформацијата" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10970,7 +10958,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11022,60 +11010,60 @@ msgstr "се користи" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Ограничувања за извезените табели" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Ограничувања за табелите" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ограничувања за извезените табели" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "во табела(и):" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Додади AUTO_INCREMENT вредност" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Додади AUTO_INCREMENT вредност" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВИ ЗА ТАБЕЛА" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИИ НА ТАБЕЛИТЕ" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Само структура" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11111,7 +11099,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11131,33 +11119,33 @@ msgstr "" msgid "Column names: " msgstr "Имиња на колони" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11165,28 +11153,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11196,23 +11184,23 @@ msgstr "Документација" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -11226,7 +11214,7 @@ msgstr "MySQL 4.0 компатибилно" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14302,15 +14290,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14325,17 +14309,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14357,19 +14342,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14398,17 +14383,17 @@ msgstr "Табелата %s е избришана" msgid "Variable name was expected." msgstr "Шаблон на име на податотека" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "на почетокот од табелата" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14429,17 +14414,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Записот е избришан" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15145,7 +15130,7 @@ msgstr "Прикажи содржина (шема) на табелите" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16270,7 +16255,7 @@ msgid "at beginning of table" msgstr "на почетокот од табелата" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16315,7 +16300,7 @@ msgstr "Позиција" msgid "Edit partitioning" msgstr "Додади ново поле" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16450,12 +16435,12 @@ msgstr "" msgid "Column names" msgstr "Имиња на колони" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Промени го името на табелата во " -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Базата на податоци не постои" @@ -17602,6 +17587,18 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Search" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Пребарување" +#~ msgstr[1] "Пребарување" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "Маркерот е избришан." + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/ml.po b/po/ml.po index 0b7ca01960..d3de7d5686 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malayalam " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "Update Query" msgid "Simulate query" msgstr "അഭ്യര്‍ത്ഥന നവീകറിക്കുക" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Sort" msgid "Matched rows:" msgstr "തരംതിരിക്കുക" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Use this value" msgid "Y values" msgstr "ഈ വില ഉപയോഗിക്കൂ" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "Database %1$s has been created." msgid "Template was deleted." msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "" -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1112,126 +1115,126 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1239,30 +1242,30 @@ msgid "%d table(s)" msgstr "%s പട്ടിക" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1274,47 +1277,47 @@ msgstr "" msgid "None" msgstr "" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1322,136 +1325,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1459,7 +1462,7 @@ msgstr "" msgid "Status" msgstr "" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1469,84 +1472,84 @@ msgstr "" msgid "Time" msgstr "" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "പട്ടിക" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1555,63 +1558,63 @@ msgstr "" msgid "Import" msgstr "" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1623,64 +1626,64 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Add/Delete columns" msgid "Dropping column" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add/Delete columns" msgid "Adding primary key" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1690,59 +1693,59 @@ msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" msgid "OK" msgstr "" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "വിവരശേഖരത്തിന്റ്റ പേര് മാറ്റുക" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "വിവരശേഖരം പകർത്തുക" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1758,44 +1761,44 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1805,7 +1808,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1816,168 +1819,168 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Use this value" msgid "Search this list" msgstr "ഈ വില ഉപയോഗിക്കൂ" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Column" msgid "Continue" msgstr "നിര" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -1987,378 +1990,378 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column" msgid "Column maximum:" msgstr "നിര" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column" msgid "Column minimum:" msgstr "നിര" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "അച്ചടിക്കുക" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "" -#: js/messages.php:631 -#, fuzzy -#| msgid "Show all" -msgid "Show panel" -msgstr "എല്ലാം കാണിക്കൂ" - -#: js/messages.php:632 -msgid "Hide panel" -msgstr "" - #: js/messages.php:633 #, fuzzy #| msgid "Show all" +msgid "Show panel" +msgstr "എല്ലാം കാണിക്കൂ" + +#: js/messages.php:634 +msgid "Hide panel" +msgstr "" + +#: js/messages.php:635 +#, fuzzy +#| msgid "Show all" msgid "Show hidden navigation tree items." msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2366,109 +2369,109 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2477,357 +2480,357 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "വിവരശേഖരം പകർത്തുക" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Copy database to" msgid "Add table prefix" msgstr "വിവരശേഖരം പകർത്തുക" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Copy database to" msgid "Replace table with prefix" msgstr "വിവരശേഖരം പകർത്തുക" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "" @@ -2877,32 +2880,32 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2922,76 +2925,59 @@ msgstr "" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3009,177 +2995,177 @@ msgstr "" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Update Query" msgid "Press Ctrl+Enter to execute query" msgstr "അഭ്യര്‍ത്ഥന നവീകറിക്കുക" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Update Query" msgid "Press Enter to execute query" msgstr "അഭ്യര്‍ത്ഥന നവീകറിക്കുക" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "ആരോഹണം" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "അവരോഹണം" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "നിര" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show all" msgid "Show trace" msgstr "എല്ലാം കാണിക്കൂ" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "നിര" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "ഉം" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy #| msgid "Remove database" msgid "Target database" msgstr "വിവരശേഖരം നീക്കുക" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Default" msgid "Set default" msgstr "സ്വതേ" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3516,7 +3502,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Database %s has been dropped." msgid "Your SQL query has been executed successfully." @@ -3641,15 +3627,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3713,8 +3699,8 @@ msgid "Keyname" msgstr "കീനാമം" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3764,13 +3750,13 @@ msgstr "" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -3868,7 +3854,7 @@ msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "" @@ -3883,7 +3869,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4265,11 +4251,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -4532,21 +4518,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4557,34 +4543,34 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "അഭ്യർത്ഥന സമർപ്പിക്കുക" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" @@ -4672,6 +4658,10 @@ msgstr "" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -4784,41 +4774,41 @@ msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4826,24 +4816,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5518,13 +5508,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5542,12 +5532,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -6116,7 +6106,7 @@ msgid "Column names in first row" msgstr "" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -7530,7 +7520,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "View %s has been dropped." @@ -7665,8 +7655,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7708,54 +7698,54 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -7767,7 +7757,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8504,55 +8494,55 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Copy database to" msgid "Go to database: %s" msgstr "വിവരശേഖരം പകർത്തുക" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8598,53 +8588,53 @@ msgstr "അല്ലെനങ്കിൽ" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8656,11 +8646,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9508,7 +9498,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9521,32 +9511,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9572,35 +9562,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9769,7 +9759,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9793,21 +9783,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9901,7 +9891,7 @@ msgid "Database:" msgstr "വിവരശേഖര അഭിപ്രായം: " #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9998,7 +9988,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10067,7 +10057,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10116,52 +10106,52 @@ msgstr "ഉപയോഗത്തിൽ" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10193,7 +10183,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10211,33 +10201,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10245,28 +10235,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10274,23 +10264,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10302,7 +10292,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -13048,15 +13038,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "Remove database" @@ -13071,17 +13057,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "Remove database" msgid "An alias was expected." @@ -13103,19 +13090,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "Database %1$s has been created." msgid "A rename operation was expected." @@ -13143,15 +13130,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13172,17 +13159,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13842,7 +13829,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14799,7 +14786,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14838,7 +14825,7 @@ msgstr "വിവരണം" msgid "Edit partitioning" msgstr "വിവരണം" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14961,11 +14948,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Drop the database (DROP)" msgid "Delete the view (DROP)" diff --git a/po/mn.po b/po/mn.po index b7f3c6ef59..3002d4be76 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:25+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Mongolian " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Илгээх" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Да.эхлэх" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Бүгдийг сонгох" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Форм дахь утгыг орхисон!" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "Үгүүдийн ядаж нэгээр" -#: js/messages.php:118 +#: js/messages.php:120 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number!" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:119 +#: js/messages.php:121 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid length!" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Шинэ талбар нэмэх" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit next row" msgid "Edit index" msgstr "Дараагийн мөрийг засах" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" msgstr "%s талбар(ууд) нэмэх" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Холбоо үүсгэх" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Холбоо үүсгэх" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Талбарыг хаасан" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %s field(s)" msgid "Please select column(s) for the index." msgstr "%s талбар(ууд) нэмэх" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Та багадаа нэг талбар нэм." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "асуултад" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Latched pages" msgid "Matched rows:" msgstr "Latched хуудсууд" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL-асуулт" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Утга" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Хостын нэр хоосон!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Хэрэглэгчийн нэр хоосон!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Нууц үг хоосон байна!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Нууц їгнїїд ялгаатай байна!" -#: js/messages.php:148 +#: js/messages.php:150 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Сонгогдсон хэрэглэгчдийг хасах" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "%s table(s)" msgid "Template was created." msgstr "%s хүснэгт(үүд)" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Профиль шинэчлэгдлээ." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Мөр устгагдсан" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Холболт" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Local monitor configuration incompatible!" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1243,180 +1247,180 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Асуудлын нөөцлөл" -#: js/messages.php:177 +#: js/messages.php:179 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Асуудлын нөөцлөл" -#: js/messages.php:178 +#: js/messages.php:180 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Асуудлын нөөцлөл" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "Ашиглалт" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "Нийт" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Буффер Pool" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Нийт" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Ашиглалтын зай" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "Чөлөөт хуудсууд" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Ирсэн" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Холболт" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Процессууд" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "Байт" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "кБ" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s хүснэгт(үүд)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 #, fuzzy #| msgid "Relations" msgid "Questions" msgstr "Хамаарал" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Гуйвуулга" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1428,47 +1432,47 @@ msgstr "" msgid "None" msgstr "Байхгүй" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1476,156 +1480,156 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Илгээх" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Нээлттэй" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, fuzzy, php-format #| msgid "Disabled" msgid "Disable %s" msgstr "Хаагдсан" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "Асуулт нь %01.4f сек авлаа" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:254 +#: js/messages.php:256 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Тайлангийн гарчиг" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 #, fuzzy #| msgid "Reload privileges" msgid "Analysing logs" msgstr "Онцгой эрхүүдийг дахин дуудах" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Унших гуйлт" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 #, fuzzy #| msgid "No databases" msgid "Jump to Log table" msgstr "ӨС байхгүй" -#: js/messages.php:285 +#: js/messages.php:287 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "ӨС байхгүй" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "SQL тайлбар" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1633,7 +1637,7 @@ msgstr "SQL тайлбар" msgid "Status" msgstr "Статус" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1643,99 +1647,99 @@ msgstr "Статус" msgid "Time" msgstr "Цаг" -#: js/messages.php:293 +#: js/messages.php:295 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Нийт" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "Query results operations" msgid "Profiling results" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Хүснэгт " -#: js/messages.php:296 +#: js/messages.php:298 #, fuzzy msgid "Chart" msgstr "Кодлолууд" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "Хүснэгтийн сонголтууд" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 #, fuzzy #| msgid "Number of fields" msgid "Sum of grouped rows:" msgstr "Талбаруудын тоо" -#: js/messages.php:306 +#: js/messages.php:308 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Нийт" -#: js/messages.php:308 +#: js/messages.php:310 #, fuzzy #| msgid "Reload privileges" msgid "Loading logs" msgstr "Онцгой эрхүүдийг дахин дуудах" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Да.дууд" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1744,75 +1748,75 @@ msgstr "" msgid "Import" msgstr "Оруулах" -#: js/messages.php:326 +#: js/messages.php:328 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: js/messages.php:328 +#: js/messages.php:330 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import." msgstr "Үндсэн түлхүүр эсвэл орь ганц түлхүүр сонгон уу" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Update асуулт" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 -msgid "Issue" -msgstr "" - -#: js/messages.php:338 -#, fuzzy -#| msgid "Documentation" -msgid "Recommendation" -msgstr "Баримт" - #: js/messages.php:339 -msgid "Rule details" +msgid "Issue" msgstr "" #: js/messages.php:340 #, fuzzy #| msgid "Documentation" -msgid "Justification" +msgid "Recommendation" msgstr "Баримт" #: js/messages.php:341 -msgid "Used variable / formula" +msgid "Rule details" msgstr "" #: js/messages.php:342 +#, fuzzy +#| msgid "Documentation" +msgid "Justification" +msgstr "Баримт" + +#: js/messages.php:343 +msgid "Used variable / formula" +msgstr "" + +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Буруу параметрүүд!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1824,74 +1828,74 @@ msgstr "Буруу параметрүүд!" msgid "Cancel" msgstr "Болих" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy #| msgid "Reload privileges" msgid "Loading…" msgstr "Онцгой эрхүүдийг дахин дуудах" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Процессууд" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Асуудлын нөөцлөл" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Процессууд" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "ӨС сонгогдоогүй." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Procedure" msgid "Dropping column" msgstr "Процедурүүд" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "%s талбар(ууд) нэмэх" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1901,73 +1905,73 @@ msgstr "%s талбар(ууд) нэмэх" msgid "OK" msgstr "Бэлэн" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Өгөгдлийн сан хуулах нь" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Кодлол" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Гадаад түлхүүр шалгалтыг хаах" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Хайх" -#: js/messages.php:384 +#: js/messages.php:386 #, fuzzy #| msgid "in query" msgid "Hide search results" msgstr "асуултад" -#: js/messages.php:385 +#: js/messages.php:387 #, fuzzy #| msgid "Showing SQL query" msgid "Show search results" msgstr "SQL асуудал харуулах" -#: js/messages.php:386 +#: js/messages.php:388 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Хөтлөх" -#: js/messages.php:387 +#: js/messages.php:389 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "%s-г устгаж байна" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1983,50 +1987,50 @@ msgstr "" msgid "Export" msgstr "Гаргах" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Талбаруудын тоо" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, fuzzy, php-format #| msgid "Add a new User" msgid "Add %d value(s)" msgstr "Шинэ хэрэглэгч нэмэх" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 #, fuzzy #| msgid "in query" msgid "Hide query box" msgstr "асуултад" -#: js/messages.php:408 +#: js/messages.php:410 #, fuzzy #| msgid "Showing SQL query" msgid "Show query box" msgstr "SQL асуудал харуулах" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -2036,7 +2040,7 @@ msgstr "SQL асуудал харуулах" msgid "Edit" msgstr "Засах" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -2047,94 +2051,94 @@ msgstr "Засах" msgid "Delete" msgstr "Устгах" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Хувьсагч" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Сонгогдсон мөргүй" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Өгөгдлийн санд хайх" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Атрибутууд" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "%s-д үндсэн түлхүүр нэмэгдлээ" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Хөөлтын илтгэл" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2142,90 +2146,90 @@ msgstr "" msgid "End of step" msgstr "Хүснэгтийн төгсгөлд" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 #, fuzzy #| msgid "None" msgid "Done" msgstr "Байхгүй" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "ӨС сонгогдоогүй." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Дараах хүснэгтэд онцгой эрх нэмэх" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "ӨС сонгогдоогүй." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2235,441 +2239,441 @@ msgstr "ӨС сонгогдоогүй." msgid "Save" msgstr "Хадгалах" -#: js/messages.php:472 +#: js/messages.php:474 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "асуултад" -#: js/messages.php:473 +#: js/messages.php:475 #, fuzzy #| msgid "Showing SQL query" msgid "Show search criteria" msgstr "SQL асуудал харуулах" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Хайх" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Баганын нэрс" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Баганын нэрс" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy #| msgid "in query" msgid "Hide find and replace criteria" msgstr "асуултад" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy #| msgid "Showing SQL query" msgid "Show find and replace criteria" msgstr "SQL асуудал харуулах" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Багана нэмэх/устгах" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Өгөгдөл заагчийн хэмжээ" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Үл тоох" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Хуулах" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Цэг" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Шугам" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Олон өнцөгт" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Геометр" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Дотоод тойрог" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Гадаад тойрог" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Хамаарагдсан түлхүүр сонгох" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Гадаад түлхүүр сонгох" -#: js/messages.php:533 +#: js/messages.php:535 #, 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Хуудасны дугаар:" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Бүгдийг сонгох" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Засах Хуудсаа сонго" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Хамааралтай схем" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Өөрчлөлт хадгалагдав" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "\"%s\" баганын утга" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Илгээ" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Баганын нэрс" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Бүгдийг харах" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Жинхэнэ байрлал" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Болих" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Таслагдсан" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "Файл оруулах" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Хүснэгтүүд сонго" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Хэвлэх" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy #| msgid "No tables" msgid "Go to link:" msgstr "Хүснэгт алга" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Баганын нэрс" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Нууц үг бий болгох" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Бий болгох" -#: js/messages.php:628 +#: js/messages.php:630 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Да" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Бүгдийг харах" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Шинэ талбар нэмэх" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Тор харуулах" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Use text field" msgid "Link with main panel" msgstr "Бичвэр талбар хэрэглэх" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Use text field" msgid "Unlink from main panel" msgstr "Бичвэр талбар хэрэглэх" -#: js/messages.php:639 +#: js/messages.php:641 #, 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2677,124 +2681,124 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "ӨС байхгүй" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Үүсгэх" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Үл тоох" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Уг асуултыг энд дахин харуулах" -#: js/messages.php:700 +#: js/messages.php:702 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Та үнэхээр " -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "%s queries executed %s times in %s seconds." msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Хүснэгтийн тайлбар" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "in query" msgid "Hide arguments" msgstr "асуултад" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2803,38 +2807,38 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Өгөгдлийн сан хуулах нь" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Шинэ талбар нэмэх" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Хүснэгтийн өгөгдлийг орлуулах файл" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Хүснэгтийн өгөгдлийг орлуулах файл" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Өмнөх" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2842,96 +2846,96 @@ msgid "Next" msgstr "Цааш" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Нийт" -#: js/messages.php:755 +#: js/messages.php:757 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Хоёртын " -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 #, fuzzy #| msgid "Mar" msgid "March" msgstr "3-р" -#: js/messages.php:758 +#: js/messages.php:760 #, fuzzy #| msgid "Apr" msgid "April" msgstr "4-р" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "5-р" -#: js/messages.php:760 +#: js/messages.php:762 #, fuzzy #| msgid "Jun" msgid "June" msgstr "6-р" -#: js/messages.php:761 +#: js/messages.php:763 #, fuzzy #| msgid "Jul" msgid "July" msgstr "7-р" -#: js/messages.php:762 +#: js/messages.php:764 #, fuzzy #| msgid "Aug" msgid "August" msgstr "8-р" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 #, fuzzy #| msgid "Oct" msgid "October" msgstr "10р" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "1-р" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "2-р" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "3-р" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "4-р" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2939,78 +2943,78 @@ msgid "May" msgstr "5-р" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "6-р" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "7-р" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "8-р" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "9-р" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "10р" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "11р" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "12р" -#: js/messages.php:801 +#: js/messages.php:803 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ня" -#: js/messages.php:802 +#: js/messages.php:804 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Да" -#: js/messages.php:803 +#: js/messages.php:805 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Мя" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ба" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3018,225 +3022,225 @@ msgid "Sun" msgstr "Ня" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Да" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Мя" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Лх" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Пү" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Ба" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Бя" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ня" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Да" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Мя" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Лх" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пү" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ба" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Бя" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Байхгүй" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "хэрэглэгдэж байна" -#: js/messages.php:873 +#: js/messages.php:875 #, fuzzy #| msgid "per second" msgid "Second" msgstr "секундэд" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Бичвэр талбар хэрэглэх" -#: js/messages.php:886 +#: js/messages.php:888 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:887 +#: js/messages.php:889 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:925 +#: js/messages.php:927 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:930 +#: js/messages.php:932 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Алдаа" @@ -3287,34 +3291,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Үсгийн хэмжээ" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "in query" msgid "Requery" msgstr "асуултад" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3333,91 +3337,72 @@ msgid "Database" msgstr "ӨС" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Delete relation" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Холбоог устгах" -msgstr[1] "Холбоог устгах" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "Хавчуурга устлаа." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Холбоог устгах" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "SQL тайлбар" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Delete relation" msgid "Bookmark" msgstr "Холбоог устгах" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query cache" msgid "Query failed" msgstr "Асуудлын нөөцлөл" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy #| msgid "SQL query" msgid "SQL Query Console" msgstr "SQL-асуулт" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "SQL түүх" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3435,181 +3420,181 @@ msgstr "SQL түүх" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Сонголтууд" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Delete relation" msgid "Bookmarks" msgstr "Холбоог устгах" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Ctrl+Enter to execute query" msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Enter to execute query" msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Өсөхөөр" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Буурахаар" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column names" msgid "Count" msgstr "Баганын нэрс" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execution order" msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "Show Full Queries" msgid "Group queries" msgstr "Бүтэн асуулт харуулах" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "in query" msgid "Ungroup queries" msgstr "асуултад" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Өнгө харах" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Add new field" msgid "Hide trace" msgstr "Шинэ талбар нэмэх" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column names" msgid "Count:" msgstr "Баганын нэрс" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Да.дуудах" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "БА" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Delete relation" msgid "Add bookmark" msgstr "Холбоог устгах" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "Хаяг" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy #| msgid "Create new database" msgid "Target database" msgstr "Шинэ ӨС үүсгэх" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Delete relation" msgid "Share this bookmark" msgstr "Холбоог устгах" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Default" msgid "Set default" msgstr "Анхдагч" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "Flush query cache" msgid "Show query history at start" msgstr "Асуудлын утгыг цэвэрлэх" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Хуулагдсан хүснэгт рүү шилжих" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to set configured collation connection!" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -3617,21 +3602,21 @@ msgid "" "configured)." msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сервэрээс хариу алга" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -4007,7 +3992,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4139,15 +4124,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4215,8 +4200,8 @@ msgid "Keyname" msgstr "Түлхүүрийн нэр" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4266,13 +4251,13 @@ msgstr "Индекс %s нь устгагдсан." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Устгах" @@ -4370,7 +4355,7 @@ msgstr "Онцгой эрхүүд" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Үйлдлүүд" @@ -4385,7 +4370,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4801,11 +4786,11 @@ msgstr "Гадаад түлхүүр үүсгэхэд алдаа гарлаа %1$ msgid "No valid image path for theme %s found!" msgstr "Сэдэв %s-д олдсон зургийн зам буруу байна!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Боломжит харагдац байхгүй байна." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "авах" @@ -5078,21 +5063,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Нийт" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "ХИ хэмжээ: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5103,38 +5088,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL хэлэх нь: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL тайлбар" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "SQL тайлбарлахыг орхих" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP-кодгүй" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Асуултыг илгээх" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP-код үүсгэх" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5229,6 +5214,10 @@ msgstr "цагт" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5349,46 +5338,46 @@ msgstr "%s талбар(ууд) нэмэх" msgid "Attributes" msgstr "Атрибутууд" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file!" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Сервэрийн буруу индекс нь: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "%1$s сервэрийн хост буруу. Өөрийн тохиргоогоо нягтална уу." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Сервэр" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Тохиргоонд сонгогдсон буруу зөвшөөрлийн арга:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5396,24 +5385,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Та хувилбар %s -г %s -ээр сайжруулах хэрэгтэй эсвэл дараа." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6119,7 +6108,7 @@ msgstr "Эхний мөрт талбаруудын нэрийг тавих" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6127,7 +6116,7 @@ msgstr "Талбарыг хаасан" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6149,14 +6138,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Шугамыг төгсгөгч" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6789,7 +6778,7 @@ msgid "Column names in first row" msgstr "Эхний мөрт талбаруудын нэрийг тавих" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -8279,7 +8268,7 @@ msgid "Table %s has been emptied." msgstr "Хүснэгт %s нь хоослогдлоо." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8420,8 +8409,8 @@ msgid "No data to display" msgstr "ӨС байхгүй" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8471,57 +8460,57 @@ msgstr[1] "" msgid "No column selected." msgstr "Сонгогдсон мөргүй" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Сонгогдсон хэрэглэгч устгагдлаа." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Асуултын төрөл" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Солих" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Индекс" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Бүтэнбичвэр" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8533,7 +8522,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Солигдохгүй" @@ -9365,57 +9354,57 @@ msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г. msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "ӨС байхгүй" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "No tables" msgid "Go to table: %s" msgstr "Хүснэгт алга" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Зөвхөн бүтэц" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9466,50 +9455,50 @@ msgstr "Эсвэл" msgid "web server upload directory:" msgstr "web-сервэр түлхэх хавтас" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Оруулах" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "ба тэгээд" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Шинэ мөр оруулаад" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Буцах" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Өөр шинэ мөр оруулах" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Энэ хуудас руу буцах" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Дараагийн мөрийг засах" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9519,7 +9508,7 @@ msgstr "" "TAB товчийг хэрэглэн утгаас утгын хооронд шилжинэ, эсвэл CTRL+сумууд-аар " "зөөгдөнө" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9531,11 +9520,11 @@ msgstr "" msgid "Value" msgstr "Утга" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "SQL асуудал харуулах" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10430,7 +10419,7 @@ msgstr "Хүснэгт засах" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10447,32 +10436,32 @@ msgid "Delete the table (DROP)" msgstr "Өгөгдлийн сан хуулах нь" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10498,37 +10487,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Үнэн зөв өгөгдлийг шалгах:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Адил нэр байсан тул хүснэгтийг зөөсөнгүй!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Адил нэртэй хүснэгт рүү хуулж чадсангүй!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Хүснэгт %s нь %s руу зөөгдөв." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "%s хүснэгт %s руу хуулагдлаа." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Хүснэгтийн нэр хоосон байна!" @@ -10721,7 +10710,7 @@ msgstr "ӨС гаргах сонголтууд" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Хүснэгтийн өгөгдлийг устгах" @@ -10747,21 +10736,21 @@ msgstr "Тайлбар" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Хүснэгтийн бүтэц" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Харах бүтэц" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10879,7 +10868,7 @@ msgid "Database:" msgstr "ӨС" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10997,7 +10986,7 @@ msgid "Data creation options" msgstr "Өөрчлөлийн сонголтууд" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11066,7 +11055,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11118,61 +11107,61 @@ msgstr "хэрэглэгдэж байна" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Асгарсан хүснэгтийг хүчлэх" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Асгарсан хүснэгтийг хүчлэх" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Хүснэгт(үүд) дотор:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT утга нэмэх" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT утга нэмэх" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "Хүснэгтийн MIME-төрлүүд" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "Хүснэгтийн хамаарал" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Харах бүтэц" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11208,7 +11197,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11228,34 +11217,34 @@ msgstr "" msgid "Column names: " msgstr "Баганын нэрс" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV оруулалтад буруу параметр нь: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "CSV оруулалтад %d мөрөнд буруу тогтнол байна." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "CSV оруулалтад %d мөрөнд буруу талбарын тоо байна." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Энэ нэмэлт нь шахагдсан оруулалтыг дэмжихгүй!" @@ -11263,29 +11252,29 @@ msgstr "Энэ нэмэлт нь шахагдсан оруулалтыг дэм msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." msgstr "CSV оруулалтад %d мөрөнд буруу тогтнол байна." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11295,23 +11284,23 @@ msgstr "Баримт" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -11325,7 +11314,7 @@ msgstr "SQL нийцтэй горим" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14447,15 +14436,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14470,17 +14455,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14502,19 +14488,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14543,17 +14529,17 @@ msgstr "Хүснэгт %s нь устгагдлаа" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Хүснэгтийн эхэнд" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14574,17 +14560,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Мөр устгагдсан" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15289,7 +15275,7 @@ msgstr "Хүснэгтийн схем харах" msgid "Invalid table name" msgstr "Хүснэгтийн буруу нэр" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16419,7 +16405,7 @@ msgid "at beginning of table" msgstr "Хүснэгтийн эхэнд" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16464,7 +16450,7 @@ msgstr "Байрлал" msgid "Edit partitioning" msgstr "Шинэ талбар нэмэх" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16600,11 +16586,11 @@ msgstr "" msgid "Column names" msgstr "Баганын нэрс" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Copy database to" msgid "Delete the view (DROP)" @@ -17791,6 +17777,18 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "ХИ. давхацсан холболтууд" +#, fuzzy +#~| msgid "Delete relation" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Холбоог устгах" +#~ msgstr[1] "Холбоог устгах" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "Хавчуурга устлаа." + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/ms.po b/po/ms.po index 6c4f03f746..0a609fa05c 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malay " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Simpan sebagai fail" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Ulangtetap" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Sila pilih pangkalan data" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Kehilangan nilai pada borang! !" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "sekurang-kurangnya satu perkataan" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Index" msgid "Add index" msgstr "Indeks" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Index" msgid "Edit index" msgstr "Indeks" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format msgid "Add %s column(s) to index" msgstr "Tambah medan baru" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Versi Pelayan" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Versi Pelayan" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Medan disertai oleh" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy msgid "Please select column(s) for the index." msgstr "Tambah medan baru" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Anda mesti pilih sekurang-kurangnya satu Kolum untuk dipapar" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "pada kueri" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Start" msgid "Matched rows:" msgstr "Sab" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "kueri-SQL" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Nilai" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Nama hos adalah kosong!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Kata Pengenalan kosong!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Katalaluan adalah kosong!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Katalaluan tidak sama!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy msgid "Template was created." msgstr "Jadual %s telah digugurkan" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profil telah dikemaskini." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Baris telah dipadam" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Hubungan" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1205,172 +1207,172 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 #, fuzzy msgid "Query cache efficiency" msgstr "Jenis Kueri" -#: js/messages.php:177 +#: js/messages.php:179 #, fuzzy msgid "Query cache usage" msgstr "Jenis Kueri" -#: js/messages.php:178 +#: js/messages.php:180 #, fuzzy msgid "Query cache used" msgstr "Jenis Kueri" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "Penggunaan" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "Jumlah" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Jumlah" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Penggunaan ruang" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "DiTerima" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Hubungan" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Proses-proses" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s jadual" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 #, fuzzy msgid "Questions" msgstr "Operasi" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Kesibukan" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1382,47 +1384,47 @@ msgstr "" msgid "None" msgstr "Tiada" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1430,150 +1432,150 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Simpan sebagai fail" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Membenarkan" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Tidak Membenarkan" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:254 +#: js/messages.php:256 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy msgid "Chart title" msgstr "Tiada Jadual" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 #, fuzzy msgid "Analysing logs" msgstr "Local" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 #, fuzzy msgid "Jump to Log table" msgstr "Tiada pangkalan data" -#: js/messages.php:285 +#: js/messages.php:287 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Tiada pangkalan data" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Terangkan Kod SQL" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1581,7 +1583,7 @@ msgstr "Terangkan Kod SQL" msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1591,96 +1593,96 @@ msgstr "Status" msgid "Time" msgstr "Masa" -#: js/messages.php:293 +#: js/messages.php:295 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Jumlah" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "Hasil SQL" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Jadual" -#: js/messages.php:296 +#: js/messages.php:298 #, fuzzy msgid "Chart" msgstr "Tiada Jadual" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 #, fuzzy msgid "Log table filter options" msgstr "Statistik pangkalan data" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 #, fuzzy #| msgid "Number of rows per page" msgid "Sum of grouped rows:" msgstr "Bilangan baris per halaman" -#: js/messages.php:306 +#: js/messages.php:308 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Jumlah" -#: js/messages.php:308 +#: js/messages.php:310 #, fuzzy msgid "Loading logs" msgstr "Local" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 #, fuzzy msgid "Reload page" msgstr "Tukarnama jadual ke" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1690,71 +1692,71 @@ msgstr "" msgid "Import" msgstr "Eksport" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Kemaskini Kueri" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 -msgid "Issue" -msgstr "" - -#: js/messages.php:338 -#, fuzzy -#| msgid "Documentation" -msgid "Recommendation" -msgstr "Dokumentasi" - #: js/messages.php:339 -msgid "Rule details" +msgid "Issue" msgstr "" #: js/messages.php:340 #, fuzzy #| msgid "Documentation" -msgid "Justification" +msgid "Recommendation" msgstr "Dokumentasi" #: js/messages.php:341 -msgid "Used variable / formula" +msgid "Rule details" msgstr "" #: js/messages.php:342 +#, fuzzy +#| msgid "Documentation" +msgid "Justification" +msgstr "Dokumentasi" + +#: js/messages.php:343 +msgid "Used variable / formula" +msgstr "" + +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Parameter tidak sesuai!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1766,71 +1768,71 @@ msgstr "Parameter tidak sesuai!" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy msgid "Loading…" msgstr "Local" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Proses-proses" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy msgid "Request failed!!" msgstr "Jenis Kueri" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Proses-proses" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Inside column:" msgid "Dropping column" msgstr "Di dalam kolum:" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy msgid "Adding primary key" msgstr "Tambah medan baru" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1840,65 +1842,65 @@ msgstr "Tambah medan baru" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy msgid "Renaming databases" msgstr "Tukarnama jadual ke" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy msgid "Copying database" msgstr "Tiada pangkalan data" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Cari" -#: js/messages.php:384 +#: js/messages.php:386 #, fuzzy msgid "Hide search results" msgstr "kueri-SQL" -#: js/messages.php:385 +#: js/messages.php:387 #, fuzzy msgid "Show search results" msgstr "kueri-SQL" -#: js/messages.php:386 +#: js/messages.php:388 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Lungsur" -#: js/messages.php:387 +#: js/messages.php:389 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "Padam" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1914,47 +1916,47 @@ msgstr "" msgid "Export" msgstr "Eksport" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Values for column %s" msgstr "Bilangan baris per halaman" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Tambah Pengguna Baru" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 #, fuzzy msgid "Hide query box" msgstr "kueri-SQL" -#: js/messages.php:408 +#: js/messages.php:410 #, fuzzy msgid "Show query box" msgstr "kueri-SQL" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1964,7 +1966,7 @@ msgstr "kueri-SQL" msgid "Edit" msgstr "Ubah" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1975,94 +1977,94 @@ msgstr "Ubah" msgid "Delete" msgstr "Padam" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Pembolehubah" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "Column names" msgid "Column selector" msgstr "Nama Kolum" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Cari di pangkalan data" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atribut" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Kekunci utama telah ditambah pada %s" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Laporan penjejak" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2070,86 +2072,86 @@ msgstr "" msgid "End of step" msgstr "Pada Akhir Jadual" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 #, fuzzy #| msgid "None" msgid "Done" msgstr "Tiada" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Create table on database %s" msgid "Create the following table" msgstr "Cipta jadual baru pada pangkalan data %s" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2159,191 +2161,191 @@ msgstr "" msgid "Save" msgstr "Simpan" -#: js/messages.php:472 +#: js/messages.php:474 #, fuzzy msgid "Hide search criteria" msgstr "kueri-SQL" -#: js/messages.php:473 +#: js/messages.php:475 #, fuzzy msgid "Show search criteria" msgstr "kueri-SQL" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Cari" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Nama Kolum" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Nama Kolum" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy msgid "Hide find and replace criteria" msgstr "kueri-SQL" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy msgid "Show find and replace criteria" msgstr "kueri-SQL" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Tambah/Padam Kolum Medan" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Kandungan" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Abai" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Titik" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Rentetan talian" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Lingkaran Dalaman" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Lingkaran Luar" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Muka Surat:" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2351,237 +2353,237 @@ msgstr "Sila pilih pangkalan data" msgid "Open page" msgstr "Penggunaan" -#: js/messages.php:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Sila pilih pangkalan data" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Sila Pilih Laman untuk diubah" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Sunting atau eksport skema hubungan" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Pengubahsuaian telah disimpan" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "Nilai pada kolum \"%s\"" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Hantar" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Nama Kolum" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Papar semua" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "Rentetan talian" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "DiBatalkan" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy msgid "Import status" msgstr "Eksport" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Pilih Jadual" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Cetak" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy msgid "Go to link:" msgstr "Tiada pangkalan data" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Nama Kolum" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Ubah Katalaluan" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 #, fuzzy msgid "Generate" msgstr "Dijana oleh" -#: js/messages.php:628 +#: js/messages.php:630 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Isn" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Papar semua" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indeks" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Papar grid" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Indexes" msgid "Link with main panel" msgstr "Indeks" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Indexes" msgid "Unlink from main panel" msgstr "Indeks" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2589,121 +2591,121 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 #, fuzzy msgid "up to date" msgstr "Tiada pangkalan data" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy msgid "Create view" msgstr "Versi Pelayan" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy msgid "Send error report" msgstr "Pilihan Pelayan" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy msgid "Submit error report" msgstr "Pilihan Pelayan" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy msgid "Show report details" msgstr "Papar jadual" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Abai" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Papar kueri ini di sini lagi" -#: js/messages.php:700 +#: js/messages.php:702 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Adakah anda ingin " -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komen jadual" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy msgid "Hide arguments" msgstr "kueri-SQL" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2712,38 +2714,38 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Salin pangkalan data ke" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Replace table data with file" msgid "Add table prefix" msgstr "Ganti data jadual dengan fail" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Ganti data jadual dengan fail" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Ganti data jadual dengan fail" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Terdahulu" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2751,96 +2753,96 @@ msgid "Next" msgstr "Berikut" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jumlah" -#: js/messages.php:755 +#: js/messages.php:757 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binari" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mac" -#: js/messages.php:758 +#: js/messages.php:760 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Mei" -#: js/messages.php:760 +#: js/messages.php:762 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:761 +#: js/messages.php:763 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:762 +#: js/messages.php:764 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ogos" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mac" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2848,78 +2850,78 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Ogos" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Dis" -#: js/messages.php:801 +#: js/messages.php:803 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Aha" -#: js/messages.php:802 +#: js/messages.php:804 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Isn" -#: js/messages.php:803 +#: js/messages.php:805 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sel" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2927,201 +2929,201 @@ msgid "Sun" msgstr "Aha" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Isn" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Kha" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Aha" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Isn" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sel" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Rab" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Kha" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Tiada" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "sedang digunakan" -#: js/messages.php:873 +#: js/messages.php:875 #, fuzzy #| msgid "Records" msgid "Second" msgstr "Rekod" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Add new field" msgid "Please fix this field" msgstr "Tambah medan baru" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Sila pilih pangkalan data" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 #, 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:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Ralat" @@ -3171,34 +3173,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "in query" msgid "Requery" msgstr "pada kueri" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3217,88 +3219,69 @@ msgid "Database" msgstr "Pangkalan Data" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Search" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Cari" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "TandaBuku telah dipadam." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "Cari" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "Terangkan Kod SQL" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Search" msgid "Bookmark" msgstr "Cari" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy msgid "Query failed" msgstr "Jenis Kueri" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy msgid "SQL Query Console" msgstr "kueri-SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "Skip Validate SQL" msgid "History" msgstr "Melangkau Pengesahan SQL" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3316,10 +3299,10 @@ msgstr "Melangkau Pengesahan SQL" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 @@ -3327,177 +3310,177 @@ msgstr "Melangkau Pengesahan SQL" msgid "Options" msgstr "Operasi" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Search" msgid "Bookmarks" msgstr "Cari" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy msgid "Press Ctrl+Enter to execute query" msgstr "kueri-SQL" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy msgid "Press Enter to execute query" msgstr "kueri-SQL" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Menaik" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Menurun" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy msgid "Count" msgstr "Pangkalan data %1$s telah dijana." -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy msgid "Group queries" msgstr "kueri-SQL" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy msgid "Ungroup queries" msgstr "kueri-SQL" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Papar warna" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Indexes" msgid "Hide trace" msgstr "Indeks" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy msgid "Count:" msgstr "Pangkalan data %1$s telah dijana." -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "Dan" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Search" msgid "Add bookmark" msgstr "Cari" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "Label" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy msgid "Target database" msgstr "Cari di pangkalan data" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Search" msgid "Share this bookmark" msgstr "Cari" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Default" msgid "Set default" msgstr "Asal" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy msgid "Show query history at start" msgstr "kueri-SQL" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied database" msgid "Switch to dark theme" msgstr "Tukar kepada pengkalan data yang di salin" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3859,7 +3842,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3988,15 +3971,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4063,8 +4046,8 @@ msgid "Keyname" msgstr "Nama Kekunci" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4115,13 +4098,13 @@ msgstr "Indeks %s telah digugurkan." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Gugur" @@ -4219,7 +4202,7 @@ msgstr "Privilej" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operasi" @@ -4234,7 +4217,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4637,11 +4620,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -4911,21 +4894,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Jumlah" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4936,38 +4919,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL berkata: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Terangkan Kod SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Tanpa Kod PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Hantar Kueri" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Cipta Kod PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5060,6 +5043,10 @@ msgstr "per jam" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5177,42 +5164,42 @@ msgstr "Tambah medan baru" msgid "Attributes" msgstr "Atribut" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Pelayan" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5220,24 +5207,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5940,7 +5927,7 @@ msgstr "Letakkan medan di baris pertama" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -5948,7 +5935,7 @@ msgstr "Medan disertai oleh" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -5968,14 +5955,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Baris ditamatkan oleh" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6587,7 +6574,7 @@ msgid "Column names in first row" msgstr "Letakkan medan di baris pertama" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -8065,7 +8052,7 @@ msgid "Table %s has been emptied." msgstr "Jadual %s telah dikosongkan." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8204,8 +8191,8 @@ msgid "No data to display" msgstr "Tiada pangkalan data" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8250,57 +8237,57 @@ msgstr[0] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Jenis Kueri" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Ubah" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Tekspenuh" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Session value" msgid "Distinct values" @@ -8312,7 +8299,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Tiada perubahan" @@ -9105,55 +9092,55 @@ msgstr "MySQL memulangkan set hasil kosong (i.e. sifar baris)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Tiada pangkalan data" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Tiada pangkalan data" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Struktur sahaja" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9204,56 +9191,56 @@ msgstr "Atau" msgid "web server upload directory:" msgstr "direktori muatnaik pelayan-web" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Selit" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Selitkan baris baru" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Kembali ke muka sebelumnya" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Tambah baris yang baru" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 #, fuzzy msgid "Go back to this page" msgstr "Kembali ke muka sebelumnya" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9265,11 +9252,11 @@ msgstr "" msgid "Value" msgstr "Nilai" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10145,7 +10132,7 @@ msgstr "Baiki jadual" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10161,33 +10148,33 @@ msgid "Delete the table (DROP)" msgstr "Tiada pangkalan data" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 #, fuzzy msgid "Repair" msgstr "Baiki jadual" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10215,37 +10202,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Semak integriti rujukan:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Jadual %s telah dipindahkan ke %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Jadual %s telah disalin ke %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Nama jadual adalah kosong!" @@ -10427,7 +10414,7 @@ msgstr "Statistik pangkalan data" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Melonggok data bagi jadual" @@ -10454,14 +10441,14 @@ msgstr "Keterangan" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struktur jadual bagi jadual" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10469,7 +10456,7 @@ msgstr "Struktur sahaja" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10581,7 +10568,7 @@ msgid "Database:" msgstr "Pangkalan Data" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10692,7 +10679,7 @@ msgid "Data creation options" msgstr "Statistik pangkalan data" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10761,7 +10748,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10812,60 +10799,60 @@ msgstr "sedang digunakan" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for dumped tables" msgstr "Di dalam jadual:" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Di dalam jadual:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Tambahkan nilai AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Tambahkan nilai AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Struktur sahaja" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10897,7 +10884,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10917,33 +10904,33 @@ msgstr "" msgid "Column names: " msgstr "Nama Kolum" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10951,28 +10938,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -10982,23 +10969,23 @@ msgstr "Dokumentasi" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -11010,7 +10997,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -13923,15 +13910,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "With selected:" @@ -13946,17 +13929,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "With selected:" msgid "An alias was expected." @@ -13978,19 +13962,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14018,17 +14002,17 @@ msgstr "Jadual %s telah digugurkan" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Pada Awalan Jadual" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14049,17 +14033,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14759,7 +14743,7 @@ msgstr "Lihat longgokan (skema) pangkalan data" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15843,7 +15827,7 @@ msgid "at beginning of table" msgstr "Pada Awalan Jadual" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy msgid "Partitions" msgstr "Operasi" @@ -15886,7 +15870,7 @@ msgstr "Operasi" msgid "Edit partitioning" msgstr "Paparan Cetak" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16018,12 +16002,12 @@ msgstr "" msgid "Column names" msgstr "Nama Kolum" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Tukarnama jadual ke" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Tiada pangkalan data" @@ -17128,6 +17112,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Search" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Cari" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "TandaBuku telah dipadam." + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/nb.po b/po/nb.po index 78d39c9372..fb4fd37f46 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-11-11 21:15+0000\n" "Last-Translator: nils kristian tomren \n" "Language-Team: Norwegian Bokmål " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save & Close" msgid "Save & close" msgstr "Lagre & Lukk" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Tilbakestill" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Reset All" msgid "Reset all" msgstr "Nullstill Alle" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Manglende verdi i skjemaet!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Velg minst et av alternativene!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Vennligst tast inn et gyldig tall!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Vennligst oppgi en gyldig lengde!" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Apply index(s)" msgid "Add index" msgstr "Utfør indeks(er)" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Rediger indeks" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Legg %s kolonne(r) til index" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Opprett en enkeltkolonneindeks" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Opprett kompositt indeks" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Kompositt med:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Vennligst velg kolonne(r) for indexen." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Du må sette inn minst en kolonne." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Forhåndsvis SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Simuler spørring" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Matchede rader:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL-spørring:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y-verdier" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Vertsnavnet er tomt!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Brukernavnet er tomt!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Passordet er blankt!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Passordene er ikke like!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Fjern valgte brukere" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Lukk" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Antall sider opprettet." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profilen har blitt oppdatert." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Raden er slettet." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Annet" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "," -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Tilkoblinger/prosesser" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Lokal monitorkonfigurasjon er inkompatibel!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1167,165 +1171,165 @@ msgstr "" "Vennlist tilbakestill din konfigurasjon til standard i menyen " "Innstillinger." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Spørrings cache effektivitet" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Spørrings cache bruk" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Spørrings cache brukt" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "System CPU-bruk" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "System minne" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Systembytte" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Gjennomsnitt load" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Totalt minne" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Cached minne" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Buffered minne" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Ledig minne" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Brukt minne" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Totalt swap" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Cached swap" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Brukt swap" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Ledig swap" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Bytes sendt" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Bytes mottatt" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "tilkoblinger" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Prosesser" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabell(er)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Spørringer" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Trafikk" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Innstillinger" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Legg graf til grid" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Legg minst én variabel til serien!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1337,47 +1341,47 @@ msgstr "Legg minst én variabel til serien!" msgid "None" msgstr "Ingen" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Gjenoppta monitor" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Pause overvåkning" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Start automatisk oppdatering" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Stopp automatisk oppdatering" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log og slow_query_log er aktivert." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log er aktivert." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log er aktivert." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log og general_log er deaktivert." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output er ikke satt til TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output er satt til TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1388,12 +1392,12 @@ msgstr "" "lenger enn %d sekunder. Avhengig av ditt system, er det tilrådelig å sette " "long_query_time til 0-2 sekunder." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time er satt til %d sekund(er)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1402,30 +1406,30 @@ msgstr "" "omstart av server:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Lagre utdata til %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Aktiver %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Deaktiver %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Sett long_query_time til %d sekunder." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1433,59 +1437,59 @@ msgstr "" "Du kan ikke endre disse verdiene. Logg inn som root eller kontakt din " "databaseadministrator." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Endre innstillinger" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Nåværende innstillinger" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Rapporttittel" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Differensial" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Delt på %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Enhet" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Fra langsom logg" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Fra generell logg" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "Databasenavnet er ukjent for denne spørring i serverens logger." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Analyserer logger" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Analyserer og laster inn logger. Dette kan ta tid." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Avbryt forespørsel" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1495,7 +1499,7 @@ msgstr "" "Men kun SQL-spørringene har blitt brukt som en grupperingskriterie, så andre " "attributter i spørringer som starter samtidig kan variere." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1505,32 +1509,32 @@ msgstr "" "spørringer i samme tabellen bli gruppert sammen, uten hensyn til de innsatte " "dataene." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Loggdata lastet inn. Spørringer vil bli utført i løpet av denne tidsplanen:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Gå til Loggtabellen" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Ingen data funnet" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "Logg analysert, men ingen data var funnet i løpet av tidsperioden." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analyserer…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Forklar utdata" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1538,7 +1542,7 @@ msgstr "Forklar utdata" msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1548,59 +1552,59 @@ msgstr "Status" msgid "Time" msgstr "Tid" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Total tid:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Profileringsresultater" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabell" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Grafisk fremstilling" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Logg tabellfiltervalgene" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filtrer" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filtrer spørringer med ord/regexp:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "Grupper spørringer, og ignorer varierende data brukt i WHERE-muligheter" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Sum av grupperte rader:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Totalt:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Laster logger" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Visningsoppdatering feilet" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1610,28 +1614,28 @@ msgstr "" "respons. Dette er mest sannsynlig begrunnet at din sesjon utgikk. Det burde " "hjelpe å laste inn siden og logge inn på nytt." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Oppdater siden" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Berørte rader:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Feilet analyseringen av konfigurasjonsfilen. Det virker ikke som det er " "gyldig JSON-kode." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Kunne ikke bygge diagramrutenett med importert konfigurasjon. Setter til " "standardkonfigurasjon…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1640,67 +1644,67 @@ msgstr "" msgid "Import" msgstr "Importer" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Importer overvåkningskonfigurasjon" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Vennligst velg filen du vil importere." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Ingen filer tilgjengelig på server for importering!" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "Analyser Spørring" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Rådgivningssystem" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Mulige ytelsesproblemer" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Problem" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Anbefaling" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Regeldetaljer" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Begrunnelse" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Brukt variabel / formel" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Test" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Formaterer SQL…" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Feil parametere!" -#: js/messages.php:350 +#: js/messages.php:352 #: 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,72 +1716,72 @@ msgstr "Feil parametere!" msgid "Cancel" msgstr "Avbryt" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Side-relaterte innstillinger" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Laster…" -#: js/messages.php:358 +#: js/messages.php:360 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "Forespørsel avbrutt!!" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Prosessforespørsel" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Request Failed!!" msgid "Request failed!!" msgstr "Forespørsel avbrutt!!" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Feil i prosesseringsforespørsel" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Feilkode: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Feilmelding: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Ingen databaser er valgt." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Dropper kolonne" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Legg til primærnøkkel" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1787,61 +1791,61 @@ msgstr "Legg til primærnøkkel" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Klikk for å overse dette varselet" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Endrer databasenes navn" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Kopierer database" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Endrer tegnsett" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Slå på kontroll av fremmednøkler" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Klarte ikke hente ekte antall rader." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Søker" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Skjul søkeresultater" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Vis søkeresultater" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Leser" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Sletter" -#: js/messages.php:391 +#: js/messages.php:393 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:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1857,46 +1861,46 @@ msgstr "Definisjonen av en lagret funksjon må inneholde RETURN erklæring!" msgid "Export" msgstr "Eksporter" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET-editor" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Verdier for kolonne %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Verdier for ny kolonne" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Skriv hver verdi i et eget felt." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Legg til %d verdi(er)" -#: js/messages.php:403 +#: js/messages.php:405 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:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Skjul spørringsboks" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Vis spørringsboks" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1906,7 +1910,7 @@ msgstr "Vis spørringsboks" msgid "Edit" msgstr "Rediger" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1917,41 +1921,41 @@ msgstr "Rediger" msgid "Delete" msgstr "Slett" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 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:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Se de eksterne verdiene" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Ingen autolagret spørring" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Variabel %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Velg" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Kolonnevelger" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Søk i denne listen" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1960,15 +1964,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:424 +#: js/messages.php:426 msgid "See more" msgstr "Se mer" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Er du sikker?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1976,51 +1980,51 @@ msgstr "" "Denne handlingen kan endre definisjonen av enkelte kolonner.
Er du " "sikker på at du vil fortsette?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Fortsett" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Legg til primærnøkkel" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Primærnøkkel lagt til." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Tar deg videre til neste trinn…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Slutten på dette trinnet" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Andre trinn for normaliseringen (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Utført" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Bekreft delvise avhengigheter" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Valgte delvise avhengigheter er følgende:" -#: js/messages.php:444 +#: js/messages.php:446 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2028,19 +2032,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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Ingen delvise avhengigheter er valgt!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Skjul listen over delvise avhengigheter" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2048,41 +2052,41 @@ msgstr "" "Slapp av! Dette kan ta noen sekunder, basert på datamengden og antall " "kolonner i tabellen." -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Trinn" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Følgende handlinger vil bli utført:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "SLETT kolonnene %s fra tabellen %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Lag følgende tabell" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Tredje trinn av normaliseringen (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Bekreft transitive avhengigheter" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Følgende er valgte avhengigheter:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Ingen avhengigheter er valgt!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2092,129 +2096,129 @@ msgstr "Ingen avhengigheter er valgt!" msgid "Save" msgstr "Lagre" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Skjul søkekriterier" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Vis søkekriterier" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Områdesøk" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Kolonne maksimum:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Kolonne minimum:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Minimumsverdi:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Maksimumsverdi:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Skjul kriterier for søk- og erstatt" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Vis kriteriene for søk og erstatt" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Hvert punkt representerer en datarad." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Ved å ha musen over punktet vises dets etikett." -#: js/messages.php:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Velg to kolonner" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Velg to forskjellige kolonner" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Datapunktinnhold" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Kopier" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Punkt" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Linjestreng" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Polygon" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Indre ring" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Ytre ring:" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Vil du kopiere krypteringsnøkkel?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Krypteringsnøkkel" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2222,24 +2226,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:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Velg referert nøkkel" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Velg fremmednøkkel" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Velg primærnøkkelen eller en unik nøkkel!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2247,76 +2251,76 @@ msgstr "" "Du har ikke lagret endringene i utseendet. De vil forsvinne om du ikke " "lagrer dem. Ønsker du å fortsette?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Sidenummer" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Lagre side" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Åpne siden" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Slett side" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Ikke navngitt" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Vennligst velg en side for å fortsette" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Vennligst tast inn et gyldig side navn" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "Ønsker du å lagre endringene i den gjeldende siden?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Slettet side" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Eksporter relasjonsskjema" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Endringene er lagret" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Legg til valg for kolonne \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d objekt(er) opprettet." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Send" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Trykk Escape for å avbryte endring." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2324,15 +2328,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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Dra for å endre rekkefølgen." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Klikk for å sortere resultatene etter denne kolonnen." -#: js/messages.php:567 +#: js/messages.php:569 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 " @@ -2342,26 +2346,26 @@ msgstr "" "mellom STIGENDE/ SYNKENDE
- Ctrl + klikk eller Alt + klikk (Mac: Shift " "+ Option + Klikk). For å fjerne kolonnen fra BESTILLT AV-leddet" -#: js/messages.php:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Klikk for å markere/fjern markering." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Dobbelklikk for å kopiere kolonnenavn." -#: js/messages.php:574 +#: js/messages.php:576 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Vis alle" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2370,11 +2374,11 @@ msgstr "" "valgene Endring, avkrysningsruten, redigere, kopiere og slette koblinger " "virker kanskje ikke etter lagring." -#: js/messages.php:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2382,103 +2386,103 @@ msgstr "" "Ønsker du virkelig å se alle radene? For et stort bord kan dette krasje " "nettleseren." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Opprinnelig lengde" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "avbryt" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Avbrutt" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Vellykket" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Import status" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Legg filene her" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Velg database først" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Skriv ut" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Gå til link:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Kopier kolonnenavn." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Generer passord" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Generer" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Mer" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Vis panel" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Skjul panel" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Vis skjulte elementer i navigasjonstreet." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Lenke med hovedpanelet" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Fjern lenke fra hovedpanelet" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2488,57 +2492,57 @@ msgstr "" "versjon er %s, utgitt den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", siste tilgjengelige versjon:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "er oppdatert" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Opprett view" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Tjenerport" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Send feilrapport" -#: js/messages.php:656 +#: js/messages.php:658 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:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Endre Rapportinnstillinger" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Vis Rapportdetaljer" -#: js/messages.php:662 +#: js/messages.php:664 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:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2547,62 +2551,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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Noen feil har blitt oppdaget på serveren!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Vennligst se nederst i dette vinduet." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Ignorer alle" -#: js/messages.php:688 +#: js/messages.php:690 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:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Utfør denne spørring igjen?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Vil du virkelig slette dette bokmerket?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Tabellkommentarer" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Skjul søkeresultater" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2611,363 +2615,363 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopier databasen til" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Apply index(s)" msgid "Add table prefix" msgstr "Utfør indeks(er)" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Erstatt tabellprefiks" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopier tabell med prefiks" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Forrige" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Neste" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "I dag" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Januar" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Februar" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Mars" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "April" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Mai" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Juni" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Juli" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "August" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "September" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Oktober" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "November" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Des" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Søndag" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Mandag" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Tirsdag" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Onsdag" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Torsdag" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Fredag" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Lørdag" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Søn" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Man" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Tir" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Tor" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Lør" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Søndag" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Man" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Tir" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Ons" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Tor" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Fre" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Lør" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "kalender-måned-år" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "ingen" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Time" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minutt" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Sekund" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Vennligst ordne dette feltet" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Vennligst tast inn en gyldig e-post adresse" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Vennligst tast inn en gyldig URL" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Vennligst tast inn en gyldig dato" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Vennligst tast inn en gyldig dato ( ISO )" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Vennligst tast inn et gyldig tall" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Vennligst tast inn et gyldig kreditkort nummer" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Vennligst oppgi kun tall" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Vennligst tast inn den samme verdien igjen" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Vennligst tast inn minst {0} tegn" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Vennligst tast inn en verdi mellom {0} og {1}" -#: js/messages.php:925 +#: js/messages.php:927 #, 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:930 +#: js/messages.php:932 #, 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:936 +#: js/messages.php:938 #, 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:941 +#: js/messages.php:943 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Vennligst tast inn et gyldig tall!" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Feil" @@ -3019,32 +3023,32 @@ msgstr "Uventede karakterer på linje %s." msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "Uventet tegn på linje %1$s. Ventet \"tab\", fant \"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Nåværende konfigurasjonsfil (%s) er ikke lesbar." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "Gale tillatelser på konfigurasjonsfilen, den burde ikke være skrivbar!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Fontstørrelse" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Slå sammen" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Utvid" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Spør igjen" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3064,76 +3068,59 @@ msgstr "Database" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Totalt %d bokmerke" -msgstr[1] "Totalt %d bokmerker" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "privat" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "delt" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s og %3$s bokmerker er inkludert" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Ingen bokmerker" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Gjennom gjeldende sesjon" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Forklar" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profilering" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Bokmerke" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Spørring feilet" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Spørringens tidsforbruk" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "SQL spørrings konsoll" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Konsoll" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Fjern" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Historikk" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3151,164 +3138,164 @@ msgstr "Historikk" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Innstillinger" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Bokmerker" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Feilsøk SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Tast Ctrl+Enter for å utføre spørring" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy msgid "Press Enter to execute query" msgstr "SQL spørringer" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Stigende" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Synkende" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Other" msgid "Order:" msgstr "Annet" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Antall" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute" msgid "Execution order" msgstr "Utfør" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Other" msgid "Order by:" msgstr "Annet" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "SQL spørringer" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "SQL spørringer" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Vis farger" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide Panel" msgid "Hide trace" msgstr "Skjul panel" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Count" msgid "Count:" msgstr "Antall" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Oppdater" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Legg til" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Legg til bokmerke" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Etikett" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Måldatabase" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Del dette bokmerke" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Angi standard" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Alltid utvid spørringsmeldinger" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Vis spørringshistorikk ved oppstart" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Bytt til kopiert tabell" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Kunne ikke lese konfigurasjonsfilen!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3316,19 +3303,19 @@ msgstr "" "Tjeneren svarer ikke (eller den lokale MySQL tjenerens sokkel er ikke " "korrekt konfigurert)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Tjeneren svarer ikke." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Vennligst sjekk privilegiene på mappen som inneholder databasen." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Detaljer…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Tilkoblingen for kontrollbrukeren som definert i din konfigurasjon feilet." @@ -3646,7 +3633,7 @@ msgstr "Kan være unøyaktig. Se [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Kommandoen/spørringen er utført." @@ -3769,17 +3756,17 @@ msgstr "Filopplasting stoppet av utvidelse." msgid "Unknown error in file upload." msgstr "Ukjent feil oppstod under filopplastingen." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Feil oppstod under forsøk på flytting av den opplastede filen, se " "[doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Feil oppstod imens den opplastede filen ble flyttet." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -3845,8 +3832,8 @@ msgid "Keyname" msgstr "Nøkkel" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3896,13 +3883,13 @@ msgstr "Indeksen %s har blitt slettet." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Slett" @@ -4002,7 +3989,7 @@ msgstr "Privilegier" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operasjoner" @@ -4017,7 +4004,7 @@ msgstr "Overvåkning" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4398,11 +4385,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "Ingen gyldig bildesti for stilen %s ble funnet!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Ingen forhandsvisning tilgjengelig." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "velg" @@ -4720,23 +4707,23 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Romtyper" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Maksimum størrelse: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Statistikkdata" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4747,38 +4734,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL sa: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Forklar SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Ikke forklar SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "uten PHP kode" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Kjør spørring" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Lag PHP kode" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Rediger innenfor" @@ -4866,6 +4853,10 @@ msgstr "per time" msgid "per day" msgstr "hver dag" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "delt" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Søk:" @@ -4975,11 +4966,11 @@ msgstr "Legg til ny kolonne" msgid "Attributes" msgstr "Attributter" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Kunne ikke lese konfigurasjonsfilen!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4987,31 +4978,31 @@ msgstr "" "Dette mener vanligvis at det er en syntaksfeil i det, sjekk mulige feil som " "vises under." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Kunne ikke laste standard konfigurasjonsfil fra: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Ugyldig tjenerindeks: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ugyldig tjenernavn for tjener %1$s. Kontroller din konfigurasjon." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Ugyldig autentiseringsmetode satt opp i konfigureringen:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5019,24 +5010,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du burde oppgradere til %s %s eller nyere." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "mulig sikkerhetshull" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "numerisk nøkkel oppdaget" @@ -5896,13 +5887,13 @@ msgstr "Sett inn kolonnenavn i første rad" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Kolonner omsluttet av" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Columns escaped by" msgid "Columns escaped with" @@ -5922,14 +5913,14 @@ msgstr "Fjern CRLF tegn inne i kolonner" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "Kolonner avsluttet med" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6599,7 +6590,7 @@ msgid "Column names in first row" msgstr "Kolonnenavn i første rad" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Ikke importer tomme rader" @@ -8429,7 +8420,7 @@ msgid "Table %s has been emptied." msgstr "Tabellen %s har blitt tømt." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8569,8 +8560,8 @@ msgid "No data to display" msgstr "Ingen data funnet" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8614,57 +8605,57 @@ msgstr[1] "" msgid "No column selected." msgstr "Ingen rader valgt" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Gather errors" msgid "Query error" msgstr "Samle feilmeldinger" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Endre" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Fulltekst" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8676,7 +8667,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s tillegget mangler. Kontroller din PHP konfigurasjon." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ingen endring" @@ -9522,19 +9513,19 @@ msgstr "MySQL returnerte ett tomt resultat (m.a.o. ingen rader)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 #, 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:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9544,47 +9535,47 @@ msgstr "" "Endre noen av dens innstillinger ved å klikke på den tilhørende " "\"Innstillinger\" link" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 #, 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:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Gå til database" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Mangler data for %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Gå til tabell" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Kun struktur" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Gå til visning" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9636,49 +9627,49 @@ msgstr "Eller" msgid "web server upload directory:" msgstr "webtjener opplastingskatalog" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Rediger/Sett inn" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, 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:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "og så" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Sett inn som ny rad" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Sett inn som ny rad og ignorer feil" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Viser SQL spørring" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Returner" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Sett inn en ny post" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Tilbake til denne siden" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Rediger neste rad" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9688,7 +9679,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9700,11 +9691,11 @@ msgstr "" msgid "Value" msgstr "Verdi" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Viser SQL spørring" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Insatt rad id: %1$d" @@ -10588,7 +10579,7 @@ msgstr "Reparer tabell" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" @@ -10605,32 +10596,32 @@ msgid "Delete the table (DROP)" msgstr "Gå til database" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analyser" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Kontroller" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimaliser" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Gjenoppbygg" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Reparer" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10658,37 +10649,37 @@ msgstr "Fjern partisjonering" msgid "Check referential integrity:" msgstr "Sjekk referanseintegritet:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Kan ikke flytte tabellen til samme navn!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Kan ikke kopiere tabellen til samme navn!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabellen %s har blitt flyttet til %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabellen %s er kopiert til %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Tabellnavnet er tomt!" @@ -10880,7 +10871,7 @@ msgstr "Databasevisningsinnstillinger" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dataark for tabell" @@ -10906,21 +10897,21 @@ msgstr "Beskrivelse" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tabellstruktur for tabell" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Visningsstruktur" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Erstatningsstruktur for visning" @@ -11030,7 +11021,7 @@ msgid "Database:" msgstr "Database" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11150,7 +11141,7 @@ msgid "Data creation options" msgstr "Transformasjonsvalg" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11219,7 +11210,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11265,61 +11256,61 @@ msgstr "i bruk" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Begrensninger for dumpede tabeller" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Begrensninger for tabell" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Begrensninger for dumpede tabeller" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "I tabellene:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Legg til AUTO_INCREMENT verdi" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPER FOR TABELLEN" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELASJONER FOR TABELLEN" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Visningsstruktur" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11355,7 +11346,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11373,33 +11364,33 @@ msgstr "" msgid "Column names: " msgstr "Kolonnenavn: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Ugyldig parameter for CSV import: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Ugyldig format i CSV importen i linje %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Ugyldig antall kolonner i CSV importen i linje %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Dette tillegget støtter ikke komprimerte importeringer!" @@ -11407,27 +11398,27 @@ msgstr "Dette tillegget støtter ikke komprimerte importeringer!" msgid "MediaWiki Table" msgstr "MediaWiki Tabell" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." msgstr "Ugyldig format i CSV importen i linje %d." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "Importer prosenter som ekte desimaler (12.00% til .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 #, fuzzy #| msgid "Import currencies ($5.00 to 5.00)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importer valuta ($5.00 til 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -11435,7 +11426,7 @@ msgstr "" "Den spesifiserte XML-filen var enten skadet eller ufulstendig. Korriger " "problemet og prøv igjen." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11445,23 +11436,23 @@ msgstr "Open Document regneark" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Den importerte filen inneholder ingen data!" @@ -11477,7 +11468,7 @@ msgstr "SQL kompatibilitetsmodus" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ikke bruk AUTO_INCREMENT for nullverdier" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14762,15 +14753,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14785,17 +14772,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14817,23 +14805,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Antall åpne tabeller." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Antall åpne tabeller." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14866,17 +14854,17 @@ msgstr "Tabellen %1$s har blitt opprettet." msgid "Variable name was expected." msgstr "Tabellnavnmal" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Ved begynnelsen av tabellen" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14899,19 +14887,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15659,7 +15647,7 @@ msgstr "Vis dump (skjema) av tabell" msgid "Invalid table name" msgstr "Ugylding tabellnavn" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16770,7 +16758,7 @@ msgid "at beginning of table" msgstr "Ved begynnelsen av tabellen" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16819,7 +16807,7 @@ msgstr "partisjonert" msgid "Edit partitioning" msgstr "Fjern partisjonering" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16950,11 +16938,11 @@ msgstr "VIEW navn" msgid "Column names" msgstr "Kolonnenavn" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Endre tabellens navn" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Go to database" msgid "Delete the view (DROP)" @@ -18165,6 +18153,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert er satt til 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Totalt %d bokmerke" +#~ msgstr[1] "Totalt %d bokmerker" + +#~ msgid "private" +#~ msgstr "privat" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s og %3$s bokmerker er inkludert" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/ne.po b/po/ne.po index d57cf9c28d..2a3c30215f 100644 --- a/po/ne.po +++ b/po/ne.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Nepali " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "सबै चयन गर्नुहोस" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "" -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1110,155 +1113,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1270,47 +1273,47 @@ msgstr "" msgid "None" msgstr "" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1318,136 +1321,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1455,7 +1458,7 @@ msgstr "" msgid "Status" msgstr "स्थिति" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1465,82 +1468,82 @@ msgstr "स्थिति" msgid "Time" msgstr "" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1549,65 +1552,65 @@ msgstr "" msgid "Import" msgstr "" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "मापदण्डहरु मिलेन!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1619,60 +1622,60 @@ msgstr "मापदण्डहरु मिलेन!" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1682,55 +1685,55 @@ msgstr "" msgid "OK" msgstr "" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1746,44 +1749,44 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1793,7 +1796,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1804,164 +1807,164 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -1971,370 +1974,370 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Table comments:" msgid "Show panel" msgstr "टेबलको टिप्पणीहरु:" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2342,107 +2345,107 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments:" msgid "Show arguments" msgstr "टेबलको टिप्पणीहरु:" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2451,351 +2454,351 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "No tables selected." msgid "Copy tables to" msgstr "कुनैपनि डेटाबेस चयन गरिएको छैन।" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "" @@ -2845,32 +2848,32 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2890,76 +2893,59 @@ msgstr "तथ्याङ्क भण्डार" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -2977,159 +2963,159 @@ msgstr "" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Table comments:" msgid "Show trace" msgstr "टेबलको टिप्पणीहरु:" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3442,7 +3428,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3560,15 +3546,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3632,8 +3618,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3683,13 +3669,13 @@ msgstr "" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "हटाउ" @@ -3787,7 +3773,7 @@ msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "" @@ -3802,7 +3788,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4173,11 +4159,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -4440,21 +4426,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4465,36 +4451,36 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Created" msgid "Without PHP code" msgstr "निर्माण गरियो/गरिएको छ" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Created" msgid "Create PHP code" msgstr "निर्माण गरियो/गरिएको छ" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" @@ -4582,6 +4568,10 @@ msgstr "" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "" @@ -4686,41 +4676,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4728,24 +4718,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5410,13 +5400,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5434,12 +5424,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -5996,7 +5986,7 @@ msgid "Column names in first row" msgstr "" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -7385,7 +7375,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "" @@ -7517,8 +7507,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7556,52 +7546,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7611,7 +7601,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8334,54 +8324,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8427,53 +8417,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8485,11 +8475,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9310,7 +9300,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9323,32 +9313,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9374,35 +9364,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9571,7 +9561,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9595,21 +9585,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9699,7 +9689,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9791,7 +9781,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9860,7 +9850,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9903,52 +9893,52 @@ msgstr "प्रयोगमा" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -9978,7 +9968,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -9996,33 +9986,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10030,28 +10020,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10059,23 +10049,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10087,7 +10077,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -12794,15 +12784,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "" @@ -12815,17 +12801,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "" @@ -12843,19 +12830,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "" @@ -12881,15 +12868,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12910,15 +12897,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13587,7 +13574,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14496,7 +14483,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14531,7 +14518,7 @@ msgstr "निर्माण:" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14649,11 +14636,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/nl.po b/po/nl.po index 2665da8dd5..62f24cc424 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-02-08 11:22+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" @@ -47,7 +47,7 @@ msgid "Table comments:" msgstr "Tabelopmerkingen:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -101,7 +101,7 @@ msgstr "Type" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -163,16 +163,16 @@ msgid "Comments" msgstr "Opmerkingen" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Primaire sleutel" -#: db_datadict.php:165 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:376 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:141 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:446 @@ -196,17 +196,17 @@ msgstr "Primaire sleutel" msgid "No" msgstr "Nee" -#: db_datadict.php:165 js/messages.php:519 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:521 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:143 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -260,7 +260,7 @@ msgstr "Tabellen" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -409,23 +409,23 @@ msgid "Point:" msgstr "Punt:" #: gis_data_editor.php:216 gis_data_editor.php:243 gis_data_editor.php:299 -#: gis_data_editor.php:372 js/messages.php:508 +#: gis_data_editor.php:372 js/messages.php:510 msgid "X" msgstr "X" #: gis_data_editor.php:219 gis_data_editor.php:247 gis_data_editor.php:303 -#: gis_data_editor.php:378 js/messages.php:509 +#: gis_data_editor.php:378 js/messages.php:511 msgid "Y" msgstr "Y" #: gis_data_editor.php:241 gis_data_editor.php:297 gis_data_editor.php:370 -#: js/messages.php:511 +#: js/messages.php:513 #, php-format msgid "Point %d" msgstr "Punt %d" #: gis_data_editor.php:254 gis_data_editor.php:310 gis_data_editor.php:388 -#: js/messages.php:517 +#: js/messages.php:519 msgid "Add a point" msgstr "Een punt toevoegen" @@ -449,7 +449,7 @@ msgstr "Binnenste ring %d:" msgid "Add a linestring" msgstr "Een regel-string toevoegen" -#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:518 +#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:520 msgid "Add an inner ring" msgstr "Een binnenring toevoegen" @@ -466,12 +466,12 @@ msgstr "Een veelhoek toevoegen" msgid "Add geometry" msgstr "Geometrie toevoegen" -#: gis_data_editor.php:411 js/messages.php:349 libraries/DbSearch.php:463 +#: gis_data_editor.php:411 js/messages.php:351 libraries/DbSearch.php:463 #: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:139 #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -501,7 +501,7 @@ msgstr "Geometrie toevoegen" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Starten" @@ -521,7 +521,7 @@ msgstr "" msgid "Succeeded" msgstr "Geslaagd" -#: import.php:58 js/messages.php:592 +#: import.php:58 js/messages.php:594 msgid "Failed" msgstr "Mislukt" @@ -529,7 +529,7 @@ msgstr "Mislukt" msgid "Incomplete params" msgstr "Onvolledige parameters" -#: import.php:184 +#: import.php:185 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -538,15 +538,15 @@ msgstr "" "U probeerde waarschijnlijk een bestand te uploaden dat te groot is. Zie " "%sdocumentatie%s om deze limiet te omzeilen." -#: import.php:360 import.php:665 +#: import.php:361 import.php:666 msgid "Showing bookmark" msgstr "Bladwijzer tonen" -#: import.php:376 import.php:661 +#: import.php:377 import.php:662 msgid "The bookmark has been deleted." msgstr "De bladwijzer is verwijderd." -#: import.php:474 +#: import.php:475 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -556,12 +556,12 @@ msgstr "" "'open_basedir' ingeschakeld is zonder toegang tot de map %s (voor tijdelijke " "bestanden)." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:491 import.php:568 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "Bestand kon niet worden gelezen!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:502 import.php:517 import.php:542 import.php:557 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -571,7 +571,7 @@ msgstr "" "uploaden. De ondersteuning is niet geïmplementeerd of uitgeschakeld in de " "configuratie." -#: import.php:574 +#: import.php:575 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -582,22 +582,25 @@ msgstr "" "bestandsgrootte zoals opgegeven in de PHP-configuratie. Zie [doc@faq1-16]FAQ " "1.16[/doc]." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:627 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "" "De importeer-plugins konden niet worden geladen, controleer de installatie!" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:669 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "Bladwijzer %s is aangemaakt." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "Het importeren is geslaagd, %d query's uitgevoerd." +#: import.php:679 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "Het importeren is geslaagd, %d query's uitgevoerd." +msgstr[1] "Het importeren is geslaagd, %d query's uitgevoerd." -#: import.php:705 +#: import.php:710 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -606,7 +609,7 @@ msgstr "" "De maximale uitvoertijd is verstreken, als u het importeren wilt afmaken, " "%sresubmit dezelfde file%s opnieuw en de import zal hervat worden." -#: import.php:715 +#: import.php:720 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -619,8 +622,8 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Voortgang van de import kon niet worden ingelezen." -#: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: import_status.php:116 js/messages.php:450 js/messages.php:602 +#: libraries/Util.php:795 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Terug" @@ -643,7 +646,7 @@ msgstr "" msgid "General settings" msgstr "Algemene instellingen" -#: index.php:191 js/messages.php:625 +#: index.php:191 js/messages.php:627 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:287 msgid "Change password" @@ -715,10 +718,11 @@ msgstr "Informatie over PHP weergeven" msgid "Version information:" msgstr "Versie-informatie:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:442 libraries/Util.php:509 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Documentatie" @@ -846,98 +850,98 @@ msgid "" msgstr "" "De server gebruikt Suhosin. Zie de %sdocumentatie%s voor mogelijke problemen." -#: js/messages.php:39 libraries/import.lib.php:207 sql.php:161 +#: js/messages.php:41 libraries/import.lib.php:207 sql.php:161 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld." -#: js/messages.php:45 +#: js/messages.php:47 msgid "Confirm" msgstr "Bevestig" -#: js/messages.php:46 +#: js/messages.php:48 #, php-format msgid "Do you really want to execute \"%s\"?" msgstr "Weet u zeker dat u de query \"%s\" wil uitvoeren?" -#: js/messages.php:48 libraries/mult_submits.lib.php:440 +#: js/messages.php:50 libraries/mult_submits.lib.php:440 msgid "You are about to DESTROY a complete database!" msgstr "U staat op het punt een volledige database te VERWIJDEREN!" -#: js/messages.php:50 +#: js/messages.php:52 msgid "You are about to DESTROY a complete table!" msgstr "U staat op het punt een volledige tabel te VERWIJDEREN!" -#: js/messages.php:52 +#: js/messages.php:54 msgid "You are about to TRUNCATE a complete table!" msgstr "U staat op het punt een volledige database LEEG te maken!" -#: js/messages.php:53 +#: js/messages.php:55 msgid "Delete tracking data for this table?" msgstr "Verwijder tracking data voor deze tabel?" -#: js/messages.php:55 +#: js/messages.php:57 msgid "Delete tracking data for these tables?" msgstr "Verwijder tracking data voor deze tabellen?" -#: js/messages.php:57 +#: js/messages.php:59 msgid "Delete tracking data for this version?" msgstr "Verwijder tracking data voor deze versie?" -#: js/messages.php:59 +#: js/messages.php:61 msgid "Delete tracking data for these versions?" msgstr "Verwijder tracking data voor deze versies?" -#: js/messages.php:60 +#: js/messages.php:62 msgid "Delete entry from tracking report?" msgstr "Verwijder gegevensrij uit tracking rapport?" -#: js/messages.php:61 +#: js/messages.php:63 msgid "Deleting tracking data" msgstr "Tracking data voor deze tabel wordt verwijderd" -#: js/messages.php:62 +#: js/messages.php:64 msgid "Dropping Primary Key/Index" msgstr "Primaire sleutel/index wordt verwijderd" -#: js/messages.php:63 +#: js/messages.php:65 msgid "Dropping Foreign key." msgstr "Vreemde sleutel wordt verwijderd." -#: js/messages.php:65 +#: js/messages.php:67 msgid "This operation could take a long time. Proceed anyway?" msgstr "Deze bewerking kan lang duren. Toch voortgaan?" -#: js/messages.php:67 +#: js/messages.php:69 #, php-format msgid "Do you really want to delete user group \"%s\"?" msgstr "Weet u zeker dat u gebruikersgroep \"%s\" wil verwijderen?" -#: js/messages.php:69 +#: js/messages.php:71 #, php-format msgid "Do you really want to delete the search \"%s\"?" msgstr "Weet u zeker dat u opzoeking \"%s\" wil verwijderen?" -#: js/messages.php:71 +#: js/messages.php:73 msgid "You have unsaved changes; are you sure you want to leave this page?" msgstr "" "Er zijn niet-opgeslagen wijzigingen; bent u zeker dat u deze pagina wil " "verlaten?" -#: js/messages.php:73 +#: js/messages.php:75 msgid "Do you really want to revoke the selected user(s) ?" msgstr "" "Weet u zeker dat u de rechten van de geselecteerde gebruiker(s) wil " "intrekken?" -#: js/messages.php:75 +#: js/messages.php:77 msgid "Do you really want to delete this central column?" msgstr "Weet u zeker dat u deze centrale kolom wilt verwijderen?" -#: js/messages.php:77 +#: js/messages.php:79 msgid "Do you really want to delete the selected items?" msgstr "Weet u zeker dat u de geselecteerde items wilt verwijderen?" -#: js/messages.php:79 +#: js/messages.php:81 msgid "" "Do you really want to DROP the selected partition(s)? This will also DELETE " "the data related to the selected partition(s)!" @@ -945,19 +949,19 @@ msgstr "" "Wilt u echt de geselecteerde partitie(s) verwijderen? Dit verwijderd ook " "alle data gerelateerd aan deze partitie(s)!" -#: js/messages.php:83 +#: js/messages.php:85 msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "Weet u zeker dat u de geselecteerde partitiie(s) wilt afbreken?" -#: js/messages.php:85 +#: js/messages.php:87 msgid "Do you really want to remove partitioning?" msgstr "Weet u zeker dat u de partitionering wilt verwijderen?" -#: js/messages.php:86 +#: js/messages.php:88 msgid "Do you really want to RESET SLAVE?" msgstr "Weet u zeker dat u RESET SLAVE wil uitvoeren?" -#: js/messages.php:88 +#: js/messages.php:90 msgid "" "This operation will attempt to convert your data to the new collation. In " "rare cases, especially where a character doesn't exist in the new collation, " @@ -971,16 +975,16 @@ msgstr "" "weergegeven wordt; in dat geval adviseren we om de actie terug te draaien en " "verwijzen we naar de tips op " -#: js/messages.php:94 +#: js/messages.php:96 msgid "Garbled Data" msgstr "Verminkte data" -#: js/messages.php:96 +#: js/messages.php:98 msgid "Are you sure you wish to change the collation and convert the data?" msgstr "" "Weet u zeker dat u deze vergelijking wil wijzigen en de data converteren?" -#: js/messages.php:98 +#: js/messages.php:100 msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -996,7 +1000,7 @@ msgstr "" "de bewerkingsmogelijkheid (de \"Wijzig\" link) van de kolom(men) op de " "tabelstructuur pagina te gebruiken." -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1004,160 +1008,160 @@ msgstr "" "Weet u zeker dat u alle kolom vergelijkingen wil wijzigen en de data " "converteren?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Opslaan & sluiten" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Herstellen" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Alles terugzetten naar standaardwaarden" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Er ontbreekt een waarde in het formulier!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Selecteer ten minste een van de opties!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Vul een geldig nummer in!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Vul een geldige lengte in!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Index toevoegen" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Index bewerken" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Voeg %s kolom(men) toe aan index" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Index van één kolom maken" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Samengestelde index maken" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Samenstellen met:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Gelieve de kolom(men) voor de index te selecteren." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "U moet minstens één kolom toevoegen." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "SQL voorbeeld" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Query simuleren" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Overeenkomende rijen:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL-query:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Y-waarden" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "De hostnaam is leeg!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "De gebruikersnaam is leeg!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Het wachtwoord is leeg!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "De wachtwoorden zijn niet gelijk!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Geselecteerde gebruikers worden verwijderd" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Sluiten" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Template werd aangemaakt." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Template werd geladen." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Template werd aangepast." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Template werd verwijderd." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Andere" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "," -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Verbindingen / Processen" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Configuratie van lokale monitoring is niet geldig!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1170,155 +1174,155 @@ msgstr "" "Reset de instellingen naar de standaardwaarden in het menu Instellingen." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Querycache-efficiëntie" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Querycache-gebruik" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Querycache gebruikt" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Systeem CPU-gebruik" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Systeemgeheugen" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Systeemwisselbestand" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Gemiddelde systeembelasting" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Totaal geheugen" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Gecached geheugen" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Gebufferd geheugen" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Vrij geheugen" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Gebruikt geheugen" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Totaal wisselbestand" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Gecached wisselbestand" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Wisselbestand in gebruik" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Vrije ruimte wisselbestand" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Doorgestuurde bytes" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Ontvangen bytes" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Verbindingen" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Processen" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabel(len)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Questions" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Verkeer" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Instellingen" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Grafiek toevoegen aan raster" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Voeg tenminste één variabele toe aan de reeks!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1330,47 +1334,47 @@ msgstr "Voeg tenminste één variabele toe aan de reeks!" msgid "None" msgstr "Geen" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Monitor heropstarten" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Monitor pauzeren" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Start automatisch vernieuwen" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Stop automatisch vernieuwen" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log en slow_query_log zijn ingeschakeld." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log is ingeschakeld." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log is ingeschakeld." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log en general_log zijn uitgeschakeld." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output heeft niet TABLE als instelling." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output is ingesteld op TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1381,12 +1385,12 @@ msgstr "" "duren dan %d seconden. Het is aangeraden om long_query_time in te stellen op " "0-2 seconden, afhankelijk van uw systeem." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time is ingesteld op %d seconde(n)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1395,30 +1399,30 @@ msgstr "" "de standaardwaarde bij herstart van de server:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "log_ouput instellen op %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "%s inschakelen" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "%s uitschakelen" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "long_query_time instellen op %d seconden." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1426,57 +1430,57 @@ msgstr "" "U kan deze variabelen niet wijzigen. Log in als root of neem contact op met " "de databasebeheerder." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Instellingen wijzigen" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Huidige instellingen" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Grafiektitel" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Verschil" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Gedeeld door %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Eenheid" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Uit het logbestand van trage query's" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Uit het algemene logbestand" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "De databasenaam is niet gekend voor deze query in de serverlogboeken." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Bezig met analyseren van logbestanden" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Logbestanden worden geladen en geanalyseerd. Dit kan even duren." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Aanvraag onderbreken" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1486,7 +1490,7 @@ msgstr "" "de SQL-query werd gebruikt als criterium voor het groeperen, dus andere " "eigenschappen van query's, zoals de starttijd, kunnen verschillend zijn." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1496,32 +1500,32 @@ msgstr "" "query's voor dezelfde tabel ook gegroepeerd worden, zonder rekening te " "houden met de gegevens die ingevoegd worden." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "Loggegevens zijn geladen. Aantal ondertussen uitgevoerde query's:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Ga naar tabel Log" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Geen gegevens gevonden" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Log is geanalyseerd, maar in deze periode zijn er geen gegevens gevonden." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Gegevens worden geanalyseerd…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Verklaar resultaat" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1529,7 +1533,7 @@ msgstr "Verklaar resultaat" msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1539,60 +1543,60 @@ msgstr "Status" msgid "Time" msgstr "Tijd" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Totale tijd:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Profiling-resultaten" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabel" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Grafiek" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Filteropties voor tabel Log" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filter toepassen" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Query's filteren op woord/regexp:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "Query's groeperen, verschillende parameter waarden in WHERE-statements " "worden genegeerd" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Aantal gegroepeerde rijen:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Totaal:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Logboeken worden geladen" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Verversen van monitor mislukt" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1602,28 +1606,28 @@ msgstr "" "gegevens. Dit is waarschijnlijk omdat je sessie afgelopen is. Verversen van " "de pagina en opnieuw aanmelden zou dit probleem moeten oplossen." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Pagina verversen" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Getroffen rijen:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Verwerken van het configuratiebestand is mislukt. Het is geen geldig JSON-" "formaat." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Opbouwen van het raster met grafieken aan de hand van de geïmporteerde " "configuratie is mislukt. Standaard configuratie wordt gebruikt in de plaats…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1632,63 +1636,63 @@ msgstr "" msgid "Import" msgstr "Importeren" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Importeer monitor configuratie" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Selecteer het bestand dat u wil importeren." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Geen bestanden beschikbaar op de server om te importeren!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Analyseer query" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Adviessysteem" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Mogelijke performantieproblemen" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Probleem" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Aanbeveling" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Regeldetails" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Rechtvaardiging" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Gebruikte variabele / formule" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Test" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Aanmaken SQL…" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "Parameters niet gevonden!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1700,60 +1704,60 @@ msgstr "Parameters niet gevonden!" msgid "Cancel" msgstr "Annuleren" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Pagina gerelateerde instellingen" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Toepassen" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Laden…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Aanvraag afgebroken!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "Bezig met verwerken" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "Aanvraag gefaald!!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Fout tijdens het uitvoeren van de opdracht" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Foutcode: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Foutomschrijving: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Er zijn geen databases geselecteerd." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Kolom laten vervallen" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Een primaire sleutel toevoegen" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1763,56 +1767,56 @@ msgstr "Een primaire sleutel toevoegen" msgid "OK" msgstr "Correct" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Klik om deze melding te sluiten" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Database hernoemen" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Database kopiëren" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Karakterset aanpassen" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Controle op externe sleutelvelden inschakelen" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Ophalen van exact aantal rijen mislukt." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Zoeken" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Zoekresultaten verbergen" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Zoekresultaten tonen" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Verkennen" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Verwijderen" -#: js/messages.php:391 +#: js/messages.php:393 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:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1828,46 +1832,46 @@ msgstr "" msgid "Export" msgstr "Exporteren" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET-editor" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Waarden voor kolom %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Waarden voor een nieuwe kolom" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Plaats elke waarde in een afzonderlijk veld." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "%d nieuwe waarde(n) toevoegen" -#: js/messages.php:403 +#: js/messages.php:405 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:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "SQL-queryveld verbergen" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "SQL-queryveld tonen" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1877,7 +1881,7 @@ msgstr "SQL-queryveld tonen" msgid "Edit" msgstr "Wijzigen" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1888,41 +1892,41 @@ msgstr "Wijzigen" msgid "Delete" msgstr "Verwijderen" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 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:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Bekijk vreemde waarden" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Geen automatisch opgeslagen query" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Variabele %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Kies" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Kolomselectie" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Zoek in deze lijst" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1932,15 +1936,15 @@ msgstr "" "centrale lijst voor database %s kolommen heeft die niet in de huidige tabel " "voorkomen." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Meer" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Bent u zeker?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1948,51 +1952,51 @@ msgstr "" "Deze actie wijzigt mogelijk de definitie van de kolommen.
Weet u zeker " "dat u wilt doorgaan?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Verder gaan" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Een primaire sleutel toevoegen" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Primaire sleutel toegevoegd." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Naar de volgende stap…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Einde van de stap" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Tweede stap van normalisatie (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Klaar" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Gedeeltelijke afhankelijkheden bevestigen" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Dit zijn de geselecteerde gedeeltelijke afhankelijkheden:" -#: js/messages.php:444 +#: js/messages.php:446 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,21 +2004,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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Er zijn geen gedeeltelijke afhankelijkheden geselecteerd!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Verberg lijst met gedeeltelijke afhankelijkheden" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2022,41 +2026,41 @@ msgstr "" "Even geduld! Het kan enkele seconden duren, afhankelijk van de hoeveelheid " "gegevens en het aantal kolommen in de tabel." -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Stap" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "De volgende acties worden uitgevoerd:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "Verwijder (DROP) kolommen %s uit tabel %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Maak de volgende tabel aan" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Derde stap van normalisatie (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Overgankelijke afhankelijkheden bevestigen" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Dit zijn de geselecteerde afhankelijkheden:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Er zijn geen afhankelijkheden geselecteerd!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2066,128 +2070,128 @@ msgstr "Er zijn geen afhankelijkheden geselecteerd!" msgid "Save" msgstr "Opslaan" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Zoekcriteria verbergen" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Zoekcriteria tonen" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Zoeken op bereik" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Kolommaximum:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Kolomminimum:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Minimumwaarde:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Maximumwaarde:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Zoek- en vervangcriteria verbergen" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Zoek- en vervangcriteria tonen" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Ieder punt stelt een gegevensrij voor." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Beweeg over een punt om het label te tonen." -#: js/messages.php:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Selecteer twee kolommen" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Selecteer twee verschillende kolommen" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Inhoud gegevenspunt" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Negeren" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Kopiëren" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Punt" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Lijnstuk definitie" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Polygoon" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometrie" # https://nl.wikipedia.org/wiki/Ingeschreven_cirkel -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "Binnenste ring" # https://nl.wikipedia.org/wiki/Aangeschreven_cirkel -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Buitenste ring" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Wilt u de encryptiesleutel kopiëren?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Encryptiesleutel" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2195,24 +2199,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:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Selecteer de gerefereerde sleutel" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Selecteer vreemde sleutel" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Selecteer de primaire sleutel of een unieke sleutel!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2220,76 +2224,76 @@ msgstr "" "U hebt de layoutwijzigingen niet opgeslagen. Deze zullen verloren gaan als u " "deze niet opslaat. Wilt u doorgaan?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Paginanaam" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Pagina opslaan" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Pagina openen" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Pagina verwijderen" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Naamloos" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Gelieve een pagina te selecteren om verder te gaan" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Gelieve een geldige paginanaam in te geven" -#: js/messages.php:548 +#: js/messages.php:550 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:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Pagina werd succesvol verwijderd" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Exporteer relationeel schema" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Wijzigingen werden opgeslagen" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Een optie voor kolom \"%s\" toevoegen." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d object(en) aangemaakt." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Verzenden" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Druk op ESC om het bewerken te annuleren." -#: js/messages.php:561 +#: js/messages.php:563 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2297,15 +2301,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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Sleep om te herschikken." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Klik om resultaten te sorteren op deze kolom." -#: js/messages.php:567 +#: js/messages.php:569 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2316,26 +2320,26 @@ msgstr "" "+ klik (Mac: Shift + Option + klik) om de kolom uit de ORDER BY (sorteren " "op)-component verwijderen" -#: js/messages.php:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Klik om te markeren/demarkeren." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Dubbelklik om kolomnaam te kopiëren." -#: js/messages.php:574 +#: js/messages.php:576 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Toon alles" -#: js/messages.php:578 +#: js/messages.php:580 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2344,12 +2348,12 @@ msgstr "" "checkboxen, Bewerken, Kopiëren en Verwijderen, werken mogelijk niet na " "opslaan." -#: js/messages.php:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2357,103 +2361,103 @@ msgstr "" "Wil je echt alle regels zien? Voor een grote tabel kan dit je browser doen " "crashen." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Oorspronkelijke lengte" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "annuleren" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Afgehaakte" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Geslaagd" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Importstatus" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Bestanden hier neerzetten" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Selecteer eerst een database" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Afdrukken" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Volg de link:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Kolomnaam kopiëren." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Wachtwoord genereren" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Genereren" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Meer" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Paneel tonen" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Paneel verbergen" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Verborgen navigatieboom onderdelen weergeven." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Verbinden met hoofdpaneel" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Loskoppelen van hoofdpaneel" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2463,27 +2467,27 @@ msgstr "" "overwegen. De nieuwe versie is %s, uitgebracht op %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", meest recente versie:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "Recent bijgewerkt" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "VIEW aanmaken" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Verzend foutmeldingsverslag" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Verstuur foutmeldingsverslag" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2491,15 +2495,15 @@ msgstr "" "Er is een fatale JavaScript-fout opgetreden. Wil u een foutmeldingsverslag " "verzenden?" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Rapport instellingen wijzigen" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Toon rapport details" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2507,7 +2511,7 @@ msgstr "" "Uw uitvoer is onvolledig, als gevolg van een lage uitvoeringstijdbeperking " "op PHP niveau!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2517,60 +2521,60 @@ msgstr "" "indiening, worden een aantal velden mogelijk genegeerd, als gevolg van PHP's " "max_input_vars configuratie." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Er zijn enkele fouten opgetreden op de server!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Gelieve de onderkant van dit venster te bekijken." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Alles negeren" -#: js/messages.php:688 +#: js/messages.php:690 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:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Deze query opnieuw uitvoeren?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Weet u zeker dat u deze bladwijzer wil verwijderen?" -#: js/messages.php:702 +#: js/messages.php:704 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:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s queries %s keer uitgevoerd in %s seconden." -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "%s argument(en) gepasseerd" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Toon argumenten" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Argumenten verbergen" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Gebruikte tijd:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2585,349 +2589,349 @@ msgstr "" "\"Offslinewebsitegegevens\" kan dan helpen. In Safari wordt dit probleem " "meestal veroorzaakt door \"Privénavigatie\"." -#: js/messages.php:711 +#: js/messages.php:713 msgid "Copy tables to" msgstr "Kopieer tabellen naar" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "Tabel voorvoegsel toevoegen" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "Vervang tabel met voorvoegsel" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Vervang tabel met voorvoegsel" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Vorige" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Vandaag" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "januari" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "februari" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "maart" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "april" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "mei" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "juni" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "juli" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "augustus" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "september" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "oktober" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "november" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "dec" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "zondag" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "maandag" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "dinsdag" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "woensdag" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "donderdag" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "vrijdag" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "zaterdag" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "zo" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "ma" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "di" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "wo" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "do" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "vr" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "za" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "zo" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "ma" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "di" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "wo" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "do" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "vr" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "za" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "geen" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Uur" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minuut" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Seconde" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Dit veld is verplicht" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Repareer a.u.b. dit veld" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "A.u.b. een geldig e-mailadres invoeren" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "A.u.b. een geldige URL ingeven" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "A.u.b. een geldige datum in geven" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "A.u.b. een valide datum (ISO) in geven" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Vul a.u.b. een geldig nummer in" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Vul a.u.b, een geldig creditcardnummer in" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Vul a.u.b. alleen cijfers in" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "A,u,b, dezelfde waarde nogmaals in geven" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Vul a.u,b, niet meer dan {0} tekens in" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Vul a.u,b, minstens {0} tekens in" -#: js/messages.php:915 +#: js/messages.php:917 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:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Vul a.u,b. een waarde tussen {0} en {1} in" -#: js/messages.php:925 +#: js/messages.php:927 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:930 +#: js/messages.php:932 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:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Vul a.u.b. een geldige datum of tijd in" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Vul a.u.b.een geldige waarde in HEX in" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Fout" @@ -2979,34 +2983,34 @@ msgstr "Onverwachte tekens op lijn %s." msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "Onverwacht teken op lijn %1$s. Tab verwacht, \"%2$s\" gevonden." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Het bestaande configuratiebestand (%s) is niet leesbaar." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Verkeerde rechten ingesteld op het configuratiebestand, dit mag niet " "leesbaar zijn voor iedereen!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Lettertypegrootte" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Samenvouwen" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Uitklappen" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Query opnieuw uitvoeren" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3026,76 +3030,59 @@ msgstr "Database" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "In totaal %d bladwijzer" -msgstr[1] "In totaal %d bladwijzers" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "privaat" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "gedeeld" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s en %3$s bladwijzers inbegrepen" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Geen bladwijzers" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Tijdens de huidige sessie" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Verklaar" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profiling" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Bladwijzer" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Query mislukt" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Query-uitvoertijd" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "SQL-queryconsole" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Console" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Leegmaken" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Geschiedenis" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3113,125 +3100,125 @@ msgstr "Geschiedenis" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Opties" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Bladwijzers" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Debug SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Druk Ctrl+Enter om de query uit te voeren" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Druk op Enter om de query uit te voeren" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "oplopend" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "aflopend" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Volgorde:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Aantal" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Uitvoerings volgorde" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Gebruikte tijd" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Volgorde:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Groep query's" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Niet gegroepeerde query's" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Toon bewerkingen" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Verberg bewerkingen" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Aantal:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Ververs" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Toevoegen" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Bladwijzer toevoegen" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Label" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Doeldatabase" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Deze bladwijzer delen" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Standaardwaarde instellen" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Queryberichten altijd volledig weergeven" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Query geschiedenis aan begin weergeven" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Toon huidige blader query" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3239,36 +3226,36 @@ msgstr "" "Voer queries uit met de Enter toets en voeg een nieuwe regel toe met Shift + " "Enter. Om dit permanent te maken, bekijk het instellingenmenu." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Wissel naar donker thema" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Lezen van het configuratiebestand is niet gelukt!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 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:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "De server reageert niet." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Controleer de rechten op de map met de database." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Details…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Verbinding voor de controlegebruiker zoals in de configuratie is opgegeven " @@ -3581,7 +3568,7 @@ msgstr "Bij benadering. Zie [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Uw SQL-query is succesvol uitgevoerd." @@ -3703,17 +3690,17 @@ msgstr "Upload afgebroken vanwege de extensie." msgid "Unknown error in file upload." msgstr "Onbekende fout bij het uploaden." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Fout bij het verplaatsen van het geüploade bestand, zie [doc@faq1-11]FAQ " "1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Fout bij het verplaatsen van het geüploade bestand." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Kan het geüploade bestand niet lezen." @@ -3777,8 +3764,8 @@ msgid "Keyname" msgstr "Sleutelnaam" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3828,13 +3815,13 @@ msgstr "Index %s is verwijderd." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Verwijderen" @@ -3936,7 +3923,7 @@ msgstr "Rechten" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Handelingen" @@ -3951,7 +3938,7 @@ msgstr "Traceren" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4330,11 +4317,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "Geen geldig afbeeldingenpad voor thema %s gevonden!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Geen preview beschikbaar." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "neem het" @@ -4663,21 +4650,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Ruimtelijk" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Maximale grootte: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Statische analyse:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "%d fouten werden gevonden tijdens de analyse." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4688,32 +4675,32 @@ msgstr "%d fouten werden gevonden tijdens de analyse." msgid "MySQL said: " msgstr "MySQL meldt: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Verklaar SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Uitleg SQL overslaan" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "Analyseer uitleg op %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "Zonder PHP-code" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "Query verzenden" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Genereer PHP-code" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Inline bewerken" @@ -4801,6 +4788,10 @@ msgstr "per uur" msgid "per day" msgstr "per dag" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "gedeeld" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Zoeken:" @@ -4909,11 +4900,11 @@ msgstr "Nieuwe kolom toevoegen" msgid "Attributes" msgstr "Attributen" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Lezen van het configuratiebestand is niet gelukt!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4922,31 +4913,31 @@ msgstr "" "foutmeldingen." # 'kon niet vanuit "%1$s" geladen worden' is juister. -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Standaard configuratiebestand kon niet geladen worden vanuit: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Ongeldige serverindex: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ongeldige hostnaam voor server %1$s. Controleer uw configuratie." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Ongeldige authenticatiemethode opgegeven in configuratie:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4958,24 +4949,24 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin gebruikt nu de standaard tijdzone van " "de database server." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "U moet upgraden naar %s %s of hoger." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Fout: token niet hetzelfde" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "poging om GLOBALS te overschrijven" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "mogelijk misbruik" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "numerieke toets gedetecteerd" @@ -5722,13 +5713,13 @@ msgstr "Kolomnamen in de eerste rij plaatsen" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Kolommen ingesloten door" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Kolommen omgezet met wisselteken" @@ -5746,12 +5737,12 @@ msgstr "Verwijder CRLF-tekens uit kolommen" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Kolommen beëindigd met" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Regels beëindigd door" @@ -6340,7 +6331,7 @@ msgid "Column names in first row" msgstr "Kolomnamen in eerste rij" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Lege rijen niet importeren" @@ -7917,7 +7908,7 @@ msgid "Table %s has been emptied." msgstr "Tabel %s is leeggemaakt." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "View %s werd verwijderd." @@ -8051,8 +8042,8 @@ msgid "No data to display" msgstr "Geen gegevens om weer te geven" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8090,52 +8081,52 @@ msgstr[1] "De namen '%s' zijn gereserveerde MySQL sleutelwoorden." msgid "No column selected." msgstr "Geen kolom geselecteerd." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "De geselecteerde kolommen zijn met succes verplaatst." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Fout in query" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Veranderen" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Index" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Ruimtelijk" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Volledige tekst" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Onderscheidbare waarden" @@ -8145,7 +8136,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "De extensie %s ontbreekt. Controleer uw PHP-configuratie." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Geen verandering" @@ -8949,56 +8940,56 @@ msgstr "MySQL gaf een lege resultatenset terug (0 rijen)." msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK is uitgevoerd]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Klik op de \"Structuur\"-link om de structuur aan te passen." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Ga naar database: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Instellingen voor %s wijzigen" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Ga naar tabel: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Structuur van %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Ga naar view: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9047,55 +9038,55 @@ msgstr "Of" msgid "web server upload directory:" msgstr "uploadmap op webserver:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Aanpassen/Invoegen" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Herstart invoegen met %s rijen" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "en dan" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Toevoegen als nieuwe rij" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Toevoegen als nieuwe rij en foutmeldingen negeren" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Toon insert-query" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Terug" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Een nieuwe rij toevoegen" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Ga terug naar deze pagina" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Volgende rij bewerken" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9107,11 +9098,11 @@ msgstr "" msgid "Value" msgstr "Waarde" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Toont SQL-query" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Toegevoegd rijnummer: %1$d" @@ -9991,7 +9982,7 @@ msgstr "Repareer tabel" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Gegevens of tabel verwijderen" @@ -10004,32 +9995,32 @@ msgid "Delete the table (DROP)" msgstr "De tabel verwijderen (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analyseren" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Controleren" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimaliseren" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Heropbouwen" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Repareren" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Afbreken" @@ -10055,35 +10046,35 @@ msgstr "Partitionering verwijderen" msgid "Check referential integrity:" msgstr "Controleer referentiële integriteit:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Kan de tabel niet naar dezelfde verplaatsen!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Kan de tabel niet naar dezelfde kopiëren!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s is verplaatst naar %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabel %s is gekopieerd naar %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "De tabelnaam is leeg!" @@ -10262,7 +10253,7 @@ msgstr "Dataexport-opties" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Gegevens worden geëxporteerd voor tabel" @@ -10286,21 +10277,21 @@ msgstr "Definitie" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tabelstructuur voor tabel" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Structuur voor de view" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Stand-in structuur voor view" @@ -10391,7 +10382,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Gegevens:" @@ -10493,7 +10484,7 @@ msgid "Data creation options" msgstr "Data-aanmaakopties" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Tabel leegmaken voor invoegen" @@ -10577,7 +10568,7 @@ msgstr "Het lijkt erop dat uw database programmaroutines gebruikt;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "alias uitvoer mogelijk niet betrouwbaar in alle gevallen." @@ -10619,52 +10610,52 @@ msgstr "in gebruik" msgid "It appears your database uses views;" msgstr "Het lijkt erop dat uw databaseviews gebruikt;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Beperkingen voor geëxporteerde tabellen" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Beperkingen voor tabel" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indexen voor geëxporteerde tabellen" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indexen voor tabel" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT voor geëxporteerde tabellen" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT voor een tabel" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYPES VOOR TABEL" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIES VOOR TABEL" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Het lijkt erop dat uw tabel triggers gebruikt;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "(Zie onder voor de actuele view)" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Fout bij het lezen van gegevens:" @@ -10696,7 +10687,7 @@ msgstr "" "ON DUPLICATE KEY UPDATE toe)" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10720,15 +10711,15 @@ msgstr "" msgid "Column names: " msgstr "Kolomnamen: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Ongeldige parameter voor CSV-import: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10737,18 +10728,18 @@ msgstr "" "Ongeldige kolom (%s) gespecificeerd! Zorg ervoor dat de kolomnamen juist " "gespeld zijn, gescheiden door komma's en niet voorzien van aanhalingstekens." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Ongeldig formaat van CSV-invoer op regel %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Verkeerd aantal kolommen in CSV-invoer op regel %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Deze plugin heeft geen ondersteuning voor gecomprimeerde imports!" @@ -10756,22 +10747,22 @@ msgstr "Deze plugin heeft geen ondersteuning voor gecomprimeerde imports!" msgid "MediaWiki Table" msgstr "MediaWiki-tabel" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Ongeldig formaat van mediawiki-invoer op regel:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "Percentages als decimalen importeren (12.00% naar ,12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Valuta importeren ($5.00 naar 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10779,7 +10770,7 @@ msgstr "" "Het XML-bestand was beschadigd of onvolledig. Repareer het bestand en " "probeer opnieuw." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Kon OpenDocument-rekenblad niet inlezen!" @@ -10787,14 +10778,14 @@ msgstr "Kon OpenDocument-rekenblad niet inlezen!" msgid "ESRI Shape File" msgstr "ESRI-vormbestand" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" "Er is een fout opgetreden bij het importeren van het ESRI-vormbestand: \"%s" "\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10802,12 +10793,12 @@ msgstr "" "U probeerde een ongeldig bestand te importeren, of het geïmporteerde bestand " "bevat ongeldige gegevens!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "De extensie MySQL Spatial ondersteunt ESRI-type \"%s\" niet." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Het geïmporteerde bestand bevat geen gegevens!" @@ -10819,7 +10810,7 @@ msgstr "SQL-compatibiliteitsmodus:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Gebruik geen AUTO_INCREMENT voor 0-waarden" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13860,15 +13851,11 @@ msgstr "%1$d waarden werden verwacht, maar %2$d gevonden." msgid "An opening bracket followed by a set of values was expected." msgstr "Een openingshaakje gevolgd door een set met waardes werd verwacht." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "Een openingshaakje werd verwacht." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "Een komma of een sluitingshaakje werd verwacht" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Een komma of een sluitingshaakje werd verwacht." @@ -13881,17 +13868,18 @@ msgstr "Een sluitingshaakje werd verwacht." msgid "Unrecognized data type." msgstr "Onbekend gegevenstype." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Een alias was eerder al gevonden." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Onverwachte punt." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Een alias werd verwacht." @@ -13909,19 +13897,19 @@ msgstr "Een offset werd verwacht." msgid "This option conflicts with \"%1$s\"." msgstr "Deze optie conflicteert met \"%1$s\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "De oude naam van de tabel werd verwacht." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Sleutelwoord \"TO\" werd verwacht." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "De nieuwe naam van de tabel werd verwacht." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Een hernoem bewerking werd verwacht." @@ -13947,15 +13935,15 @@ msgstr "Eindquote %1$s werd verwacht." msgid "Variable name was expected." msgstr "Naam van variabele werd verwacht." -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Onverwacht begin van opdracht." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Opdracht type niet herkent." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Er is geen transactie gestart." @@ -13978,15 +13966,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Sleutelwoord niet herkent." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "De naam van de entiteit werd verwacht." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Er werd minimaal één kolomdefinitie verwacht." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Een \"RETURNS\" sleutelwoord werd verwacht." @@ -14686,7 +14674,7 @@ msgstr "Een export (schema) van tabel bekijken" msgid "Invalid table name" msgstr "Ongeldige tabelnaam" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Rij: %1$s, Kolom: %2$s, Fout: %3$s" @@ -15613,7 +15601,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:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Partities %s" @@ -15646,7 +15634,7 @@ msgstr "Partitietabel" msgid "Edit partitioning" msgstr "Partitionering bewerken" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "View bewerken" @@ -15761,11 +15749,11 @@ msgstr "VIEW-naam" msgid "Column names" msgstr "Kolomnamen" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "View hernoemen naar" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "De VIEW verwijderen (DROP)" @@ -17062,6 +17050,20 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert is ingesteld op 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "In totaal %d bladwijzer" +#~ msgstr[1] "In totaal %d bladwijzers" + +#~ msgid "private" +#~ msgstr "privaat" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s en %3$s bladwijzers inbegrepen" + +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Een komma of een sluitingshaakje werd verwacht" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/pa.po b/po/pa.po index ab555f3959..83b7687cf6 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2014-01-06 12:13+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Punjabi " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "Database %1$s has been created." msgid "Template was deleted." msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1094,155 +1097,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1254,47 +1257,47 @@ msgstr "" msgid "None" msgstr "" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1302,136 +1305,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1439,7 +1442,7 @@ msgstr "" msgid "Status" msgstr "" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1449,82 +1452,82 @@ msgstr "" msgid "Time" msgstr "" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1533,63 +1536,63 @@ msgstr "" msgid "Import" msgstr "" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1601,60 +1604,60 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1664,55 +1667,55 @@ msgstr "" msgid "OK" msgstr "" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1728,44 +1731,44 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1775,7 +1778,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1786,164 +1789,164 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -1953,372 +1956,372 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "" -#: js/messages.php:631 -#, fuzzy -#| msgid "Show all" -msgid "Show panel" -msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" - -#: js/messages.php:632 -msgid "Hide panel" -msgstr "" - #: js/messages.php:633 #, fuzzy #| msgid "Show all" +msgid "Show panel" +msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" + +#: js/messages.php:634 +msgid "Hide panel" +msgstr "" + +#: js/messages.php:635 +#, fuzzy +#| msgid "Show all" msgid "Show hidden navigation tree items." msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2326,109 +2329,109 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Show all" msgid "Show arguments" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2437,351 +2440,351 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Show all" msgid "Copy tables to" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "ਜਨਵਰੀ" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "ਫ਼ਰਵਰੀ" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "ਮਾਰਚ" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "ਅਪ੍ਰੈਲ" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "ਮਈ" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "ਜੂਨ" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "ਜੁਲਾਈ" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "ਅਗਸਤ" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "ਸਤੰਬਰ" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "ਅਕਤੂਬਰ" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "ਨਵੰਬਰ" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "ਦਸੰਬਰ" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "ਜਨਵਰੀ" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "ਫ਼ਰਵਰੀ" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "ਮਾਰਚ" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "ਅਪ੍ਰੈਲ" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "ਮਈ" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "ਜੂਨ" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "ਜੁਲਾਈ" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "ਅਗਸਤ" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "ਸਤੰਬਰ" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "ਅਕਤੂਬਰ" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "ਨਵੰਬਰ" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "ਦਸੰਬਰ" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "ਐਤਵਾਰ" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "ਸੋਮਵਾਰ" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "ਮੰਗਲਵਾਰ" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "ਬੁਧਵਾਰ" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "ਵੀਰਵਾਰ" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "ਸ਼ੁੱਕਰਵਾਰ" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "ਸ਼ਨੀਵਾਰ" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "ਐਤ" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "ਸੋਮ" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "ਮੰਗਲ" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "ਬੁਧ" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "ਵੀਰ" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "ਸ਼ੁੱਕਰ" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "ਸ਼ਨੀ" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "ਐਤ" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "ਸੋਮ" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "ਮੰਗਲ" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "ਬੁਧ" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "ਵੀਰ" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "ਸ਼ੁੱਕਰ" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "ਸ਼ਨੀ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "" @@ -2831,32 +2834,32 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2876,76 +2879,59 @@ msgstr "" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "ਅਤੀਤ ਵੇਖੋ" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -2963,159 +2949,159 @@ msgstr "ਅਤੀਤ ਵੇਖੋ" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show all" msgid "Show trace" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3432,7 +3418,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3549,15 +3535,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3621,8 +3607,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3672,13 +3658,13 @@ msgstr "" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -3776,7 +3762,7 @@ msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "" @@ -3791,7 +3777,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4168,11 +4154,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -4435,21 +4421,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4460,32 +4446,32 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" @@ -4573,6 +4559,10 @@ msgstr "" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -4679,41 +4669,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4721,24 +4711,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5397,13 +5387,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5421,12 +5411,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -5985,7 +5975,7 @@ msgid "Column names in first row" msgstr "" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -7389,7 +7379,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "View %s has been dropped." @@ -7521,8 +7511,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7562,52 +7552,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7617,7 +7607,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8336,54 +8326,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8429,53 +8419,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8487,11 +8477,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9313,7 +9303,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9326,32 +9316,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9377,35 +9367,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9574,7 +9564,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9598,21 +9588,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9702,7 +9692,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9794,7 +9784,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9863,7 +9853,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9905,52 +9895,52 @@ msgstr "" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -9980,7 +9970,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -9998,33 +9988,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10032,28 +10022,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10061,23 +10051,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10089,7 +10079,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -12806,15 +12796,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "Database %1$s has been created." @@ -12829,17 +12815,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "Database %1$s has been created." msgid "An alias was expected." @@ -12859,19 +12846,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "Database %1$s has been created." msgid "A rename operation was expected." @@ -12899,15 +12886,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12928,17 +12915,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13596,7 +13583,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14503,7 +14490,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14538,7 +14525,7 @@ msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14655,11 +14642,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 2de14301c8..ce647cbaa2 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -48,7 +48,7 @@ msgid "Table comments:" msgstr "" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -102,7 +102,7 @@ msgstr "" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -164,16 +164,16 @@ msgid "Comments" msgstr "" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "" -#: db_datadict.php:165 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:376 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:141 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:446 @@ -197,17 +197,17 @@ msgstr "" msgid "No" msgstr "" -#: db_datadict.php:165 js/messages.php:519 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:521 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:143 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -261,7 +261,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -403,23 +403,23 @@ msgid "Point:" msgstr "" #: gis_data_editor.php:216 gis_data_editor.php:243 gis_data_editor.php:299 -#: gis_data_editor.php:372 js/messages.php:508 +#: gis_data_editor.php:372 js/messages.php:510 msgid "X" msgstr "" #: gis_data_editor.php:219 gis_data_editor.php:247 gis_data_editor.php:303 -#: gis_data_editor.php:378 js/messages.php:509 +#: gis_data_editor.php:378 js/messages.php:511 msgid "Y" msgstr "" #: gis_data_editor.php:241 gis_data_editor.php:297 gis_data_editor.php:370 -#: js/messages.php:511 +#: js/messages.php:513 #, possible-php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:254 gis_data_editor.php:310 gis_data_editor.php:388 -#: js/messages.php:517 +#: js/messages.php:519 msgid "Add a point" msgstr "" @@ -441,7 +441,7 @@ msgstr "" msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:518 +#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:520 msgid "Add an inner ring" msgstr "" @@ -458,12 +458,12 @@ msgstr "" msgid "Add geometry" msgstr "" -#: gis_data_editor.php:411 js/messages.php:349 libraries/DbSearch.php:463 +#: gis_data_editor.php:411 js/messages.php:351 libraries/DbSearch.php:463 #: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:139 #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -493,7 +493,7 @@ msgstr "" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "" @@ -511,7 +511,7 @@ msgstr "" msgid "Succeeded" msgstr "" -#: import.php:58 js/messages.php:592 +#: import.php:58 js/messages.php:594 msgid "Failed" msgstr "" @@ -519,69 +519,71 @@ msgstr "" msgid "Incomplete params" msgstr "" -#: import.php:184 +#: import.php:185 #, possible-php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " "%sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:360 import.php:665 +#: import.php:361 import.php:666 msgid "Showing bookmark" msgstr "" -#: import.php:376 import.php:661 +#: import.php:377 import.php:662 msgid "The bookmark has been deleted." msgstr "" -#: import.php:474 +#: import.php:475 #, possible-php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " "without access to the %s directory (for temporary files)." msgstr "" -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:491 import.php:568 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:502 import.php:517 import.php:542 import.php:557 +#: libraries/File.php:584 #, possible-php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:574 +#: import.php:575 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[doc@faq1-16]FAQ 1.16[/doc]." msgstr "" -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:627 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:669 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, possible-php-format msgid "Bookmark %s has been created." msgstr "" -#: import.php:677 +#: import.php:679 #, possible-php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "" +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "" +msgstr[1] "" -#: import.php:705 +#: import.php:710 #, possible-php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " "same file%s and import will resume." msgstr "" -#: import.php:715 +#: import.php:720 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -591,8 +593,8 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: import_status.php:116 js/messages.php:450 js/messages.php:602 +#: libraries/Util.php:795 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "" @@ -613,7 +615,7 @@ msgstr "" msgid "General settings" msgstr "" -#: index.php:191 js/messages.php:625 +#: index.php:191 js/messages.php:627 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:287 msgid "Change password" @@ -685,10 +687,11 @@ msgstr "" msgid "Version information:" msgstr "" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:442 libraries/Util.php:509 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "" @@ -789,112 +792,112 @@ msgid "" "issues." msgstr "" -#: js/messages.php:39 libraries/import.lib.php:207 sql.php:161 +#: js/messages.php:41 libraries/import.lib.php:207 sql.php:161 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" -#: js/messages.php:45 +#: js/messages.php:47 msgid "Confirm" msgstr "" -#: js/messages.php:46 +#: js/messages.php:48 #, possible-php-format msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:48 libraries/mult_submits.lib.php:440 +#: js/messages.php:50 libraries/mult_submits.lib.php:440 msgid "You are about to DESTROY a complete database!" msgstr "" -#: js/messages.php:50 +#: js/messages.php:52 msgid "You are about to DESTROY a complete table!" msgstr "" -#: js/messages.php:52 +#: js/messages.php:54 msgid "You are about to TRUNCATE a complete table!" msgstr "" -#: js/messages.php:53 +#: js/messages.php:55 msgid "Delete tracking data for this table?" msgstr "" -#: js/messages.php:55 +#: js/messages.php:57 msgid "Delete tracking data for these tables?" msgstr "" -#: js/messages.php:57 +#: js/messages.php:59 msgid "Delete tracking data for this version?" msgstr "" -#: js/messages.php:59 +#: js/messages.php:61 msgid "Delete tracking data for these versions?" msgstr "" -#: js/messages.php:60 +#: js/messages.php:62 msgid "Delete entry from tracking report?" msgstr "" -#: js/messages.php:61 +#: js/messages.php:63 msgid "Deleting tracking data" msgstr "" -#: js/messages.php:62 +#: js/messages.php:64 msgid "Dropping Primary Key/Index" msgstr "" -#: js/messages.php:63 +#: js/messages.php:65 msgid "Dropping Foreign key." msgstr "" -#: js/messages.php:65 -msgid "This operation could take a long time. Proceed anyway?" -msgstr "" - #: js/messages.php:67 -#, possible-php-format -msgid "Do you really want to delete user group \"%s\"?" +msgid "This operation could take a long time. Proceed anyway?" msgstr "" #: js/messages.php:69 #, possible-php-format -msgid "Do you really want to delete the search \"%s\"?" +msgid "Do you really want to delete user group \"%s\"?" msgstr "" #: js/messages.php:71 -msgid "You have unsaved changes; are you sure you want to leave this page?" +#, possible-php-format +msgid "Do you really want to delete the search \"%s\"?" msgstr "" #: js/messages.php:73 -msgid "Do you really want to revoke the selected user(s) ?" +msgid "You have unsaved changes; are you sure you want to leave this page?" msgstr "" #: js/messages.php:75 -msgid "Do you really want to delete this central column?" +msgid "Do you really want to revoke the selected user(s) ?" msgstr "" #: js/messages.php:77 -msgid "Do you really want to delete the selected items?" +msgid "Do you really want to delete this central column?" msgstr "" #: js/messages.php:79 +msgid "Do you really want to delete the selected items?" +msgstr "" + +#: js/messages.php:81 msgid "" "Do you really want to DROP the selected partition(s)? This will also DELETE " "the data related to the selected partition(s)!" msgstr "" -#: js/messages.php:83 +#: js/messages.php:85 msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "" -#: js/messages.php:85 +#: js/messages.php:87 msgid "Do you really want to remove partitioning?" msgstr "" -#: js/messages.php:86 +#: js/messages.php:88 msgid "Do you really want to RESET SLAVE?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:90 msgid "" "This operation will attempt to convert your data to the new collation. In " "rare cases, especially where a character doesn't exist in the new collation, " @@ -903,15 +906,15 @@ msgid "" "refer to the tips at " msgstr "" -#: js/messages.php:94 +#: js/messages.php:96 msgid "Garbled Data" msgstr "" -#: js/messages.php:96 +#: js/messages.php:98 msgid "Are you sure you wish to change the collation and convert the data?" msgstr "" -#: js/messages.php:98 +#: js/messages.php:100 msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -921,166 +924,166 @@ msgid "" "" msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, possible-php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "" -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1088,155 +1091,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "" -#: js/messages.php:209 +#: js/messages.php:211 #, possible-php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1248,47 +1251,47 @@ msgstr "" msgid "None" msgstr "" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, possible-php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1296,136 +1299,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, possible-php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, possible-php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, possible-php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, possible-php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, possible-php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, possible-php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1433,7 +1436,7 @@ msgstr "" msgid "Status" msgstr "" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1443,82 +1446,82 @@ msgstr "" msgid "Time" msgstr "" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1527,63 +1530,63 @@ msgstr "" msgid "Import" msgstr "" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1595,60 +1598,60 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "" -#: js/messages.php:362 +#: js/messages.php:364 #, possible-php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, possible-php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1658,55 +1661,55 @@ msgstr "" msgid "OK" msgstr "" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1722,44 +1725,44 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, possible-php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, possible-php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1769,7 +1772,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1780,164 +1783,164 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, possible-php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, possible-php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:437 +#: js/messages.php:439 #, possible-php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, possible-php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -1947,368 +1950,368 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:554 +#: js/messages.php:556 #, possible-php-format msgid "Add an option for column \"%s\"." msgstr "" -#: js/messages.php:555 +#: js/messages.php:557 #, possible-php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, possible-php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2316,105 +2319,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, possible-php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, possible-php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2423,349 +2426,349 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 msgid "Copy tables to" msgstr "" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "" @@ -2815,32 +2818,32 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, possible-php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2860,76 +2863,59 @@ msgstr "" #: libraries/Console.php:100 #, possible-php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, possible-php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -2947,157 +2933,157 @@ msgstr "" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3408,7 +3394,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3525,15 +3511,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3597,8 +3583,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3648,13 +3634,13 @@ msgstr "" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -3752,7 +3738,7 @@ msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "" @@ -3767,7 +3753,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4138,11 +4124,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -4405,21 +4391,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, possible-php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, possible-php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4430,32 +4416,32 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, possible-php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" @@ -4543,6 +4529,10 @@ msgstr "" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "" @@ -4647,41 +4637,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, possible-php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, possible-php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, possible-php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, possible-php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, possible-php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4689,24 +4679,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, possible-php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5363,13 +5353,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5387,12 +5377,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -5949,7 +5939,7 @@ msgid "Column names in first row" msgstr "" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -7331,7 +7321,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, possible-php-format msgid "View %s has been dropped." msgstr "" @@ -7461,8 +7451,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, possible-php-format msgid "Table %1$s has been altered successfully." @@ -7500,52 +7490,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, possible-php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7555,7 +7545,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8274,54 +8264,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, possible-php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, possible-php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, possible-php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, possible-php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, possible-php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8367,53 +8357,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, possible-php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8425,11 +8415,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, possible-php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9249,7 +9239,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9262,32 +9252,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9313,35 +9303,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, possible-php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, possible-php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, possible-php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, possible-php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9510,7 +9500,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9534,21 +9524,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9638,7 +9628,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9730,7 +9720,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9799,7 +9789,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9841,52 +9831,52 @@ msgstr "" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, possible-php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -9916,7 +9906,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -9934,33 +9924,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, possible-php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, possible-php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, possible-php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, possible-php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -9968,28 +9958,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, possible-php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -9997,23 +9987,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, possible-php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, possible-php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10025,7 +10015,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -12726,15 +12716,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "" @@ -12747,17 +12733,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "" @@ -12775,19 +12762,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "" @@ -12813,15 +12800,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12842,15 +12829,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13508,7 +13495,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, possible-php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14404,7 +14391,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14437,7 +14424,7 @@ msgstr "" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14552,11 +14539,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/pl.po b/po/pl.po index 987f182da4..721401ee46 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-12-31 14:50+0000\n" "Last-Translator: Sebastian Weremczuk \n" "Language-Team: Polish By przekonwertować dane, sugerujemy użycia funkcji " "edycji kolumn (link \"Zmień\") na stronie struktury tabeli." -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1008,162 +1013,162 @@ msgstr "" "Czy jesteś pewien, że chcesz zmienić sortowanie kolumn i przekonwertować " "dane?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Zapisz & zamknij" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Resetuj" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Zresetuj wszystkie" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "W formularzu brakuje wartości!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Wybierz co najmniej jedną opcję!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Proszę podać poprawny numer!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Wprowadź prawidłową długość!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Dodaj indeks" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Edytuj indeks" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Dodaj %s kolumny do indeksu" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Utwórz jedno-kolumnowy indeks" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Utwórz złożony indeks" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Columns enclosed with:" msgid "Composite with:" msgstr "Kolumny dołączyć:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Wybierz kolumny dla indeksu." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Musisz dodać co najmniej jedną kolumnę." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Podgląd SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Symuluj zapytanie" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Dopasowane wiersze:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "Zapytanie SQL:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Wartość Y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Nazwa hosta jest pusta!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Nazwa użytkownika jest pusta!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Hasło jest puste!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Hasła nie są identyczne!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Usuwanie wybranych użytkowników" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Zamknij" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Szablon został stworzony." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Szablon został załadowany." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Szablon został zaktualizowany." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Szablon został usunięty." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Inne" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Połączenia / Procesy" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Konfiguracja monitora lokalnego jest niezgodna!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1175,155 +1180,155 @@ msgstr "" "że bieżąca konfiguracja nie będzie już działać. Proszę zresetować " "konfigurację do domyślnej w menu Ustawienia." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Wydajność pamięci podręcznej zapytań" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Użycie pamięci podręcznej zapytań" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Użyta pamięć podręczna zapytań" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Systemowe wykorzystanie procesora" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Pamięć systemowa" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Systemowa przestrzeń wymiany" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Obciążenie przeciętne" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Pamięć ogółem" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Pamięć podręczna" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Pamięć buforowana" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Pamięć wolna" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Pamięć użyta" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Całkowita przestrzeń wymiany" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Podręczna przestrzeń wymiany" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Użyta przestrzeń wymiany" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Wolna przestrzeń wymiany" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Bajty przesłane" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Bajty otrzymane" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Połączenia" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Procesy" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabeli(l)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Pytania" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Ruch" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Ustawienia" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Dodaj wykres do siatki" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Dodaj co najmniej jedną zmienną do serii!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1335,47 +1340,47 @@ msgstr "Dodaj co najmniej jedną zmienną do serii!" msgid "None" msgstr "Żaden" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Wznów monitor" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Wstrzymaj monitor" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Rozpocznij automatyczne odświeżanie" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Zakończ automatyczne odświeżanie" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log i slow_query_log są włączone." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log jest włączony." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log jest włączony." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log i general_log są wyłączone." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output nie jest ustawiony do TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output jest ustawiony do TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1386,12 +1391,12 @@ msgstr "" "zapytania, które trwają dłużej niż %d sekund. Zaleca się ustawić " "long_query_time na 0-2 sekundy, w zależności od systemu." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time jest ustawiony na %d sekund(y)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1400,30 +1405,30 @@ msgstr "" "ustawień domyślnych po restarcie serwera:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Ustaw log_output do %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Włączone %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Wyłączone %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Ustaw long_query_time do %ds." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1431,57 +1436,57 @@ msgstr "" "Nie można zmienić tych zmiennych. Proszę zalogować się jako root lub " "skontaktować się z administratorem bazy danych." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Zmiana ustawień" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Ustawienia bieżące" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Tytuł wykresu" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Zróżnicowany" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Podzielony przez %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Jednostka" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Z dziennika powolnego" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Z dziennika ogólnego" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "Nazwa bazy danych dla tego zapytania nie występuje w logach serwera." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Analizowanie logów" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Analiza i wczytywanie dzienników. To może trochę potrwać." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Anuluj żądanie" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1491,7 +1496,7 @@ msgstr "" "Jednakże, jako kryterium grupowania, zostało użyte tylko same zapytanie SQL, " "a wiec inne atrybuty zapytań, takie jak czas startu, mogą się różnić." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1501,33 +1506,33 @@ msgstr "" "tej samej tabeli są także pogrupowane razem, niezależnie od wstawionych " "danych." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "Wczytano dane dziennika. Zapytania wykonane w tym odcinku czasu:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Przejdź do dziennika tabeli" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Nie znaleziono danych" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Dziennik przeanalizowany, lecz nie znaleziono żadnych danych w tym odcinku " "czasu." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analizowanie…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Wyjaśnij wynik przetworzenia danych" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1535,7 +1540,7 @@ msgstr "Wyjaśnij wynik przetworzenia danych" msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1545,58 +1550,58 @@ msgstr "Status" msgid "Time" msgstr "Czas" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Czas ogółem:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Wyniki profilowania" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabela" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Wykres" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Opcje filtru dziennika tabeli" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filtr" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filtr zapytań poprzez wyraz / wyrażenie regularne:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Grupa zapytań, ignorowanie zmiennych danych w WHERE" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Suma zgrupowanych wierszy:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Ogółem:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Ładowanie logów" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Odświeżanie monitora nie powiodło się" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1606,28 +1611,28 @@ msgstr "" "odpowiedź. To jest najbardziej prawdopodobne, ponieważ Twoja sesja wygasła. " "Odświeżenie strony i ponownego wprowadzania poświadczenia powinno pomóc." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Przeładuj stronę" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Dotyczy wierszy:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Nie powiodła się analiza pliku konfiguracyjnego. Nie wydaje się być " "poprawnym kodem JSON." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Nie udało zbudować siatki wykresu z importu konfiguracji. Przywracanie " "domyślnej konfiguracji…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1636,65 +1641,65 @@ msgstr "" msgid "Import" msgstr "Import" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Importuj konfigurację monitora" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Wybierz plik, który chcesz zaimportować." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Brak dostępnych plików na serwerze do importu!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Analizuj zapytanie" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Doradca systemu" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Możliwe problemy z wydajnością" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Problem" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Rekomendacja" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Szczegóły reguły" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Motywacja" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Użyj zmiennej/wzoru" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Testuj" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Formatowanie SQL…" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Złe parametry!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1706,60 +1711,60 @@ msgstr "Złe parametry!" msgid "Cancel" msgstr "Anuluj" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Ustawienia strony" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Zastosuj" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Wczytywanie…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Żądanie przerwane!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "Przetwarzanie żądania" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "Żądanie nieudane!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Błąd podczas przetwarzania żądania" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Kod błędu: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Błąd tekstu: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Żadna baza danych nie został wybrana." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Usuwanie kolumny" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Dodawanie klucza głównego" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1769,55 +1774,55 @@ msgstr "Dodawanie klucza głównego" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Kliknij, aby zamknąć to powiadomienie" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Zmienianie nazw baz danych" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Kopiowanie bazy danych" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Zmiana kodowania" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Włącz sprawdzanie kluczy obcych" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Błąd podczas pobierania realnej liczby wierszy." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Wyszukiwanie" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Ukryj wyniki wyszukiwania" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Pokaż wyniki wyszukiwania" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Przeglądanie" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Usuwanie" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definicja przechowywania funkcji musi zawierać deklarację RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1833,44 +1838,44 @@ msgstr "Definicja przechowywania funkcji musi zawierać deklarację RETURN!" msgid "Export" msgstr "Eksport" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "Edytor ENUM/SET" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Wartości dla kolumny %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Wartości dla nowej kolumny" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Wprowadź każdą wartość do osobnego pola." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Dodaj %d wartość(i)" -#: js/messages.php:403 +#: js/messages.php:405 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:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Ukryj okno zapytań" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Pokaż okno zapytań" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1880,7 +1885,7 @@ msgstr "Pokaż okno zapytań" msgid "Edit" msgstr "Edytuj" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1891,41 +1896,41 @@ msgstr "Edytuj" msgid "Delete" msgstr "Usuń" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 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:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Przeglądaj zewnętrzne wartości" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Brak automatycznie zapisanych zapytań" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Zmienna %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Wybierz" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Wybieranie kolumn" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Szukaj w tej liście" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1935,15 +1940,15 @@ msgstr "" "dla bazy danych %s zawiera kolumny, które nie są wyświetlane w aktywnej " "tabeli.." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Zobacz więcej" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Czy jesteś pewien?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1951,69 +1956,69 @@ msgstr "" "To działanie może zmienić część definicji kolumn.
Czy jesteś pewien, że " "chcesz kontynuować?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Kontynuuj" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Dodaj klucz główny" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Klucz podstawowy dodany." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Przenoszenie cię do następnego kroku…" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Pierwszy etap dostosowywania dla tableli '%s' został ukończony." -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Koniec kroku" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Drugi etap dostosowywania (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Zakończ" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Potwierdź częściowe zależności" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Wybrane częściowe zależności to:" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Żadne częściowe zależności nie zostały wybrane!" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2021,43 +2026,43 @@ msgstr "" "Poczekaj chwilę! To może zająć chwilę zależnie od rozmiaru bazy i ilości " "kolumn." -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Krok" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Następujące operacje zostaną wykonane:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "Usuń kolumny %s z tabeli %s" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table:" msgid "Create the following table" msgstr "Utwórz następującą tabelę" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Trzeci krok normalizacji" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Nie wybrano żadnych zależności!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2067,136 +2072,136 @@ msgstr "Nie wybrano żadnych zależności!" msgid "Save" msgstr "Zapisz" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Ukryj okno zapytania SQL" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Pokaż kryteria wyszukiwania" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "Wyszukanie z zakresem" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "Maximum kolumny:" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "Nazwy kolumn:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Minimalna wartość:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Maksymalna wartość:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Ukryj kryteria wyszukiwania i zamiany" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Pokaż kryteria wyszukiwania i zamiany" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Każdy punkt reprezentuje wiersz danych." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Najechanie nad punkt pokaże jego etykietę." -#: js/messages.php:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Wybierz dwie kolumny" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Wybierz dwie różne kolumny" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Treść punktu danych" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignoruj" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Kopiuj" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Punkt" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Linia ciągu" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Wielokąt" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Pierścień wewnętrzny" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Pierścień zewnętrzny:" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Czy chcesz skopiować klucz szyfrowania?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Klucz szyfrowania" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2204,24 +2209,24 @@ msgstr "" "Wygląda na to, że dokonałeś zmian na tej stronie; Zostaniesz zapytany o " "potwierdzenie zanim anulujesz zmiany" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Wybierz klucz odwołujący" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Wybierz klucz zewnętrzny" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Wybierz klucz podstawowy lub unikalny klucz!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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?" @@ -2229,76 +2234,76 @@ msgstr "" "Nie zapisano zmian w układzie. Zostaną utracone, jeśli ich nie zapiszesz. " "Czy chcesz kontynuować?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Nazwa strony" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Zapisz stronę" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Zapisz stronę jako" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Otwórz stronę" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Usuń stronę" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Bez nazwy" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Proszę wybrać stronę, aby kontynuować" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Proszę podać poprawną nazwę strony" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "Czy chcesz zapisać zmiany na obecnej stronie?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Usuwanie strony zakończylo się sukcesem" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Eksportuj schemat relacji" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Modyfikacja została zapisana" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Dodaj opcję kolumny \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d obiekt(y) utworzony." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Wyślij" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Naciśnij ESC, aby anulować edycję." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2306,41 +2311,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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Przeciągnij, aby uporządkować." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Kliknij, aby posegregować wyniki na podstawie tej kolumny" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Kliknij, by zaznaczyć/odznaczyć." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Kliknij dwukrotnie, aby skopiować nazwę kolumny." -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Kliknij rozwijane strzałki,
aby przełączyć widoczność kolumn." -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Pokaż wszystko" -#: js/messages.php:578 +#: js/messages.php:580 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 "" "pól wyboru, edycji, kopiowania i usuwania łącza może nie działać po " "zapisaniu." -#: js/messages.php:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Proszę wstaw poprawną liczbę heksadecymalną. Poprawne znaki to 0-9, A-F." -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2362,104 +2367,104 @@ msgstr "" "Czy napewno chcesz zobaczyć wszystkie wiersze? Przy dużej tabeli może to " "spowodować wysypanie się przeglądarki." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Oryginalna długość" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "anuluj" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Przerwane" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Sukces" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Importuj status" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Tutaj upuść pliki" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Najpierw wybierz bazę danych" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Drukuj" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Idź do linku:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Skopiuj nazwę kolumny." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Wygeneruj hasło" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Generuj" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Więcej" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Pokaż panel" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Ukryj panel" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Pokaż ukryte elementy drzewa nawigacji." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Połącz z głównym panelem" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Odłącz od głównego panelu" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2469,41 +2474,41 @@ msgstr "" "wersja to %s, wydana dnia %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", ostatnia stabilna wersja:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "aktualna" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Utwórz widok" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Wyślij raport o błędach" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Wyślij zgłoszenie błędu" -#: js/messages.php:656 +#: js/messages.php:658 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:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Zmiana ustawień raportów" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Pokaż szczegóły raportu" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2511,7 +2516,7 @@ msgstr "" "Twój eksport jest niekompletny, z powodu niskiej realizacji terminu na " "poziomie PHP!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2521,58 +2526,58 @@ msgstr "" "niektóre pola mogą zostać zignorowane, w związku z ustawieniami PHP's " "max_input_vars." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Parę błędów zostało wykrytych na serwerze!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Proszę, popatrz na dół tego okienka." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Ignoruj wszystko" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Wyczuwam nowe ustawienia, poczekaj chwilę, są one przetwarzane." -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Czy wykonać to zapytanie ponownie?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Czy na pewno chcesz usunąć tę zakładkę?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "Wystąpiły błędy podczas pobierania zdebugowanego kodu SQL." -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s kwerendy wykonane %s razy w %s sekund." -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "%s argumentów spełniło kryteria" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Pokaż argumenty" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Ukryj argumenty" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Zajeło to:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2581,355 +2586,355 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopiuj bazę danych do" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Dodaj prefiks tabeli:" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Zamień przedrostek tabeli" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopiuj tabelę z przedrostkiem" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Poprz." -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Nast." #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Dziś" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Styczeń" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Luty" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Marzec" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Kwiecień" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Maj" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Czerwiec" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Lipiec" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Sierpień" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Wrzesień" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Październik" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Listopad" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Grudzień" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Sty" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Kwi" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Cze" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Sie" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Wrz" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Paź" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Gru" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Niedziela" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Poniedziałek" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Wtorek" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Środa" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Czwartek" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Piątek" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Nie" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Wto" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Śro" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Czw" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Pią" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Nie" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Wto" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Śro" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Czw" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Pią" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Sob" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "kalendarz-miesiąc-rok" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "brak" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Godzina" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minuta" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Sekunda" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "To pole jest wymagane" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Popraw to pole" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Podaj poprawny adres email" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Wprowadź prawidłowy adres URL" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Wprowadź prawidłową datę" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Wprowadź poprawną datę (ISO)" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Wprowadź poprawną liczbę" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Wprowadź prawidłowy numer karty kredytowej" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Wprowadź tylko cyfry" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Wprowadź ponownie tę samą wartość" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Wprowadź nie więcej niż {0} znaków" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Wprowadź co najmniej {0} znaków" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Wprowadź wartość między {0} i {1}" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "Wprowadź wartość mniejszą niż lub równą {0}" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "Wprowadź wartość większą niż lub równą {0}" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Podaj prawidłową datę lub czas" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Wprowadź prawidłową wartość HEX" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Błąd" @@ -2983,32 +2988,32 @@ msgstr "" "Nieoczekiwany znak w linii %1$s. Spodziewano się taba, ale znaleziono \"%2$s" "\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Istniejący plik konfiguracyjny (%s) nie jest czytelny." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "Złe uprawnienia pliku konfiguracyjnego, nie powinien być zapisywalny!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Rozmiar czcionki" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Zwiń" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Rozszerz" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Wykonaj zapytanie ponownie" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3028,77 +3033,60 @@ msgstr "Baza danych" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "W sumie %d zakładka" -msgstr[1] "W sumie %d zakładki" -msgstr[2] "W sumie %d zakładek" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "prywatny" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "współdzielone" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s i %3$s zakładek dołączonych" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Brak zakładek" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Podczas bieżącej sesji" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Wyjaśnij" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profilowanie" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Dodaj do zakładek" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Zapytanie nie powiodło się" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Czas zapytania" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "Konsola zapytań SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Konsola" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Wyczyść" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Historia" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3116,143 +3104,143 @@ msgstr "Historia" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Opcje" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Zakładki" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Debug SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Wciśnij Ctrl+Enter aby wykonać zapytanie" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Wciśnij Enter, aby wykonać zapytanie" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "rosnąco" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "malejąco" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Kolejność:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "Liczba" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Kolejność wykonywania" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Zajeło czasu" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Sortuj według:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Grupuj kwerendy" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Rozgrupuj kwerendy" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Pokaż ścieżkę" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Ukryj ścieżkę" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Liczba:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Odśwież" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Dodaj" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Dodaj zakładkę" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Etykieta" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Docelowa baza danych" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Podziel się tą zakładką" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Ustaw wartość domyślną" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Zawsze rozwijaj wiadomości o zapytaniach" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Pokaż historie zapytań na starcie" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Przełącz na ciemny motyw" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Nie można odczytać pliku konfiguracyjnego!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3260,19 +3248,19 @@ msgstr "" "Serwer nie odpowiada (lub gniazdo lokalnego serwera nie jest prawidłowo " "skonfigurowane)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Serwer nie odpowiada." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Proszę sprawdzić uprawnienia katalogu zawierającej bazę danych." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Szczegóły…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Połączenie dla użytkownika kontrolnego zdefiniowanego w pliku " @@ -3589,7 +3577,7 @@ msgstr "Może być w przybliżeniu. Zobacz [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Zapytanie SQL zostało wykonane pomyślnie." @@ -3711,16 +3699,16 @@ msgstr "Przesłanie pliku zostało zatrzymane przez rozszerzenie." msgid "Unknown error in file upload." msgstr "Nieznany błąd w przesyłania pliku." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Błąd przenoszenia przesłanego pliku, patrz [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Błąd podczas przenoszenia plików na serwerze." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Nie można odczytać przesłanego pliku." @@ -3784,8 +3772,8 @@ msgid "Keyname" msgstr "Nazwa klucza" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3835,13 +3823,13 @@ msgstr "Klucz %s został usunięty." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Usuń" @@ -3941,7 +3929,7 @@ msgstr "Uprawnienia" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operacje" @@ -3956,7 +3944,7 @@ msgstr "Śledzenie" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4339,11 +4327,11 @@ msgid "No valid image path for theme %s found!" msgstr "" "Nie znaleziono prawidłowej ścieżki do obrazka dla motywu graficznego %s!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Podgląd niedostępny." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "weź to" @@ -4662,23 +4650,23 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Przestrzenny" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Maksymalny rozmiar: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Dane statyczne" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "%d błędów zostało znalezionych podczas analizy." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4689,36 +4677,36 @@ msgstr "%d błędów zostało znalezionych podczas analizy." msgid "MySQL said: " msgstr "MySQL zwrócił komunikat: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Wyjaśnij SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Pomiń wyjaśnienie SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Bez kodu PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Wyślij zapytanie" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Utwórz kod PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -4808,6 +4796,10 @@ msgstr "na godzinę" msgid "per day" msgstr "na dzień" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "współdzielone" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Szukaj:" @@ -4914,11 +4906,11 @@ msgstr "Dodaj nową kolumnę" msgid "Attributes" msgstr "Atrybuty" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Nie można odczytać pliku konfiguracyjnego!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4926,32 +4918,32 @@ msgstr "" "To zazwyczaj oznacza, że jest błąd składni w tym, sprawdź wszelkie błędy " "poniżej." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nie można załadować domyślnej konfiguracji z: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Niewłaściwy indeks serwera: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Niewłaściwa nazwa hosta serwera %1$s. Proszę przyjrzeć się konfiguracji." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Serwer %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "W konfiguracji ustawiono błędną metodę uwierzytelniania:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4962,24 +4954,24 @@ msgstr "" "pliki konfiguracyjne [em]$cfg['Servers'][%3$d]['SessionTimeZone'][/em]. " "phpMyAdmin obecnie używa domyślnej strefy czasowej serwera." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Należy uaktualnić do %s %s lub nowszej." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Błąd: Token niedopasowany" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Próba nadpisania GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "można wykorzystać" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "wykryty klawisz numeryczny" @@ -5764,13 +5756,13 @@ msgstr "Umieść nazwy kolumn w pierwszym wierszu" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Kolumn ujęte w" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Columns escaped with:" msgid "Columns escaped with" @@ -5790,12 +5782,12 @@ msgstr "Usuń znaki nowej lini z kolumn" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Kolumny zakończone" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Linie zakończone z" @@ -6400,7 +6392,7 @@ msgid "Column names in first row" msgstr "W pierwszym wierszu znajdują się nazwy kolumn" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Nie importuj pustych wierszy" @@ -8178,7 +8170,7 @@ msgid "Table %s has been emptied." msgstr "Tabela %s została opróżniona." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8316,8 +8308,8 @@ msgid "No data to display" msgstr "Brak danych do wyświetlenia" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8367,53 +8359,53 @@ msgstr[2] "Nazwa kolumny '%s' jest słowem kluczowym MySQL." msgid "No column selected." msgstr "Nie wybrano żadnej kolumny." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Kolumny przeniesiono pomyślnie." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Błąd zapytania" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Zmień" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Przestrzenny" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Pełny tekst" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Różne wartości" @@ -8423,7 +8415,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Brak rozszerzenia %s. Proszę sprawdzić konfigurację PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Bez zmian" @@ -9263,17 +9255,17 @@ msgstr "MySQL zwrócił pusty wynik (zero wierszy)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "Zobacz zawartość struktury klikając jej nazwę." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9281,42 +9273,42 @@ 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:1263 +#: libraries/import.lib.php:1264 #, 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:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Idź do bazy danych: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Edytuj ustawienia dla %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Przejdź do tabeli: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Przejdź do widoku: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9364,48 +9356,48 @@ msgstr "Lub" msgid "web server upload directory:" msgstr "katalog przesyłania serwera web:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Edycja/Wstaw" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Kontynuuj wstawianie %s wierszy" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "i potem" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Wstaw jako nowy wiersz" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Wstaw jko nowy wiersz i ignoruj błędy" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Pokaż wstawiane zapytanie" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Wróć" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Wstaw nowy wiersz" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Powrót do tej strony" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Edytuj następny wiersz" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9415,7 +9407,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9427,11 +9419,11 @@ msgstr "" msgid "Value" msgstr "Wartość" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Wyświetl zapytanie SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Id wstawionego wiersza: %1$d" @@ -10301,7 +10293,7 @@ msgstr "Napraw tabelę" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Usuń dane lub tabelę" @@ -10314,32 +10306,32 @@ msgid "Delete the table (DROP)" msgstr "Usuń tabelę (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analizuj" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Sprawdź" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optymalizuj" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Przebuduj" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Napraw" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10367,37 +10359,37 @@ msgstr "Usuń partycjonowanie" msgid "Check referential integrity:" msgstr "Sprawdź spójność powiązań:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Nie można przenieść tabeli do niej samej!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Nie można przekopiować tabeli do niej samej!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s została przeniesiona do %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s została przekopiowana do %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Nazwa tabeli jest pusta!" @@ -10576,7 +10568,7 @@ msgstr "Opcje eksportu danych" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Zrzut danych tabeli" @@ -10600,21 +10592,21 @@ msgstr "Określenie" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struktura tabeli dla tabeli" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktura widoku" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Zastąpiona struktura widoku" @@ -10706,7 +10698,7 @@ msgid "Database:" msgstr "Baza danych:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Dane:" @@ -10815,7 +10807,7 @@ msgid "Data creation options" msgstr "Opcje tworzenia danych" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Tabela Truncate przed wstawieniem" @@ -10902,7 +10894,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10948,57 +10940,57 @@ msgstr "w użyciu" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Ograniczenia dla zrzutów tabel" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Ograniczenia dla tabeli" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indeksy dla zrzutów tabel" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Wewnątrz tabel:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT dla tabeli" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "TYPY MIME TABELI" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELACJE TABELI" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Struktura widoku" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Błąd odczytu danych:" @@ -11030,7 +11022,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11053,15 +11045,15 @@ msgstr "" msgid "Column names: " msgstr "Nazwy kolumn: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Niewłaściwy parametr importu CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -11070,18 +11062,18 @@ msgstr "" "Nieprawidłowa kolumna (%s) określona! Upewnij się, że nazwy kolumn są " "napisane poprawnie, oddzielone przecinkami, a nie w cudzysłowie." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Niewłaściwy format w linii %d danych wejściowych CSV." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Niewłaściwa suma kolumn w CSV w linii %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Ten moduł nie obsługuje skompresowanych importów!" @@ -11089,23 +11081,23 @@ msgstr "Ten moduł nie obsługuje skompresowanych importów!" msgid "MediaWiki Table" msgstr "Tabela MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Nieprawidłowy format danych wejściowych mediawiki w wierszu:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" "Importuj procenty jako dane \"po przecinku\" np: 12.00% jako 0.12" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importuj waluty (np. $5.00 do 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -11113,7 +11105,7 @@ msgstr "" "Plik XML ma nieprawidłową strukturę lub jest niekompletny. Proszę skorygować " "problem i spróbować ponownie." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11123,12 +11115,12 @@ msgstr "Otwórz dokument arkusza kalkulacyjnego" msgid "ESRI Shape File" msgstr "Plik kształtu ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Wystąpił błąd podczas importowania pliku kształtów ESRI: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -11136,12 +11128,12 @@ msgstr "" "Próbujesz importować nieprawidłowy plik lub zaimportować plik zawierający " "nieprawidłowe dane!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Spatial Extension nie obsługuje typu ESRI \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Importowany plik nie zawiera żadnych danych!" @@ -11153,7 +11145,7 @@ msgstr "Tryb zgodności SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nie używaj AUTO_INCREMENT dla wartości zerowych" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14318,15 +14310,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14341,17 +14329,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14373,23 +14362,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Liczba otwartych tabel." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Liczba otwartych tabel." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14422,17 +14411,17 @@ msgstr "Zdarzenie %1$s zostało utworzone." msgid "Variable name was expected." msgstr "Nazwa szablonu tabeli" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Na początku tabeli" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14455,19 +14444,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15176,7 +15165,7 @@ msgstr "Pokaż zrzut (schemat) tabeli" msgid "Invalid table name" msgstr "Niewłaściwa nazwa tabeli" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16221,7 +16210,7 @@ msgid "at beginning of table" msgstr "Na początku tabeli" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16270,7 +16259,7 @@ msgstr "partycjonowanie" msgid "Edit partitioning" msgstr "Usuń partycjonowanie" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Edycja widoku" @@ -16397,11 +16386,11 @@ msgstr "Nazwa widoku" msgid "Column names" msgstr "Nazwy kolumn" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Zmień nazwę widoku na" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Usuń widok (DROP)" @@ -17735,6 +17724,18 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert jest ustawiony na 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "W sumie %d zakładka" +#~ msgstr[1] "W sumie %d zakładki" +#~ msgstr[2] "W sumie %d zakładek" + +#~ msgid "private" +#~ msgstr "prywatny" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s i %3$s zakładek dołączonych" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/pt.po b/po/pt.po index 9cb832755a..7c787af065 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-12-27 20:05+0000\n" "Last-Translator: João Machaqueiro \n" "Language-Team: Portuguese " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Salvar & Fechar" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Limpa" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Redefinir Tudo" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Nº de dados insuficiente!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Selecciona pelo menos uma das opções!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Introduza um número válido!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Introduza um comprimento válido!" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add Index" msgid "Add index" msgstr "Adicionar Índice" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Editar Índice" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Adiciona %s coluna(s) ao Índice" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Criar índice de coluna única" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Criar índice composto" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Composto com:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Seleciona a(s) coluna(s) para o índice." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Tem que adicionar pelo menos uma coluna." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Pré-visualização SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Simular pesquisa" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Linhas que correspondem:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "Comando SQL:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Valores para Y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "O nome da máquina está vazio!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "O nome do utilizador está vazio!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Indique a palavras-passe!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "As palavras-passe são diferentes!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Removendo os utilizadores seleccionados" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Fechar" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "Page has been created." msgid "Template was created." msgstr "A página foi criada." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "O prefil foi actualizado." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Registo eliminado." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Outros" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Ligações / Processos" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Configuração local do monitor incompatível!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1187,163 +1191,163 @@ msgstr "" "configuração actual deixe de funcionar. Por favor, reinicie as suas " "configurações no menu Configurações." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Eficiência da cache de comandos" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Utilização da cache de comandos" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Cache de comandos utilizada" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Uso da CPU do Sistema" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Memória do sistema" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Swap do sistema" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Carga média" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Memória total" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Memória na cache" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Memória retida" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Memória livre" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Memória utilizada" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Swap total" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Swap retida" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Swap utilizada" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Swap livre" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Bytes enviados" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Bytes recebidos" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Ligações" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Processos" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabela(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Perguntas" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Tráfego" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Configurações" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Adicionar gráfico a grelha" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Adicione pelo menos uma variável à serie!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1355,47 +1359,47 @@ msgstr "Adicione pelo menos uma variável à serie!" msgid "None" msgstr "Nenhum" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Resumir o monitor" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Pausar o monitor" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Iniciar atualização automática" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Parar atualização automática" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log e slow_query estão ativos." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log está ativo." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log está ativo." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log e general_log estão desativados." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output não está configurado para TABELA." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "\"log_output\" está definido para a TABELA." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1406,12 +1410,12 @@ msgstr "" "mais de %d segundos. É recomendado definir long_query_time para 0-2 " "segundos, dependendo do seu sistema." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time está configurado para %d segundo(s)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1420,30 +1424,30 @@ msgstr "" "o valor padrão após o reinicio do servidor:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Define log_output como %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Ativar %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Desactivar %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Definir \"long_query_time\" para %d segundos." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1451,60 +1455,60 @@ msgstr "" "Não pode modificar estas variáveis. Por favor faça login como root ou " "contacte o seu administrador de base de dados." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Modificar configurações" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Configurações atuais" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy msgid "Chart title" msgstr "Tipo de Exportação" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Diferencial" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Dividido por %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Unidade" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Do registo lento" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Do registo geral" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" "O nome da base de dados não é reconhecido por esta consulta nos registos do " "servidor." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "A analisar os registos" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "A analisar e a carregar registos. Isto pode demorar um um pouco." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Cancelar pedido" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1515,7 +1519,7 @@ msgstr "" "de agrupamento, por isso os outros atributos de consultas, tais como horário " "de início, podem ser diferentes." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1525,33 +1529,33 @@ msgstr "" "INSERT na mesma tabela também são agrupadas juntas, independentemente dos " "dados inseridos." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Dados do registo carregados. Comandos executados neste período de tempo:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Saltar para a tabela de registos" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Dados não encontrados" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Registo analisado, mas não foram encontrados dados neste período de tempo." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Em análise…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Explicar SQL" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1559,7 +1563,7 @@ msgstr "Explicar SQL" msgid "Status" msgstr "Estado" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1569,58 +1573,58 @@ msgstr "Estado" msgid "Time" msgstr "Tempo" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Tempo Total:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Resultado(s) da(s) consulta(s)" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabela" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Mapa de Resultados" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Opções de filtragem da tabela de registos" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filtrar" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filtrar comandos por palavra/regexp:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Agrupar comandos, ignorando dados variáveis em clausulas WHERE" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Soma de linhas agrupadas:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Total:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Carregando registos" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Falhou a atualização do monitor" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1630,28 +1634,28 @@ msgstr "" "Isto é provavelmente porque a sua sessão expirou. Atualizar a página e " "reinserir as suas credenciais deve ajudar." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Atualizar página" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Linhas afetadas:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Falha ao processar ficheiro de configuração. Não parece ser código JSON " "válido." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Falha ao construir grelha do gráfico com a configuração importada. " "Redefinindo os valores padrão…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1660,67 +1664,67 @@ msgstr "" msgid "Import" msgstr "Importar" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Importar configuração do monitor" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Seleccione o ficheiro que pretende importar." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Não existem ficheiros disponíveis para importar no servidor!" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "Analisar pedido" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Sistema de Assessoria" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Possíveis problemas de desempenho" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Problemas" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Recomendação" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Detalhes da regra" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Justificação" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Variável / formula utilizada" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Teste" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Formatando SQL…" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Parâmetros inválidos!" -#: js/messages.php:350 +#: js/messages.php:352 #: 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,68 +1736,68 @@ msgstr "Parâmetros inválidos!" msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Configurações da página" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Aplicar" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Carregando…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Pedido anulado!!" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Processando Pedido" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Request Aborted!!" msgid "Request failed!!" msgstr "Pedido falhou!!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Erro ao processar pedido" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Código de erro: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Texto do erro: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Nenhuma base de dados selecionada." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Apagando Coluna" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Adicionar chave primária" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1803,59 +1807,59 @@ msgstr "Adicionar chave primária" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Clique para fechar esta notificação" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Renomeando Bases de Dados" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Copiando Base de Dados" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Mudando Mapa de Caracteres" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Ativar verificação de chaves estrangeiras" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Falha na leitura do número real de linhas." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Pesquisando" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Esconder resultados da pesquisa" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Mostrar resultados da pesquisa" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Navegação" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "A Eliminar" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "A definição de uma função armazenada deve conter uma instrução RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1871,44 +1875,44 @@ msgstr "A definição de uma função armazenada deve conter uma instrução RET msgid "Export" msgstr "Exportar" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "Editor ENUM/SET" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Valores para a coluna \"%s\"" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Valores para a nova coluna" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Introduza cada valor num campo separado." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Add %d valor(es)" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Nota: Se o arquivo contém várias tabelas, estas serão combinadas numa." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Esconder Caixa do query" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Mostrar Caixa do query" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1918,7 +1922,7 @@ msgstr "Mostrar Caixa do query" msgid "Edit" msgstr "Edita" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1929,41 +1933,41 @@ msgstr "Edita" msgid "Delete" msgstr "Apagar" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d não é um número de linha válido." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Visualizar valores estrangeiros" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Variável %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Selecione" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Selector de colunas" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Pesquisar nesta lista" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1973,15 +1977,15 @@ msgstr "" "central para a base de dados %s contém colunas que não estão presentes na " "tabela corrente." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Ver mais" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Tem a certeza?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1989,51 +1993,51 @@ msgstr "" "Esta acção pode modificar as definições de algumas colunas\n" "
Tem a certeze que quer continuar?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Continuar" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Adicionar chave primária" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Chave primária adicionada." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Continuando para a próxima forma…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Fim da forma de normalização" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Segunda forma de normalização (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Concluído" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Confirme as dependências parciais" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Dependênciais parciais selecionadas:" -#: js/messages.php:444 +#: js/messages.php:446 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2041,19 +2045,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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Nenhuma dependência parcial selecionada!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Ocultar lista de dependências parciais" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2061,42 +2065,42 @@ 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:456 +#: js/messages.php:458 msgid "Step" msgstr "Passo" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "As seguintes ações serão executadas:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP colunas %s da tabela %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Criar a próxima tabela" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Terceira forma de normalização (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 #, fuzzy msgid "Confirm transitive dependencies" msgstr "Confirme as dependências transitivas" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Dependências selecionadas:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Nenhuma dependência selecionada!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2106,131 +2110,131 @@ msgstr "Nenhuma dependência selecionada!" msgid "Save" msgstr "Guarda" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Esconder critérios de buca" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Mostrar critérios de busca" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "Intervalo de pesquisa" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Máximo de colunas:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Mínimo de colunas:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Valor mínimo:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Valor máximo:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Esconder critérios de localizar e substituir" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Mostrar critérios de localizar e substituir" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Cada ponto representa um registo (linha) de dados." -#: js/messages.php:488 +#: js/messages.php:490 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:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Seleccione duas colunas" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Seleccione duas colunas diferentes" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Conteúdo do ponto de dados" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Copiar" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Ponto" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Segmento de Reta" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Polígono" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Anel Interior" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Anel exterior:" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Deseja copiar a chave de encriptação?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Chave de encriptação" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2238,24 +2242,24 @@ msgstr "" "Indica que foram feitas mudanças nesta página; Será pedida confirmação antes " "de abandonar as mudanças" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Seleccione chave de referencia" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Seleccione Foreign Key" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Seleccione a chave primária ou uma chave única!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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?" @@ -2263,76 +2267,76 @@ msgstr "" "Não salvou as mudanças no layout. Estas serão perdidas se não as guardar. " "Deseja continuar?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Nome da página" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Guardar página" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Abrir página" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Eliminar página" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sem título" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Selecione uma página para continuar" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Introduza um nome de página válido" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "Deseja guardar as alterações à página atual?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Página eliminada com sucesso" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Exporta o esquema relacional (schema)" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Modificações foram guardadas" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Adiciona uma opção para a coluna \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d objecto(s) criado(s)." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Submete" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Carregue em ESC para cancelar a edição." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2340,41 +2344,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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Arraste para re-ordenar." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Clica para ordenar resultados por esta coluna." -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Clique para seleccionar/rejeitar." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Duplo-clique para copiar o nome da coluna." -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Clique na seta
para alternar a visibilidade da coluna." -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Mostrar tudo" -#: js/messages.php:578 +#: js/messages.php:580 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2383,13 +2387,13 @@ msgstr "" "edição da tabela, checkbox, Editar, Copiar e Eliminar links podem não " "funcionar depois de guardar." -#: js/messages.php:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2397,110 +2401,110 @@ msgstr "" "Deseja realmente ver todas as linhas? Grandes tabelas poderão crashar o " "navegador." -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Segmento original" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "cancelar" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Abortado" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Sucesso" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Importar estado" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Largue ficheiros aqui" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Primeiro selecione a base de dados" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Imprimir" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Ir para link:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Copiar nome da coluna." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Gerar palavra-passe" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Gerar" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Mais" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Ver Painel" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Esconder Painel" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Mostrar items de navegação escondidos da árvore." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Conectar com o painel principal" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Desconectar do painel principal" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2510,48 +2514,48 @@ msgstr "" "actualização. A nova versão é %s, e foi lançada em %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", última versão estável:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "até à data" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Criar visualização" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Enviar relatório de erro" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Enviar relatório de erro" -#: js/messages.php:656 +#: js/messages.php:658 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:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Alterar as definições dos relatórios" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Ver os detalhes do relatório" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2559,7 +2563,7 @@ msgstr "" "Exportação incompleta devido a um limite de tempo de execução baixo a nível " "do PHP!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2569,62 +2573,62 @@ msgstr "" "alguns dos campos podem ser ignorados, devido à configuração do PHP " "max_input_vars." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Foram detectados alguns erros no servidor!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Por favor olhe para a parte inferior desta janela." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Ignorar tudo" -#: js/messages.php:688 +#: js/messages.php:690 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:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Executar consulta novamente?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Deseja realmente eliminar este marcador?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Comentários da tabela" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Esconder resultados da pesquisa" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2633,385 +2637,385 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Copiar a Base de Dados para" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "Substituir prefixo da tabela" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Substituir prefixo da tabela" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copiar tabela com prefixo" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Ant" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Próx" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Hoje" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Janeiro" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Fevereiro" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Março" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Abril" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Mai" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Junho" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Julho" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Agosto" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Setembro" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Outubro" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Novembro" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Dezembro" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Dez" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Segunda" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Terça" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Quarta" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Quinta" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Sexta" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Domingo" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Seg" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Ter" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Qua" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Qui" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Sex" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Sáb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 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:861 msgctxt "Year suffix" msgid "none" msgstr "Nenhum" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Hora" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minuto" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Segundo" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Usar campo de texto" -#: js/messages.php:886 +#: js/messages.php:888 #, 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:889 #, 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:890 #, 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:891 +#: js/messages.php:893 #, 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:893 +#: js/messages.php:895 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Introduza um número válido!" -#: js/messages.php:896 +#: js/messages.php:898 #, 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:898 +#: js/messages.php:900 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "Introduza um comprimento válido!" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter the same value again" msgstr "Introduza um nome de página válido" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, 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:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, 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:925 +#: js/messages.php:927 #, 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:930 +#: js/messages.php:932 #, 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:936 +#: js/messages.php:938 #, 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:941 +#: js/messages.php:943 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Introduza um número válido!" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Erro" @@ -3065,34 +3069,34 @@ msgstr "" "Carácter inesperado na linha %1$s. Era esperado uma tabulação, mas foi " "encontrado \"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "O arquivo de configuração existente (%s) não pode ser lido." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permissões erradas no ficheiro de configuração. Não deve ser editável por " "todos!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Tamanho da fonte" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Ocultar" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Mostrar" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Re-consultar" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3112,78 +3116,61 @@ msgstr "Base de Dados" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Total de %d marcador" -msgstr[1] "Total de %d marcadores" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "privado" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "compartilhado" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s and %3$s marcadores incluídos" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Sem marcadores" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Durante a sessão atual" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Explicar" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Perfil" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Marcadores" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Consulta falhou" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "Query execution time" msgid "Queried time" msgstr "Tempo da consulta" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "Consola de Consulta SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Consola" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Limpar" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Histórico" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3201,168 +3188,168 @@ msgstr "Histórico" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Opções" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Marcadores" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Depurar SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Use Ctrl+Enter para executar a consulta" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Press Ctrl+Enter to execute query" msgid "Press Enter to execute query" msgstr "Use Ctrl+Enter para executar a consulta" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Ascendente" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Descendente" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Other" msgid "Order:" msgstr "Outros" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Contagem" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute" msgid "Execution order" msgstr "Executar" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Other" msgid "Order by:" msgstr "Outros" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "Consultas SQL" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "Consultas SQL" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Mostrar côr" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide Panel" msgid "Hide trace" msgstr "Esconder Painel" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Count" msgid "Count:" msgstr "Contagem" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Actualizar" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Adicionar" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Adicionar marcador" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "Etiqueta" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Base de dados destino" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Partilhar marcador" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Definir como padrão" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Expandir sempre mensagens da consulta" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Mostrar histórico da consulta no início" -#: libraries/Console.php:385 +#: libraries/Console.php:367 #, fuzzy msgid "Show current browsing query" msgstr "Mostrar consulta a ser navegada" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Mudar para a tabela copiada" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Falhou ao ler o arquivo de configuração!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3370,19 +3357,19 @@ msgstr "" "O servidor não está a responder (ou o socket do servidor local está mal " "configurado)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "O servidor não está a responder." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 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:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Informações…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "A ligação como utilizador de controlo definida na sua configuração falhou." @@ -3700,7 +3687,7 @@ msgstr "Pode ser aproximado. Veja o [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "A sua consulta SQL foi executada com êxito." @@ -3825,15 +3812,15 @@ msgstr "Carregamento do ficheiro parado pela extensão." msgid "Unknown error in file upload." msgstr "Erro desconhecido no upload do ficheiro." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Erro ao mover o ficheiro carregado, veja [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Erro ao mover o arquivo enviado." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Ficheiro carregado não pode ser lido." @@ -3897,8 +3884,8 @@ msgid "Keyname" msgstr "Nome da chave" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3948,13 +3935,13 @@ msgstr "O Índice %s foi eliminado." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Elimina" @@ -4053,7 +4040,7 @@ msgstr "Privilégios" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operações" @@ -4068,7 +4055,7 @@ msgstr "Rastreando" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4446,11 +4433,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "Encontrado caminho inválido para imagens do tema %s!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Nenhuma pré-visualização disponível." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "seleccionar" @@ -4773,23 +4760,23 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Espacial" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Tamanho máximo: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Dados estáticos" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, fuzzy, php-format msgid "%d errors were found during analysis." msgstr "%d erros foram encontrados na análise." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4800,36 +4787,36 @@ msgstr "%d erros foram encontrados na análise." msgid "MySQL said: " msgstr "Mensagens do MySQL : " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Saltar Explicar SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Sem código PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Executar Consulta" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Criar código PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -4919,6 +4906,10 @@ msgstr "por hora" msgid "per day" msgstr "por dia" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "compartilhado" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Pesquisar:" @@ -5031,11 +5022,11 @@ msgstr "Adicionar nova coluna" msgid "Attributes" msgstr "Atributos" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Falhou ao ler o arquivo de configuração!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -5043,33 +5034,33 @@ msgstr "" "Isto geralmente significa que há um erro de sintaxe, por favor verifique " "qualquer erro mostrado abaixo." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Não foi possível carregar configuração padrão de: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Índice de servidor inválido: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome de servidor inválido para o servidor %1$s. Verifique as suas " "configurações." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Servidor %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Método de autenticação definido nas configurações inválido:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5077,24 +5068,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "deve actualizar para %s %s ou mais recente." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Erro: testemunho inválido ou trocado" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Tentativa de sobrescrever GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "possível 'exploit'" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "Tecla numérica detectada" @@ -5857,13 +5848,13 @@ msgstr "Colocar os nomes das colunas na primeira linha" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Colunas delimitadas com" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Colunas precedidas com" @@ -5881,12 +5872,12 @@ msgstr "Remover caracteres CRLF nas colunas" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Colunas terminadas com" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Linhas terminadas com" @@ -6490,7 +6481,7 @@ msgid "Column names in first row" msgstr "Nome das colunas na primeira linha" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Não importe linhas vazias" @@ -8145,7 +8136,7 @@ msgid "Table %s has been emptied." msgstr "A tabela %s foi limpa." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8288,8 +8279,8 @@ msgid "No data to display" msgstr "Dados não encontrados." #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." @@ -8335,56 +8326,56 @@ msgstr[1] "" msgid "No column selected." msgstr "Nenhuma coluna seleccionada." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Tipo de Query" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Muda" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Índice" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Texto Completo" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Session value" msgid "Distinct values" @@ -8398,7 +8389,7 @@ msgstr "" "PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Sem alterações" @@ -9201,55 +9192,55 @@ msgstr "MySQL não retornou nenhum registo." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Sem bases de dados" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Sem bases de dados" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Somente a estrutura" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9300,54 +9291,54 @@ msgstr "Ou" msgid "web server upload directory:" msgstr "Directoria no servidor web para fazer upload" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Inserir/Editar" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Insere como novo registo" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Voltar atrás" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Inserir novo registo" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 #, fuzzy msgid "Go back to this page" msgstr "Voltar atrás" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Editar próxima coluna" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9359,12 +9350,12 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 #, fuzzy msgid "Showing SQL query" msgstr "Mostrar queries completos" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10252,7 +10243,7 @@ msgstr "Reparar tabela" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10268,34 +10259,34 @@ msgid "Delete the table (DROP)" msgstr "Sem bases de dados" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 #, fuzzy msgid "Check" msgstr "Checo" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 #, fuzzy msgid "Repair" msgstr "Reparar tabela" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10324,37 +10315,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Verificar Integridade referencial:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Não é posivel mover a tabela para o mesmo!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Não é possivel copiar a tabela para o mesmo!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "A tabela %s foi movida para %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s copiada para %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "O nome da tabela está vazio!" @@ -10551,7 +10542,7 @@ msgstr "Opções de exportação da Base de Dados" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Extraindo dados da tabela" @@ -10578,14 +10569,14 @@ msgstr "Descrição" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Estrutura da tabela" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10593,7 +10584,7 @@ msgstr "Somente estrutura" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 #, fuzzy msgid "Stand-in structure for view" @@ -10706,7 +10697,7 @@ msgid "Database:" msgstr "Base de Dados" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10822,7 +10813,7 @@ msgid "Data creation options" msgstr "Opções de tranformação" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10894,7 +10885,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10940,60 +10931,60 @@ msgstr "em utilização" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 #, fuzzy msgid "Constraints for dumped tables" msgstr "Limitadores para a tabela" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Limitadores para a tabela" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy msgid "Indexes for dumped tables" msgstr "Limitadores para a tabela" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Dentro de Tabela(s):" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Adicionar valor AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Somente estrutura" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11030,7 +11021,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11050,33 +11041,33 @@ msgstr "" msgid "Column names: " msgstr "Nome dos Campos" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11084,28 +11075,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11115,23 +11106,23 @@ msgstr "Abrir Documento" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "This page does not contain any tables!" msgid "The imported file does not contain any data!" @@ -11145,7 +11136,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14133,15 +14124,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14156,17 +14143,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14188,21 +14176,21 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "Title of browser window when a table is selected." msgid "The old name of the table was expected." msgstr "Título da janela do navegador quando uma tabela estiver selecionada." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14234,17 +14222,17 @@ msgstr "A tabela %s foi eliminada" msgid "Variable name was expected." msgstr "Modelo de nome da tabela" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "No Início da Tabela" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14267,17 +14255,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15006,7 +14994,7 @@ msgstr "Ver o esquema da tabela" msgid "Invalid table name" msgstr "Nome de tabela inválido" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16101,7 +16089,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:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16144,7 +16132,7 @@ msgstr "Posição" msgid "Edit partitioning" msgstr "Vista de impressão" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16282,12 +16270,12 @@ msgstr "" msgid "Column names" msgstr "Nome dos Campos" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Renomeia a vista para " -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Sem bases de dados" @@ -17512,6 +17500,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert é definido como 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Total de %d marcador" +#~ msgstr[1] "Total de %d marcadores" + +#~ msgid "private" +#~ msgstr "privado" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s and %3$s marcadores incluídos" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/pt_BR.po b/po/pt_BR.po index 02b76cc32e..4adba250d7 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-02-10 17:03+0000\n" "Last-Translator: Rodrigo Moreira \n" -"Language-Team: Portuguese (Brazil) " -"\n" +"Language-Team: Portuguese (Brazil) \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,7 +47,7 @@ msgid "Table comments:" msgstr "Comentários de tabela:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -101,7 +101,7 @@ msgstr "Tipo" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -163,16 +163,16 @@ msgid "Comments" msgstr "Comentários" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Primária" -#: db_datadict.php:165 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:376 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:141 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:446 @@ -196,17 +196,17 @@ msgstr "Primária" msgid "No" msgstr "Não" -#: db_datadict.php:165 js/messages.php:519 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:521 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:143 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -260,7 +260,7 @@ msgstr "Tabelas" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -412,23 +412,23 @@ msgid "Point:" msgstr "Ponto:" #: gis_data_editor.php:216 gis_data_editor.php:243 gis_data_editor.php:299 -#: gis_data_editor.php:372 js/messages.php:508 +#: gis_data_editor.php:372 js/messages.php:510 msgid "X" msgstr "X" #: gis_data_editor.php:219 gis_data_editor.php:247 gis_data_editor.php:303 -#: gis_data_editor.php:378 js/messages.php:509 +#: gis_data_editor.php:378 js/messages.php:511 msgid "Y" msgstr "Y" #: gis_data_editor.php:241 gis_data_editor.php:297 gis_data_editor.php:370 -#: js/messages.php:511 +#: js/messages.php:513 #, php-format msgid "Point %d" msgstr "Ponto %d" #: gis_data_editor.php:254 gis_data_editor.php:310 gis_data_editor.php:388 -#: js/messages.php:517 +#: js/messages.php:519 msgid "Add a point" msgstr "Adicione um ponto" @@ -450,7 +450,7 @@ msgstr "Anel interno %d:" msgid "Add a linestring" msgstr "Adicionar uma cadeia de linha" -#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:518 +#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:520 msgid "Add an inner ring" msgstr "Adicionar um anel interno" @@ -467,12 +467,12 @@ msgstr "Adicionar polígono" msgid "Add geometry" msgstr "Adicionar geometria" -#: gis_data_editor.php:411 js/messages.php:349 libraries/DbSearch.php:463 +#: gis_data_editor.php:411 js/messages.php:351 libraries/DbSearch.php:463 #: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:139 #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -502,7 +502,7 @@ msgstr "Adicionar geometria" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Executar" @@ -522,7 +522,7 @@ msgstr "" msgid "Succeeded" msgstr "Sucesso" -#: import.php:58 js/messages.php:592 +#: import.php:58 js/messages.php:594 msgid "Failed" msgstr "Falha" @@ -530,7 +530,7 @@ msgstr "Falha" msgid "Incomplete params" msgstr "Parâmetros incompletos" -#: import.php:184 +#: import.php:185 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -539,15 +539,15 @@ msgstr "" "Você provavelmente tentou carregar um arquivo muito grande. Veja referências " "na %sdocumentação%s para resolver esse problema." -#: import.php:360 import.php:665 +#: import.php:361 import.php:666 msgid "Showing bookmark" msgstr "Exibindo marcadores" -#: import.php:376 import.php:661 +#: import.php:377 import.php:662 msgid "The bookmark has been deleted." msgstr "O marcador foi removido." -#: import.php:474 +#: import.php:475 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -557,12 +557,12 @@ msgstr "" "open_basedir habilitada sem acesso ao diretório %s (para arquivos " "temporários)." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:491 import.php:568 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "O arquivo não pôde ser lido!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:502 import.php:517 import.php:542 import.php:557 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -572,7 +572,7 @@ msgstr "" "suporte para ele não está implementado ou pode ter sido desabilitado por sua " "configuração." -#: import.php:574 +#: import.php:575 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -582,21 +582,24 @@ msgstr "" "enviado, ou o tamanho do arquivo excedeu o tamanho máximo permitido pela sua " "configuração do PHP. Verifique a [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:627 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "Não foi possível carregar os plugins, verifique sua instalação!" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:669 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "Marcador %s criado." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "Importação finalizada com sucesso, %d consultas executadas." +#: import.php:679 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "Importação finalizada com sucesso, %d consultas executadas." +msgstr[1] "Importação finalizada com sucesso, %d consultas executadas." -#: import.php:705 +#: import.php:710 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -605,7 +608,7 @@ msgstr "" "Script passou do tempo limite, se você deseja terminar a importação, " "%sreenvie o mesmo arquivo%s e a importação será resumida." -#: import.php:715 +#: import.php:720 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -618,8 +621,8 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Não foi possível carregar o progresso da importação." -#: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: import_status.php:116 js/messages.php:450 js/messages.php:602 +#: libraries/Util.php:795 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Voltar" @@ -643,7 +646,7 @@ msgstr "" msgid "General settings" msgstr "Configurações gerais" -#: index.php:191 js/messages.php:625 +#: index.php:191 js/messages.php:627 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:287 msgid "Change password" @@ -715,10 +718,11 @@ msgstr "Mostrar informações do PHP" msgid "Version information:" msgstr "Informações da versão:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:442 libraries/Util.php:509 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Documentação" @@ -851,96 +855,96 @@ msgstr "" "Servidor rodando com Suhosin. Favor utilizar a %sdocumentação%s para " "possíveis problemas." -#: js/messages.php:39 libraries/import.lib.php:207 sql.php:161 +#: js/messages.php:41 libraries/import.lib.php:207 sql.php:161 msgid "\"DROP DATABASE\" statements are disabled." msgstr "O comando \"DROP DATABASE\" está desabilitado." -#: js/messages.php:45 +#: js/messages.php:47 msgid "Confirm" msgstr "Confirmar" -#: js/messages.php:46 +#: js/messages.php:48 #, php-format msgid "Do you really want to execute \"%s\"?" msgstr "Você realmente deseja executar \"%s\"?" -#: js/messages.php:48 libraries/mult_submits.lib.php:440 +#: js/messages.php:50 libraries/mult_submits.lib.php:440 msgid "You are about to DESTROY a complete database!" msgstr "Você está prestes à DESTRUIR um banco de dados completamente!" -#: js/messages.php:50 +#: js/messages.php:52 msgid "You are about to DESTROY a complete table!" msgstr "Você está prestes à DESTRUIR uma tabela completamente!" -#: js/messages.php:52 +#: js/messages.php:54 msgid "You are about to TRUNCATE a complete table!" msgstr "Você está prestes à TRUNCAR uma tabela completamente!" -#: js/messages.php:53 +#: js/messages.php:55 msgid "Delete tracking data for this table?" msgstr "Deseja excluir os dados de monitoramento desta tabela?" -#: js/messages.php:55 +#: js/messages.php:57 msgid "Delete tracking data for these tables?" msgstr "Deseja excluir os dados de monitoramento destas tabelas?" -#: js/messages.php:57 +#: js/messages.php:59 msgid "Delete tracking data for this version?" msgstr "Deseja excluir os dados de monitoramento desta versão?" -#: js/messages.php:59 +#: js/messages.php:61 msgid "Delete tracking data for these versions?" msgstr "Excluir dados de monitoramento para estas versões?" -#: js/messages.php:60 +#: js/messages.php:62 msgid "Delete entry from tracking report?" msgstr "Excluir entrada do relatório de controle?" -#: js/messages.php:61 +#: js/messages.php:63 msgid "Deleting tracking data" msgstr "Excluindo os dados de monitoramento" -#: js/messages.php:62 +#: js/messages.php:64 msgid "Dropping Primary Key/Index" msgstr "Eliminando chave/índice primário" -#: js/messages.php:63 +#: js/messages.php:65 msgid "Dropping Foreign key." msgstr "Descartando chave estrangeira." -#: js/messages.php:65 +#: js/messages.php:67 msgid "This operation could take a long time. Proceed anyway?" msgstr "Esta operação pode ser demorada. Deseja prosseguir?" -#: js/messages.php:67 +#: js/messages.php:69 #, php-format msgid "Do you really want to delete user group \"%s\"?" msgstr "Você realmente deseja remover o grupo \"%s\"?" -#: js/messages.php:69 +#: js/messages.php:71 #, php-format msgid "Do you really want to delete the search \"%s\"?" msgstr "Você realmente deseja excluir a busca \"%s\"?" -#: js/messages.php:71 +#: js/messages.php:73 msgid "You have unsaved changes; are you sure you want to leave this page?" 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:73 +#: js/messages.php:75 msgid "Do you really want to revoke the selected user(s) ?" msgstr "Você realmente deseja revogar o(s) usuário(s) selecionado(s) ?" -#: js/messages.php:75 +#: js/messages.php:77 msgid "Do you really want to delete this central column?" msgstr "Deseja realmente excluir esta coluna central?" -#: js/messages.php:77 +#: js/messages.php:79 msgid "Do you really want to delete the selected items?" msgstr "Você realmente deseja excluir os itens selecionados?" -#: js/messages.php:79 +#: js/messages.php:81 msgid "" "Do you really want to DROP the selected partition(s)? This will also DELETE " "the data related to the selected partition(s)!" @@ -948,21 +952,21 @@ msgstr "" "Você realmente quer APAGAR a(s) partição(ões) seleciona(s)? Isso também irá " "DELETAR os dados relacionados com a(s) partição(ões) seleciona(s)!" -#: js/messages.php:83 +#: js/messages.php:85 msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "Você realmente deseja LIMPAR a(s) partição(ões) seleciona(s)?" -#: js/messages.php:85 +#: js/messages.php:87 msgid "Do you really want to remove partitioning?" msgstr "Você realmente deseja remover a(s) partição(ões) seleciona(s)?" -#: js/messages.php:86 +#: js/messages.php:88 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to RESET SLAVE?" msgstr "Você realmente deseja REINICIAR O SLAVE?" -#: js/messages.php:88 +#: js/messages.php:90 msgid "" "This operation will attempt to convert your data to the new collation. In " "rare cases, especially where a character doesn't exist in the new collation, " @@ -976,15 +980,15 @@ msgstr "" "collation; neste caso, sugerimos que você reverta à collation original e " "siga as dicas em " -#: js/messages.php:94 +#: js/messages.php:96 msgid "Garbled Data" msgstr "Dados Ilegíveis" -#: js/messages.php:96 +#: js/messages.php:98 msgid "Are you sure you wish to change the collation and convert the data?" msgstr "Tem certeza de que deseja mudar a collatin e converter os dados?" -#: js/messages.php:98 +#: js/messages.php:100 msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -1000,7 +1004,7 @@ msgstr "" "sugerido que se use a funcionalidade de edição de coluna(s) (o link \"Alterar" "\") na página de estrutura da tabela. " -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1008,166 +1012,166 @@ msgstr "" "Você tem certeza que quer mudar todos os agrupamento de colunas e converter " "os dados?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Salvar & fechar" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Resetar" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Redefinir tudo" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Está faltando valores no formulário!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Selecione pelo menos uma das opções!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Por favor, digite um número válido!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Por favor, digite um tamanho correto!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Adicionar índice" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Editar índice" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Adicionar %s coluna(s) ao índice" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Criar um índice de coluna única" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Criar índice composto" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Composto com:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Por favor. Selecione a(as) coluna(as)para o Índice." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Você deve adicionar pelo menos uma coluna." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Ver SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Simular query" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Linhas afetadas:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "Query SQL:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Valores Y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "O nome do servidor está vazio!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "O nome do usuário está em branco!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "A senha está em branco!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "As senhas não são iguais!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Removendo os usuários selecionados" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Fechar" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Template foi criado." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "O template foi carregado." -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Template foi atualizado." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Template foi excluído." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Outro" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Conexões / processos" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Configuração do monitor local incompatível!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1179,150 +1183,150 @@ msgstr "" "suas configurações atuais não funcionem mais. Por favor reconfigure suas " "configurações para os padrões no menu Configurações." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Eficiência do cache de consulta" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Uso do cache de consulta" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Cache de consulta utilizado" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Utilização da CPU pelo sistema" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Memória do sistema" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Área de Troca (swap) do sistema" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Carga média" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Memória total do sistema" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Cache de memória" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Memória em buffer" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Memória livre" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Memória usada" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Swap total" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Swap em cache" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Swap utilizado" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Swap livre" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Bytes enviados" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Bytes recebidos" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Conexões" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Processos" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabela(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Requisições" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Tráfego" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Configurações" @@ -1330,17 +1334,17 @@ msgstr "Configurações" # The word "chart" in brasilian portuguese can mean either "Table = tabela" or # "Report = relatório" or "Chart = gráfico" or "Diagram = diagrama". So, it # depends of the context. -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Adicionar gráfico à grade" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Por favor adicione no mínimo uma variável à série!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1352,47 +1356,47 @@ msgstr "Por favor adicione no mínimo uma variável à série!" msgid "None" msgstr "Nenhum" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Continuar o monitoramento" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Pausar o monitoramento" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Iniciar a Atualização Automática" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Parar a Atualização Automática" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "\"general_log\" e \"slow_query_log\" estão ativados." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "\"general_log\" está ativado." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "\"slow_query_log\" está ativado." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "\"slow_query_log\" e \"general_log\" estão desativados." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "\"log_output\" não está definido para a TABELA." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "\"log_output\" está definido para a TABELA." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1403,12 +1407,12 @@ msgstr "" "consultas que demoram mais do que %d segundos. Então, é aconselhado definir " "\"long_query_time\" de 0-2 segundos, dependendo do seu sistema." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "\"long_query_time\" está definida para %d segundo(s)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1417,30 +1421,30 @@ msgstr "" "padrão quando o servidor reiniciar:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Definir \"log_output\" para %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Habilitar %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Desabilitar %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Definir \"long_query_time\" para %d segundos." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1449,59 +1453,59 @@ msgstr "" "se como usuário \"root\" ou entre em contato com seu administrador do banco " "de dados." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Alterar configurações" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Configurações atuais" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Título do gráfico" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Diferencial" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Dividido por %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Unidade" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Do log lento" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Do relatório geral" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" "O nome do banco de dados não é conhecido para esta consulta nos logs do " "servidor." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Analisando relatórios" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Analisando e carregando logs. Isso pode demorar." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Cancelar solicitação" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1512,7 +1516,7 @@ msgstr "" "de agrupamento, por isso os outros atributos de consultas, tais como horário " "de início, podem ser diferentes." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1522,33 +1526,33 @@ msgstr "" "INSERT na mesma tabela também são agrupadas juntas, desconsiderando os dados " "inseridos." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Dados de log carregados. Quantidade de queries executadas neste período de " "tempo:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Ir para a tabela de log" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Nenhum dado encontrado" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "Log analisado, mas nenhum dado encontrado neste intervalo de tempo." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analisando…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Demonstrar saída" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1556,7 +1560,7 @@ msgstr "Demonstrar saída" msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1566,58 +1570,58 @@ msgstr "Status" msgid "Time" msgstr "Tempo" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Tempo total:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Representação dos resultados" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabela" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Grafico" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Opções de filtro da tabela de log" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filtro" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filtrar queries por palavra/expressão regular:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Agrupar queries, ignorando os valores das cláusulas WHERE" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Número de linhas agrupadas:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Total:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Carregando logs" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Atualização do monitor falhou" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1627,28 +1631,28 @@ msgstr "" "Provavelmente foi porque sua sessão expirou. Atualizar a página e reinserir " "as suas credenciais deve resolver." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Recarregar página" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Linhas afetadas:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Falha ao processar o arquivo de configuração. Ele não parece ser um código " "JSON válido." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Falha ao construir a grade do gráfico com a configuração importada. " "Resetando para a configuração padrão…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1657,66 +1661,65 @@ msgstr "" msgid "Import" msgstr "Importar" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Importar configuração do monitor" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Por favor, selecione o arquivo que deseja importar." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Sem arquivos disponíveis no servidor para importar!" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "Analisar query" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Sistema de assessoria" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Possíveis problemas de performance" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Questão" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Recomendações" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Detalhes da regra" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Justificação" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Variável / fórmula utilizada" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Teste" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Formatando SQL…" -#: js/messages.php:346 -#| msgid "Bad parameters!" +#: js/messages.php:348 msgid "No parameters found!" msgstr "Parâmetros incorretos!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1728,67 +1731,64 @@ msgstr "Parâmetros incorretos!" msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Configurações da página" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Aplicar" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Carregando…" -#: js/messages.php:358 -#| msgid "Request Aborted!!" +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Requisição abortada!!" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Processando a requisição" -#: js/messages.php:360 -#| msgid "Request Failed!!" +#: js/messages.php:362 msgid "Request failed!!" msgstr "Requisição falhou!!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Erro no processamento da requisição" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Código do erro: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Texto do erro: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Nenhum banco de dados selecionado." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Excluindo coluna" -#: js/messages.php:366 -#| msgid "Add primary key" +#: js/messages.php:368 msgid "Adding primary key" msgstr "Adicionando chave primária" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1798,59 +1798,56 @@ msgstr "Adicionando chave primária" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Clique para fechar este aviso" -#: js/messages.php:371 -#| msgid "Renaming Databases" +#: js/messages.php:373 msgid "Renaming databases" msgstr "Renomeando banco de dados" -#: js/messages.php:372 -#| msgid "Copying Database" +#: js/messages.php:374 msgid "Copying database" msgstr "Copiando o banco de dados" -#: js/messages.php:373 -#| msgid "Changing Charset" +#: js/messages.php:375 msgid "Changing charset" msgstr "Alterando o conjunto de caracteres" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Habilitar verificação de chaves estrangeiras" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Falha ao recuperar a contagem real de linhas." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Pesquisando" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Ocultar resultados da pesquisa" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Mostrar resultados da pesquisa" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Navegando" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Apagando" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "A definição de uma função armazenada deve conter uma instrução de RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1866,45 +1863,45 @@ msgstr "" msgid "Export" msgstr "Exportar" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "Editor ENUM/SET" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Valores para coluna %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Valores para uma nova coluna" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Insira cada valor em um campo separado." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Adicionar %d valor(es)" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Nota: Se o arquivo contém várias tabelas, elas serão combinadas em uma só." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Ocultar caixa de consulta" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Mostrar caixa de consulta" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1914,7 +1911,7 @@ msgstr "Mostrar caixa de consulta" msgid "Edit" msgstr "Editar" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1925,41 +1922,41 @@ msgstr "Editar" msgid "Delete" msgstr "Remover" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d não é um número de linha válido." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Visualizar valores estrangeiros" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Nenhuma consulta salva automaticamente" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Variável %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Escolher" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Seletor de Coluna" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Procurar nesta tabela" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1969,15 +1966,15 @@ msgstr "" "centrais do banco de dados %s tem colunas que não estão presentes na tabela " "atual." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Visualizar Mais" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Você tem certeza?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1985,51 +1982,51 @@ msgstr "" "Esta ação pode mudar alguns de definição colunas.
Tem certeza de que " "deseja continuar?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Continuar" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Adicionar chave primária" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Chave Primária adicionada." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Indo para a próxima etapa…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Fim da etapa" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Segunda etapa da normalização (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Concluído" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Confirme dependências parciais" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "As dependências parciais selecionadas são as seguintes:" -#: js/messages.php:444 +#: js/messages.php:446 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2037,20 +2034,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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Nenhuma dependência parcial selecionada!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Esconder a lista de dependências parciais" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2058,41 +2055,41 @@ 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:456 +#: js/messages.php:458 msgid "Step" msgstr "Etapa" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "As seguintes ações serão executadas:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "APAGAR colunas %s da tabela %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Criar a seguinte tabela" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Terceiro passo da normalização (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Confirmar dependências transitivas" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "As dependências selecionadas são as seguintes:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Nenhuma dependência selecionada!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2102,128 +2099,127 @@ msgstr "Nenhuma dependência selecionada!" msgid "Save" msgstr "Salvar" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Ocultar critério de pesquisa" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Exibir critério de pesquisa" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Intervalo de pesquisa" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Máximo de colunas:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Mínimo de colunas:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Valor mínimo:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Valor máximo:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Ocultar critério de substituição" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Exibir critério de substituição" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Cada ponto representa uma linha de dados." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Mover o mouse sobre um ponto mostrará seu rótulo." -#: js/messages.php:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Selecione duas colunas" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Selecione duas colunas diferentes" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Conteúdo do ponteiro de dados" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Copiar" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Ponto" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Linha" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Polígono" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Anel interno" -#: js/messages.php:516 -#| msgid "Outer ring:" +#: js/messages.php:518 msgid "Outer ring" msgstr "Anel externo" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Você deseja copiar a chave de encriptação?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Chave de encriptação" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2231,24 +2227,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:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Selecionar chave referenciada" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Selecionar chave estrangeira" -#: js/messages.php:533 +#: js/messages.php:535 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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,76 +2252,76 @@ 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "Nome da página" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Selecionar página" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Páginas livres" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Apagar página" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sem título" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Favor escolher uma página para editar" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Por favor, digite um número válido" -#: js/messages.php:548 +#: js/messages.php:550 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:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Página apagada com sucesso :)" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Exportar esquema relacional" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Modificações foram salvas" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Adicionar uma opção para a coluna \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d objeto(s) criado(s)." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Submit" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Pressione ESC para cancelar a edição." -#: js/messages.php:561 +#: js/messages.php:563 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2333,15 +2329,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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Arraste para reordenar." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Clique para ordenar os resultados por esta coluna." -#: js/messages.php:567 +#: js/messages.php:569 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 " @@ -2352,26 +2348,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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Clique para marcar/desmarcar." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Clique duas vezes para copiar o nome da coluna." -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Clique na seta
para alternar a visibilidade da coluna." -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Mostrar tudo" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2380,13 +2376,13 @@ msgstr "" "Editar, Marcar, Editar, Copiar e Apagar podem não funcionar mais depois de " "salvar." -#: js/messages.php:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2394,109 +2390,108 @@ msgstr "" "Você realmente quer ver todas as linhas? Para uma tabela grande isto poderia " "travar o nevegador." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Tamanho original" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "Cancelar" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Abortado" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Sucesso" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Importar estado" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Solte os arquivos aqui" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Primeiro escolha um banco de dados" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Imprimir" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Ir para o link:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Copiar nome da coluna." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Gerar senha" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Gerar" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Mais" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Mostrar painel" -#: js/messages.php:632 -#| msgid "Hide Panel" +#: js/messages.php:634 msgid "Hide panel" msgstr "Ocultar painel" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Mostrar itens ocultos da árvore de navegação." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Fazer ligação com painel principal" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Encerrar ligação com painel principal" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2506,29 +2501,27 @@ msgstr "" "atualização. A nova versão é %s, lançada em %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", última versão estável:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "atualizado(a)" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Criar view" -#: js/messages.php:653 -#| msgid "Send error reports" +#: js/messages.php:655 msgid "Send error report" msgstr "Enviar relatório de erros" -#: js/messages.php:654 -#| msgid "Submit Error Report" +#: js/messages.php:656 msgid "Submit error report" msgstr "Cadastrar relatório de erro" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2536,17 +2529,15 @@ msgstr "" "Ocorreu um erro fatal no JavaScript. Gostaria de enviar um relatório de " "erros?" -#: js/messages.php:658 -#| msgid "Change Report Settings" +#: js/messages.php:660 msgid "Change report settings" msgstr "Alterar configurações de relatórios" -#: js/messages.php:659 -#| msgid "Show Report Details" +#: js/messages.php:661 msgid "Show report details" msgstr "Exibir detalhes de relatório" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2554,7 +2545,7 @@ msgstr "" "A exportação está incompleta devido ao baixo limite de tempo de execução nas " "configurações do PHP!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2563,65 +2554,64 @@ 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Alguns erros foram detectados no servidor!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Por favor, olhe na parte inferior da janela." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Ignorar Tudo" -#: js/messages.php:688 +#: js/messages.php:690 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:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Executar esta consulta novamente?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Você realmente deseja excluir a busca \"%s\"?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" "Ocorreram alguns erros enquanto informações de debug do SQL eram gerados." -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "%s consultas executadas %s vezes em %s segundos" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "%s parâmetro(s) passado(s)" -#: js/messages.php:706 -#| msgid "Show table comments" +#: js/messages.php:708 msgid "Show arguments" msgstr "Mostrar comentários" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Ocultar resultados da pesquisa" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Tempo gasto:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2636,354 +2626,351 @@ msgstr "" "\"Dados Offline de Sites\" pode ajudar. No Safari, este problema é " "normalmente causado pelo \"Navegação Privada\"." -#: js/messages.php:711 -#| msgid "Copy database to" +#: js/messages.php:713 msgid "Copy tables to" msgstr "Copiar tabelas para" -#: js/messages.php:712 -#| msgid "Add table prefix:" +#: js/messages.php:714 msgid "Add table prefix" msgstr "Adicionar prefixo de tabela" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Substituir tabela com o prefixo" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copiar tabelas com prefixo" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Próximo" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Hoje" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Janeiro" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Fevereiro" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Março" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Abril" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Maio" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Junho" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Julho" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Agosto" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Setembro" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Outubro" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Novembro" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Dezembro" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Dez" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Segunda" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Terça" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Quarta" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Quinta" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Sexta" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Seg" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Ter" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Qua" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Qui" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Sex" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 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:861 msgctxt "Year suffix" msgid "none" msgstr "Sufixo de ano: nenhum" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Hora" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minuto" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Segundo" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Este campo é obrigatório" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Por favor, corrija este cambo" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Por favor, digite um correio eletrônico válido" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Por favor, digite um endereço eletrônico válido" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Por favor, digite uma data válida" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Por favor, digite uma data válida" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Por favor, digite um número válido" -#: js/messages.php:896 +#: js/messages.php:898 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:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Por favor, digite apenas números" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Por favor, digite o mesmo valor novamente" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Por favor, digite até {0} caractéres" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Por favor, digite pelo menos {0} caracteres" -#: js/messages.php:915 +#: js/messages.php:917 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:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Por favor, digite um valor entre {0} and {1}" -#: js/messages.php:925 +#: js/messages.php:927 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:930 +#: js/messages.php:932 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:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Por favor, digite um data válida ou um tempo" -#: js/messages.php:941 -#| msgid "Please enter a valid number!" +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Por favor, digite um número HEXADECIMAL válido" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Erro" @@ -3037,34 +3024,34 @@ msgstr "" "Caractere inesperado na linha %1$s. Esperado Tab, mas foi encontrado \"%2$s" "\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Arquivo de configuração existente (%s) não pode ser lido." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permissões incorretas no arquivo de configuração, não deveria permitir " "escrita por qualquer um!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Tamanho da fonte" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Expandir/Recolher" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Expandir" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Fazer novo consulta" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3084,76 +3071,59 @@ msgstr "Banco de dados" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Novo marcador" -msgstr[1] "Total de marcador%d" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "Privado" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "compartilhado" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s e %3$s favoritos incluídos" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Sem marcador(es)" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Durante a sessão atual" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Demonstrar SQL" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Perfil" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Marcadores" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Falha na consulta" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Tempo de execução da consulta" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "Caixa de consulta SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Console" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Limpar" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Histórico" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3171,138 +3141,131 @@ msgstr "Histórico" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Opções" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Favoritos" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Depurar SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Pressione Ctrl+Enter para executar consulta" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Pressione Enter para executar consulta" -#: libraries/Console.php:280 -#| msgid "Ascending" +#: libraries/Console.php:262 msgid "ascending" msgstr "ascendente" -#: libraries/Console.php:283 -#| msgid "Descending" +#: libraries/Console.php:265 msgid "descending" msgstr "descendente" -#: libraries/Console.php:286 -#| msgid "Order" +#: libraries/Console.php:268 msgid "Order:" msgstr "Ordem:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Contagem" -#: libraries/Console.php:295 -#| msgid "Execute every" +#: libraries/Console.php:277 msgid "Execution order" msgstr "Ordem de execução" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Tempo gasto" -#: libraries/Console.php:301 -#| msgid "Order" +#: libraries/Console.php:283 msgid "Order by:" msgstr "Ordenar por:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "Agrupar consultas" -#: libraries/Console.php:307 -#| msgid "SQL queries" +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Desagrupar consultas" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show create" msgid "Show trace" msgstr "Mostrar rastro" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide Panel" msgid "Hide trace" msgstr "Ocultar rastro" -#: libraries/Console.php:322 -#| msgid "Count" +#: libraries/Console.php:304 msgid "Count:" msgstr "Contagem:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Atualizar" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Adicionar" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Adicionar marcador" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Rótulo" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Banco de Dados destino" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Compartilhar marcador" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Definir padrão" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Sempre expandir mensagens de consulta" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Mostrar histórico de consulta ao iniciar" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Mostrar consulta de navegação atual" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3310,17 +3273,17 @@ msgstr "" "Execute consultas com Enter e insira nova linha com Shift + Enter. Para " "definir como permanente, vá em configurações." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Mudar para o tema escuro" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Falhou ao ler o arquivo de configuração!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3328,20 +3291,20 @@ msgstr "" "O servidor não está respondendo (ou o soquete do servidor local não está " "configurado corretamente)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "O servidor não está respondendo." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 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:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Detalhes…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 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, " @@ -3660,7 +3623,7 @@ msgstr "Pode ser aproximado. Veja a [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Seu comando SQL foi executado com sucesso." @@ -3785,15 +3748,15 @@ msgstr "Carregamento do arquivo parado pela extensão." msgid "Unknown error in file upload." msgstr "Erro desconhecido no carregamento do arquivo." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Erro ao mover o arquivo carregado, veja [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Erro ao mover o arquivo enviado." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -3859,8 +3822,8 @@ msgid "Keyname" msgstr "Nome da chave" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3910,13 +3873,13 @@ msgstr "Índice %s foi eliminado." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Eliminar" @@ -4019,7 +3982,7 @@ msgstr "Privilégios" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operações" @@ -4034,7 +3997,7 @@ msgstr "Monitoramento" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4417,11 +4380,11 @@ msgstr "Erro ao criar chave externa no %1$s (check data types)" msgid "No valid image path for theme %s found!" msgstr "Nenhum caminho de imagem válido encontrado para o tema %s!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Nenhuma pré-visualização disponível." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "tome" @@ -4747,23 +4710,23 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Espacial" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Tamanho máximo: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Dados estáticos" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4774,38 +4737,38 @@ msgstr "" msgid "MySQL said: " msgstr "Mensagem do MySQL: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Demonstrar SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Pular demonstração do SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Sem código PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Enviar query" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Criar código PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Editar índice" @@ -4894,6 +4857,10 @@ msgstr "por hora" msgid "per day" msgstr "por dia" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "compartilhado" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Procurar:" @@ -5002,11 +4969,11 @@ msgstr "Adicionar nova coluna" msgid "Attributes" msgstr "Atributos" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Falhou ao ler o arquivo de configuração!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -5014,32 +4981,32 @@ msgstr "" "Isso geralmente significa que há um erro de sintaxe, por favor cheque " "qualquer erro mostrado abaixo." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Não foi possível carregar a configuração padrão de: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Índice de servidor inválido: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome de servidor inválido para o servidor %1$s. Verifique suas configurações." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Servidor %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Método de autenticação inválido informado nas configurações:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5051,24 +5018,24 @@ msgstr "" "em]. O phpMyAdmin está atualmente usando o fuso horário padrão do servidor " "de banco de dados." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Você deveria atualizar para %s %s ou posterior." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Erro: Incompatibilidade de token" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Tentativa de sobrescrever variáveis GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "Possível exploit" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "tecla numérica detectada" @@ -5819,13 +5786,13 @@ msgstr "Colocar os nomes das colunas na primeira linha" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Colunas delimitadas por" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Campos divididos com" @@ -5843,12 +5810,12 @@ msgstr "Remover caracteres CRLF em colunas" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Colunas terminadas com" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Linhas terminadas com" @@ -6444,7 +6411,7 @@ msgid "Column names in first row" msgstr "Nome das colunas na primeira linha" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Não importar linhas vazias" @@ -8061,7 +8028,7 @@ msgid "Table %s has been emptied." msgstr "A tabela %s foi esvaziada." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "A view %s foi apagada." @@ -8196,8 +8163,8 @@ msgid "No data to display" msgstr "Sem dados para mostrar" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8235,53 +8202,53 @@ msgstr[1] "Os nomes '%s' são palavras-chaves reservadas do MySQL." msgid "No column selected." msgstr "Nenhuma coluna selecionada." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "As colunas foram movidas com sucesso." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Erro de consulta" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Alterar" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Índice" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Espacial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Texto completo" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Procurar valores distintos" @@ -8292,7 +8259,7 @@ msgstr "" "A extensão %s não está presente. Por favor, verifique a configuração do PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nenhuma alteração" @@ -9120,57 +9087,57 @@ msgstr "O MySQL retornou um conjunto vazio (ex. zero registros)." msgid "[ROLLBACK occurred.]" msgstr "[Ocorreu um ROLLBACK.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Editar a estrutura seguindo o link \"Estrutura\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Ir para o bando de dados: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Editar as configurações para %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Ir para a tabela: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Estrutura do %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Ir para a view: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9218,48 +9185,48 @@ msgstr "Ou" msgid "web server upload directory:" msgstr "diretório de upload do servidor web:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Inserir/Editar" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuar a inserção com %s linhas" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "e então" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Inserir como um novo registro" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Inserir como uma linha nova e ignorar erros" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Exibir consulta insert" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Ir para a página anterior" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Inserir um registro novo" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Voltar para esta página" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Editar o próximo registro" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9269,7 +9236,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9281,11 +9248,11 @@ msgstr "" msgid "Value" msgstr "Valor" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Exibindo consulta SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Id da linha inserida: %1$d" @@ -10179,7 +10146,7 @@ msgstr "Reparar tabela" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Remover dados ou tabela" @@ -10192,32 +10159,32 @@ msgid "Delete the table (DROP)" msgstr "Remover a tabela (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analizar" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Verificar" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Otimizar" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Reconstruir" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Reparar" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10245,37 +10212,37 @@ msgstr "Remover particionamento" msgid "Check referential integrity:" msgstr "Verificar integridade referencial:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Não pode mover a tabela para ela mesma!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Não pode copiar a tabela para ela mesma!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s movida para %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s copiada para %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "O nome da tabela está vazio!" @@ -10456,7 +10423,7 @@ msgstr "Opções de dump de dados" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Fazendo dump de dados para tabela" @@ -10480,21 +10447,21 @@ msgstr "Definição" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Estrutura para tabela" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Estrutura para view" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Estrutura stand-in para view" @@ -10584,7 +10551,7 @@ msgid "Database:" msgstr "Banco de dados:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Dados:" @@ -10694,7 +10661,7 @@ msgid "Data creation options" msgstr "Opções de criação de dados" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Tabela truncada antes do insert" @@ -10777,7 +10744,7 @@ msgstr "Parece que seu banco de dados utiliza funções;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "exportar alias pode não funcionar confiantemente em todos os casos." @@ -10823,52 +10790,52 @@ msgstr "em uso" msgid "It appears your database uses views;" msgstr "Parece que seu banco de dados utiliza visões;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Restrições para dumps de tabelas" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Restrições para tabelas" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Índices de tabelas apagadas" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Índices de tabela" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT de tabelas apagadas" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT de tabela" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "TIPOS MIME PARA TABELAS" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELACIONAMENTOS PARA TABELAS" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Isso demonstra que sua tabela utiliza gatilhos;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "Estrutura da view %s exportado como tabela" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Erro ao ler dados:" @@ -10900,7 +10867,7 @@ msgstr "" "(adicione ON UPDATE DUPLICATE KEY)" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10923,15 +10890,15 @@ msgstr "" msgid "Column names: " msgstr "Nome das colunas: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Parâmetro inválido para importação CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10941,18 +10908,18 @@ msgstr "" "estejam escritos corretamente, separados por vírgulas e que não estejam " "entre aspas." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Formato inválido de input CSV na linha %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Contador de colunas inválido no input CSV na linha %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Esse plugin não suporta importações comprimidas!" @@ -10960,23 +10927,23 @@ msgstr "Esse plugin não suporta importações comprimidas!" msgid "MediaWiki Table" msgstr "Tabela MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Formato inválido de input mediawiki na linha:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" "Importar percentuagens como decimais apropriados (ex: 12% para 0.12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importar moedas (ex: R$5,00 para 5,00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10984,7 +10951,7 @@ msgstr "" "O arquivo XML especificado foi mal feito ou está incompleto. Por favor, " "corrija o problema e tente novamente." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Não foi possível gerar a planilha do OpenDocument!" @@ -10992,12 +10959,12 @@ msgstr "Não foi possível gerar a planilha do OpenDocument!" msgid "ESRI Shape File" msgstr "Arquivo de formas ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Ocorreu um erro ao importar o arquivo do tipo ESRI: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -11005,12 +10972,12 @@ msgstr "" "Você tentou importar um arquivo inválido ou o arquivo importado contém dados " "inválidos!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "Extensão Espacial MySQL não suporta o tipo ESRI \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "O arquivo importado não contém nenhum dado!" @@ -11022,7 +10989,7 @@ msgstr "Modo de compatibilidade SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Não use AUTO_INCREMENT para valores zerados" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14125,15 +14092,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14148,17 +14111,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14180,23 +14144,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "O número de tabelas que estão abertas." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "O número de tabelas que estão abertas." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14229,17 +14193,17 @@ msgstr "O evento %1$s foi criado." msgid "Variable name was expected." msgstr "Modelo de nome da tabela" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "at beginning of table" msgid "Unexpected beginning of statement." msgstr "No início da tabela" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14262,19 +14226,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14982,7 +14946,7 @@ msgstr "Ver o dump (esquema) da tabela" msgid "Invalid table name" msgstr "Nome de tabela inválido" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Linha: %1$s, Coluna: %2$s, Erro: %3$s" @@ -15952,7 +15916,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:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16001,7 +15965,7 @@ msgstr "particionado" msgid "Edit partitioning" msgstr "Remover particionamento" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Tela de edição" @@ -16120,11 +16084,11 @@ msgstr "Nome da VIEW" msgid "Column names" msgstr "Nome das colunas" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Renomear view para" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Remover view (DROP)" @@ -17437,6 +17401,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert está com valor 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Novo marcador" +#~ msgstr[1] "Total de marcador%d" + +#~ msgid "private" +#~ msgstr "Privado" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s e %3$s favoritos incluídos" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/ro.po b/po/ro.po index 9e8abc10cb..123da83337 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:02+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Romanian " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save & Close" msgid "Save & close" msgstr "Salvează & Închide" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Resetare" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Reset All" msgid "Reset all" msgstr "Resetează tot" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Valoarea lipsește din formular!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Selectați cel puțin o opțiune!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Introduceţi un număr valid!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Vă rugăm să introduceţi o lungime validă!" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add Index" msgid "Add index" msgstr "Adaugă index" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Modifică index" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Adaugă %s coloane la index" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Creaţi un index cu o singură coloană" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Creare index compus" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Compus cu:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Selectați coloana(ele) pentru index." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Trebuie să adăugați cel puțin un câmp." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Previzualizare SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Simulează interogarea" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Rânduri afectate:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "Interogare SQL:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Valori Y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Câmpul nume gazdă nu a fost completat!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Câmpul nume de utilizator nu a fost completat!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Câmpul parolă nu a fost completat!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Parolele nu coincid!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Se elimină utilizatorii aleși" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Închide" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Numărul de pagini create." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profilul a fost actualizat." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Înregistrarea a fost ștearsă." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Altele" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Conexiuni / Procese" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Configurația monitorului local este incompatibilă!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1194,165 +1199,165 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Eficiența prestocării interogărilor" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Utilizare prestocării interogărilor" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Prestocare interogări utilizată" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Utilizare CPU sistem" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Memorie sistem" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Swap sistem" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Încărcare medie" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Memorie totală" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Memorie prestocată" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Memorie tampon" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Memorie disponibilă" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Memorie folosită" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Swap total" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Swap prestocat" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Swap utilizat" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Swap liber" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Octeți trimiși" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Octeți primiți" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Conexiuni" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Procese" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "O" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiO" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiO" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiO" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiO" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiO" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiO" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabel(e)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Întrebări" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Trafic" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Configurări" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Adaugă grafic la grilă" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Adăugați cel puțin o variabilă la serie!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1364,47 +1369,47 @@ msgstr "Adăugați cel puțin o variabilă la serie!" msgid "None" msgstr "Niciunul" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Reia monitorul" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Întrerupe monitorul" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Pornește împrospătarea automată" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Oprește împrospătarea automată" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log și slow_query_log sînt activate." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log e activat." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log e activat." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log și general_log sînt dezactivate." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output nu e stabilit la TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output e stabilit la TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1415,12 +1420,12 @@ msgstr "" "interogările ce durează mai mult de %d secunde. Este recomandat să stabiliți " "long_query_time la 0-2 secunde, în funcție de sistemul dumneavoastră." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time e stabilit la %d secunde." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1429,30 +1434,30 @@ msgstr "" "implicite după repornirea serverului:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Stabilește log_output la %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Activează %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Dezactivează %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Stabilește long_query_time la %d secunde." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1460,59 +1465,59 @@ msgstr "" "Nu puteți modifica aceste variabile. Autentificați-vă ca root sau contactați " "administratorul bazei de date." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Modificare configurări" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Configurări curente" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Titlul diagramei" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Diferențial" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Împărțit la %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Unitate" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Din log-ul cu înregistrări lente" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Din jurnalul general" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" "Numele bazei de date nu este cunoscut pentru această interogare în log-urile " "server-ului." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Se analizează jurnalele" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Se analizează și se încarcă jurnalele. Poate dura o vreme." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Anulează cererea" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1523,7 +1528,7 @@ msgstr "" "celelalte atribute ale interogărilor, cum ar fi timpul de pornire, pot fi " "diferite." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1533,33 +1538,33 @@ msgstr "" "INSERT în același tabel sunt și ele grupate împreună, indiferent de datele " "inserate." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Datele din jurnal au fost încărcate. Interogările executate în acest " "inverval de timp:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Mergi la jurnal" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Nu s-au găsit date" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "Jurnal analizat, dar nu au fost găsite date în acest interval de timp." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Se analizează…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Explică rezultatul" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1567,7 +1572,7 @@ msgstr "Explică rezultatul" msgid "Status" msgstr "Stare" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1577,60 +1582,60 @@ msgstr "Stare" msgid "Time" msgstr "Timp" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Timp total:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Se profilează rezultatele" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabel" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Diagramă" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 #, fuzzy #| msgid "Tables display options" msgid "Log table filter options" msgstr "Opțiuni de afișare a tabelelor" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filtru" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filtrează interogări dupa cuvânt / expresie regulată:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Grupează interogări, ignorând datele din variabilele din clauza WHERE" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Suma rândurilor grupate:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Total:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Se încarcă jurnalele" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Reîncărcarea monitorului a eșuat" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1640,28 +1645,28 @@ msgstr "" "răspuns invalid. Acest lucru este cel mai probabil din cauză că a expirat " "sesiunea. Reîncărcarea paginii şi reautentificarea ar trebui să ajute." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Reîncarcă pagina" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Rânduri afectate:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Parcurgere afișierului de configurare a eșuat. Codul JSON nu pare să fie " "valid." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Nu a reuşit construirea diagramei cu datele ce au fost importate. Revin la " "configuraţia iniţială…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1670,67 +1675,67 @@ msgstr "" msgid "Import" msgstr "Import" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Importă configuraţie pentru monitor" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Alegeți fișierul care doriți să fie importat." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Nu sunt fișiere disponibile pe server pentru import!" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "Analizează interogarea" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Consilier de sistem" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Posibile probleme de performanță" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Problemă" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Recomandare" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Detalii regulă" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Justificare" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Variabilă / formulă folosită" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Test" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Parametrii greșiți!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1742,74 +1747,74 @@ msgstr "Parametrii greșiți!" msgid "Cancel" msgstr "Renunță" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Modificare configurări" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Încărcare…" -#: js/messages.php:358 +#: js/messages.php:360 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "Cerere terminată!" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Se procesează cererea" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Request Aborted!!" msgid "Request failed!!" msgstr "Cerere terminată!" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Error in processing request" msgid "Error in processing request" msgstr "Eroare în procesarea cererii" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Cod eroare: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Text eroare: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Nu a fost aleasă nici o bază de date." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Se aruncă coloana" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Adaugă cheie primară" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1819,63 +1824,63 @@ msgstr "Adaugă cheie primară" msgid "OK" msgstr "Bine" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Apăsați pentru a înlătura această notificare" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Se redenumesc bazele de date" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Se copiază baza de date" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Se schimbă setul de caractere" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Dezactivare verificări de cheie străine" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Nu pot obţine numărul real de rânduri." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Se caută" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Ascunde rezultatele căutării" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Afișează rezultatele căutării" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Răsfoire" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Ștergere" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definiția unei funcții stocate trebuie să conțină o declarație RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1891,46 +1896,46 @@ msgstr "Definiția unei funcții stocate trebuie să conțină o declarație RET msgid "Export" msgstr "Exportă" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "Editor ENUM/SET" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Valori pentru coloana %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Valori pentru o coloană nouă" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Introduceți fiecare valoare într-un câmp separat." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Se adaugă %d valore(i)" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Notă: Dacă fișierul conține mai multe tabele, acestea vor fi combinate într-" "unul singur." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Ascunde caseta de interogare" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Arată caseta de interogare" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1940,7 +1945,7 @@ msgstr "Arată caseta de interogare" msgid "Edit" msgstr "Modifică" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1951,42 +1956,42 @@ msgstr "Modifică" msgid "Delete" msgstr "Șterge" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d nu este un număr valid de rânduri." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Caută printre valori necunoscute" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Variabil" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Alege" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Selectorul de coloană" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Caută în această listă" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1995,15 +2000,15 @@ msgstr "" "Nu sunt coloane în lista centrală. Asiguraţi-vă că lista de coloane centrale " "pentru baza de date %s are coloane care nu sunt prezente în tabelul curent." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Vezi mai mult" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Sunteți sigur?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -2011,51 +2016,51 @@ msgstr "" "Această acţiune poate modifica definiţia anumitor coloane.
Sunteţi sigur " "că doriţi să continuaţi?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Continuă" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Adaugă cheie primară" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Cheia primară a fost adăugată." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Continuați cu pasul următor…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Sfârşitul pasului" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Al doilea pas de normalizare (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Gata" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Confirmați dependenţele parţiale" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Dependenţe parţiale selectate sunt după cum urmează:" -#: js/messages.php:444 +#: js/messages.php:446 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2063,19 +2068,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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Nici o dependenţă parţială selectată!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Ascunde lista dependenţelor parţiale" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2083,42 +2088,42 @@ 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:456 +#: js/messages.php:458 msgid "Step" msgstr "Pas" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Vor fi efectuate următoarele acţiuni:" -#: js/messages.php:459 +#: js/messages.php:461 #, 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:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Creaţi tabelul următor" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Al treilea pas de normalizare (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Confirmați dependenţele tranzitive" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Dependenţe selectate sunt după cum urmează:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Nici o dependenţă selectată!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2128,152 +2133,152 @@ msgstr "Nici o dependenţă selectată!" msgid "Save" msgstr "Salvează" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Ascunde criteriile de căutare" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Afișează criteriile de căutare" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Intervalul de căutare" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Maximul coloanei:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Minimul coloanei:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Valorea minimă:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Valorea maximă:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Ascunde criteriile de căutare și înlocuire" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Afișează criteriile de căutare și înlocuire" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Fiecare punct reprezintă un rând de date." -#: js/messages.php:488 +#: js/messages.php:490 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:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Alege două coloane" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Alege două coloane diferite" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Mărime pointer date" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignoră" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Copiază" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Punct" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Linii terminate de" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometrie" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy msgid "Inner ring" msgstr "Inel interior" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Inelul exterior:" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Doriți să copiați cheia de criptare?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Cheie de criptare" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Alegere cheie referențiată" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Alegeți cheia străină" -#: js/messages.php:533 +#: js/messages.php:535 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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?" @@ -2281,80 +2286,80 @@ 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "Numele paginii" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Salvează pagina" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Pagina de deschidere" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Șterge pagina" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "*Untitled" msgid "Untitled" msgstr "*Fără titlu" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Selectează o pagină pentru a continua" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Introduceţi un nume valid pentru pagină" -#: js/messages.php:548 +#: js/messages.php:550 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:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Pagina a fost ștearsă cu succes" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Exportați schema relațională" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Modificările au fost salvate" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Adăugați o opțiune pentru coloana \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d obiect(e) creat(e)." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Trimite" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Apăsați escape pentru a anula editarea." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2362,15 +2367,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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Deplasați pentru a reordona." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Click pentru a sorta rezultatele după această coloană." -#: js/messages.php:567 +#: js/messages.php:569 #, fuzzy #| msgid "" #| "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC." @@ -2384,27 +2389,27 @@ msgstr "" "pentru a activa ASC/DESC.
-Control+Click pentru a îndepărta coloana " "din instrucțiunea ORDER BY" -#: js/messages.php:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Click pentru a selecta/deselecta." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Dublu click pentru a copia denumirea coloanei." -#: js/messages.php:574 +#: js/messages.php:576 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Arată tot" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2413,124 +2418,124 @@ msgstr "" "checkbox, sau link-urile de Editare, Copiere si Ștergere pot să nu " "funcționeze după salvare." -#: js/messages.php:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Textul original" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "anulează" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Întrerupt" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Succes" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Starea importului" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Dați drumul la fişiere aici" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Selectaţi mai întâi baza de date" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Listare" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Mergi la adresa link-ului:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Copie denumirea coloanei." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Generează parolă" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Generează" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Mai mult" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Arată panou" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Ascunde panou" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Afişează itemii ascunşi din arborele din cadrul din stânga." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Link-ul cu panoul principal" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Deconectarea de la panoul principal" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2540,56 +2545,56 @@ msgstr "" "procesul de actualizare. Noua versiune %s a fost publicată în data de %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", ultima versiune stabilă:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "la zi" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Creare view" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Portul serverului" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Trimite raport de eroare" -#: js/messages.php:656 +#: js/messages.php:658 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:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Modificați setările rapoartelor" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Afișează detaliile raportului" -#: js/messages.php:662 +#: js/messages.php:664 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:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2599,64 +2604,64 @@ msgstr "" "trimiterea datelor, unele câmpuri pot fi ignorate datorită configurației " "max_input_vars." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Anumite erori au fost detectate pe server!" -#: js/messages.php:674 +#: js/messages.php:676 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:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Ignoră tot" -#: js/messages.php:688 +#: js/messages.php:690 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:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Executați această interogare din nou?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Sigur doriți să ştergeţi acest marcaj?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "Comanda SQL" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Comentarii tabel" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Ascunde rezultatele căutării" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2665,385 +2670,385 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Copiază baza de date" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "Înlocuiește prefixul tabelei" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Înlocuiește prefixul tabelei" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copiază tabelul cu prefix" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Următoarea" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Astăzi" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Ianuarie" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Februarie" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Martie" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Aprilie" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Mai" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Iunie" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Iulie" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "August" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Septembrie" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Octombrie" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Noiembrie" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Decembrie" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Ian" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Iun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Iul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Noi" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Dec" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Duminică" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Luni" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Marți" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Miercuri" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Joi" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Vineri" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Sâmbătă" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Dum" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Joi" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Vin" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sâm" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Du" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Jo" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Vi" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Sâ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-lună-an" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "Nici unul(a)" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Oră" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minut" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Secundă" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Utilizare câmp text" -#: js/messages.php:886 +#: js/messages.php:888 #, 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:889 #, 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:890 #, 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:891 +#: js/messages.php:893 #, 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:893 +#: js/messages.php:895 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Introduceţi un număr valid!" -#: js/messages.php:896 +#: js/messages.php:898 #, 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:898 +#: js/messages.php:900 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "Vă rugăm să introduceţi o lungime validă!" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter the same value again" msgstr "Introduceţi un nume valid pentru pagină" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, 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:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, 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:925 +#: js/messages.php:927 #, 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:930 +#: js/messages.php:932 #, 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:936 +#: js/messages.php:938 #, 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:941 +#: js/messages.php:943 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Introduceţi un număr valid!" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Eroare" @@ -3096,34 +3101,34 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" "Caracter neașteptat pe linia %1$s. Aşteptam tab, dar am găsit \"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Fișierul de configurare existent (%s) nu poate fi citit." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permisiuni greșite asupra fișierului de configurare, acesta nu ar trebui să " "aibă permisiuni de scriere pentru oricine!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Dimensiune font" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Restrânge" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Extinde" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Reinterogare" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3143,77 +3148,60 @@ msgstr "Bază de date" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Total %d semn de carte" -msgstr[1] "Total %d semne de carte" -msgstr[2] "Total %d semne de carte" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "privat" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "comun" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "Semnele de carte %1$s, %2$s și %3$s au fost incluse" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Fără semne de carte" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "În timpul sesiunii curente" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Explică" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Creare profil" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Semn de carte" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Interogare a eşuat" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Durata de execuție a interogării" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "Consolă pentru interogare SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Consolă" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Goliți" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Istoric" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3231,161 +3219,161 @@ msgstr "Istoric" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Opțiuni" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Semne de carte" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Depanare SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Apăsaţi Ctrl+Enter pentru a executa interogarea" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Press Ctrl+Enter to execute query" msgid "Press Enter to execute query" msgstr "Apăsaţi Ctrl+Enter pentru a executa interogarea" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Crescătoare" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Descrescător" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Numără" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute every" msgid "Execution order" msgstr "Execută fiecare" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "Interogări SQL" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "Interogări SQL" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Arată culoarea" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide Panel" msgid "Hide trace" msgstr "Ascunde panou" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Count" msgid "Count:" msgstr "Numără" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Reîncarcă" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Adaugă" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Adaugă semn de carte" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Etichetă" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Baza de date țintă" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Partajaţi acest semn de carte" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Setaţi ca implicit" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Extinde întotdeauna mesajele de interogare" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Arată istoricul interogărilor la pornire" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Arată interogarea curentă de navigare" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Schimbă la tabela copiată" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Fișierul de configurare nu poate fi citit!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3393,21 +3381,21 @@ msgstr "" "Server-ul nu răspunde (sau soclul serverului MySQL local nu este configurat " "corect)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Serverul nu răspunde." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 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:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Detalii…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3727,7 +3715,7 @@ msgstr "Poate fi aproximativ. Vezi [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Comanda SQL a fost executată cu succes." @@ -3849,16 +3837,16 @@ msgstr "Încărcarea fișierului a fost împiedicată de extensie." msgid "Unknown error in file upload." msgstr "Eroare necunoscută la încărcarea fișierului." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Eroare la mutarea fișierului încărcat, vezi [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Eroare la mutarea fișierului încărcat." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -3924,8 +3912,8 @@ msgid "Keyname" msgstr "Nume cheie" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3975,13 +3963,13 @@ msgstr "Indexul %s a fost aruncat." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Aruncă" @@ -4081,7 +4069,7 @@ msgstr "Drepturi de acces" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operații" @@ -4096,7 +4084,7 @@ msgstr "Urmărire" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4483,11 +4471,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "Nu există o cale validă pentru tema %s!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Nici o previzualizare disponibilă." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "alege" @@ -4784,21 +4772,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Spaţial" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Mărime maximă: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4809,38 +4797,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL zice: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Explică SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Sari peste explicarea SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "fără cod PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Trimite comanda" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Creează cod PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -4930,6 +4918,10 @@ msgstr "pe oră" msgid "per day" msgstr "pe zi" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "comun" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Căutare:" @@ -5036,43 +5028,43 @@ msgstr "Adăugați o coloană nouă" msgid "Attributes" msgstr "Proprietăți" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Fișierul de configurare nu poate fi citit!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nu s-a putut încărca configurația implicită de la: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Index de server invalid: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Gazdă nevalidă pentru serverul %1$s. Vă rugăm să revizuiți configurația " "dumneavoastră." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Metodă de autentificare nevalidă stabilită în configurație:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5080,24 +5072,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format 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:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Eroare: Tokenii nu se potrivesc" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "S-a încercat suprascrierea valorilor globale" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "potenţială vulnerabilitate" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "cheie numerica detectată" @@ -5831,13 +5823,13 @@ msgstr "Pune numele coloanelor în primul rând" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Coloane încadrate cu" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -5857,12 +5849,12 @@ msgstr "Șterge caracterele terminatoare de linie CRLF din cadrul coloanelor" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Coloane terminate cu" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Linii terminate cu" @@ -6506,7 +6498,7 @@ msgid "Column names in first row" msgstr "Pune numele coloanelor în primul rând" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Nu importa rânduri goale" @@ -8418,7 +8410,7 @@ msgid "Table %s has been emptied." msgstr "Tabelul %s a fost golit." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8557,8 +8549,8 @@ msgid "No data to display" msgstr "Nu sînt date de afișat" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8607,57 +8599,57 @@ msgstr[2] "" msgid "No column selected." msgstr "Nicio coloană aleasă." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Tip interogare" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Schimbă" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Index" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Tot textul" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8669,7 +8661,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Extensia %s lipsește. Vă rugăm să vă verificați configurația PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nici o schimbare" @@ -9526,56 +9518,56 @@ msgstr "MySQL a dat un set de rezultate gol (zero linii)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Nu sînt baze de date" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Nu sînt baze de date" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Numai structura" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Modul de export" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9627,50 +9619,50 @@ msgstr "Sau" msgid "web server upload directory:" msgstr "director de încărcare al serverului Web" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Editare/Inserare" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, 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:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "și apoi" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Inserează ca o nouă linie" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 #, fuzzy msgid "Show insert query" msgstr "Afișare interogare SQL" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Revenire" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Adaugă o nouă înregistrare" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Înapoi la această pagină" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Editează rândul următor" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9680,7 +9672,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9692,11 +9684,11 @@ msgstr "" msgid "Value" msgstr "Valoare" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Afișare interogare SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "ID rând inserat: %1$d" @@ -10603,7 +10595,7 @@ msgstr "Reparare tabel" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy msgid "Delete data or table" msgstr "Șterge datele urmărite din acest tabel" @@ -10618,32 +10610,32 @@ msgid "Delete the table (DROP)" msgstr "Nu sînt baze de date" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analizează" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Verifică" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimizează" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Reconstruiește" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Repară" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10671,37 +10663,37 @@ msgstr "Elimină partiționarea" msgid "Check referential integrity:" msgstr "Verificarea integrității referinței:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Nu se poate muta tabelul în el însuși!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Nu se poate copia tabelul în el însuși!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabelul %s a fost mutat la %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabelul %s a fost copiat la %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Denumirea tabelului e goală!" @@ -10900,7 +10892,7 @@ msgstr "Opțiuni de afișare a bazelor de date" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Salvarea datelor din tabel" @@ -10924,21 +10916,21 @@ msgstr "Definiție" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Structura de tabel pentru tabelul" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Structură pentru vizualizare" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -11052,7 +11044,7 @@ msgid "Database:" msgstr "Bază de date" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11169,7 +11161,7 @@ msgid "Data creation options" msgstr "Opțiuni de transformare" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11238,7 +11230,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11284,61 +11276,61 @@ msgstr "în uz" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Restrictii pentru tabele sterse" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Restrictii pentru tabele" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Restrictii pentru tabele sterse" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "În interiorul tabelelor:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Adaugă valoare pentru AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "TIPURI MIME PENTRU TABEL" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELAȚII PENTRU TABEL" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11375,7 +11367,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11395,34 +11387,34 @@ msgstr "" msgid "Column names: " msgstr "Denumirile coloanelor" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Invalid field count in CSV input on line %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Modulul opțional nu suportă importuri comprimate!" @@ -11430,29 +11422,29 @@ msgstr "Modulul opțional nu suportă importuri comprimate!" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." msgstr "Invalid field count in CSV input on line %d." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11462,23 +11454,23 @@ msgstr "Foaie de calcul Open Document" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -11494,7 +11486,7 @@ msgstr "Regim de compatibilitate SQL" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14652,15 +14644,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14675,17 +14663,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14707,23 +14696,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Numărul de tabele ce sînt deschise." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Numărul de tabele ce sînt deschise." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14756,17 +14745,17 @@ msgstr "Evenimentul %1$s a fost creat." msgid "Variable name was expected." msgstr "Șablon nume tabel" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "La începutul tabelului" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14789,19 +14778,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15523,7 +15512,7 @@ msgstr "Vizualizarea schemei tabelului" msgid "Invalid table name" msgstr "Denumire de tabel nevalidă" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16614,7 +16603,7 @@ msgid "at beginning of table" msgstr "La începutul tabelului" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16663,7 +16652,7 @@ msgstr "partiționat" msgid "Edit partitioning" msgstr "Elimină partiționarea" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16795,12 +16784,12 @@ msgstr "Denumire VIZIUNE" msgid "Column names" msgstr "Denumirile coloanelor" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Redenumire tabel la" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Nu sînt baze de date" @@ -18052,6 +18041,18 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert este setat cu 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Total %d semn de carte" +#~ msgstr[1] "Total %d semne de carte" +#~ msgstr[2] "Total %d semne de carte" + +#~ msgid "private" +#~ msgstr "privat" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "Semnele de carte %1$s, %2$s și %3$s au fost incluse" + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/ru.po b/po/ru.po index 111e594034..442415c334 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-12-09 12:57+0000\n" "Last-Translator: Roman Imankulov \n" "Language-Team: Russian " -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" "Вы уверены, что хотите изменить сверки колонок и конвертировать данные?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Сохранить и Закрыть" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Сбросить" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Сбросить всё" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Пустые поля формы!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Выберите хотя бы одну опцию!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Пожалуйста, введите правильное числовое значение!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Пожалуйста, введите правильную длину!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Добавить индекс" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Редактировать индекс" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Добавить %s столбец(ы) к индексу" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Создать индекс по одному столбцу" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Создать составной индекс" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Составной с:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Пожалуйста, выберите столбец(ы) для индекса." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Необходимо добавить хотя бы одно поле." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Предпросмотр SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Имитировать запрос" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Затронуто строк:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL запрос:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Значения Y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Пустое имя хоста!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Пустое имя пользователя!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Пустой пароль!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Некорректное подтверждение пароля!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Удаление выбранных пользователей" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Закрыть" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Шаблон создан." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Шаблон загружен." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Шаблон обновлен." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Шаблон удален." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Другое" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Соединения / Процессы" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Настройки локального монитора несовместимы!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1155,155 +1160,155 @@ msgstr "" "работоспособности текущих настроек. Пожалуйста, сбросьте ваши настройки в " "меню Настройки." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Эффективность кэширования запросов" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Использование кэширования запросов" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Использован кэш запроса" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Загрузка процессора" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Системная память" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Система подкачки" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Средняя загрузка" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Общий объём памяти" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Кэшированная память" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Буферизованная память" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Свободная память" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Использованная память" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Всего области подкачки" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Кэшировано области подкачки" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Использовано области подкачки" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Свободно области подкачки" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Отослано байт" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Принято байт" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Соединения" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Процессы" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "Байт" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "КиБ" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "ГиБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "ПиБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "ЭБ" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d таблиц(а)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Вопросы" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Настройки" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Добавить график к сетке" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Пожалуйста, добавьте в серию хотя бы одну переменную!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1315,47 +1320,47 @@ msgstr "Пожалуйста, добавьте в серию хотя бы од msgid "None" msgstr "Ниодного" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Возобновить монитор" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Приостановить монитор" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Начать автообновление" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Остановить автообновление" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "Включены переменные general_log и slow_query_log." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "Включена переменная general_log." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "Включена переменная slow_query_log." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "Отключены переменные slow_query_log и general_log." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "Переменная log_output не установлена для таблицы." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "Переменная log_output установлена для таблицы." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1367,12 +1372,12 @@ msgstr "" "установить переменную long_query_time на 0-2 секунды, в зависимости от вашей " "системы." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "Переменная long_query_time установлена в %d секунд." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1381,30 +1386,30 @@ msgstr "" "состояние при перезагрузке сервера:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Установить log_output в %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Включить %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Отключить %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Установить long_query_time в %d секунд." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1412,57 +1417,57 @@ msgstr "" "Вы не можете изменить значения данных переменных. Пожалуйста, войдите под " "учетной записью root или свяжитесь с администратором базы данных." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Изменить настройки" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Текущие настройки" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Заголовок графика" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Различия" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Разделено на %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Единица" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Из журнала медленных запросов" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Из основного журнала" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "Имя базы данных неизвестно данному запросу в журнале сервера." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Анализ журналов" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Анализ и загрузка журналов. Ждите, может занять какое-то время." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Отменить запрос" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1473,7 +1478,7 @@ msgstr "" "SQL запрос, таким образом другие атрибуты запросов, как время запуска, могут " "отличаться." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1483,33 +1488,33 @@ msgstr "" "той же таблицы так же группируются вместе, в независимости от заносимых " "данных." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Данные журналов загружены. Запросы, выполненные в данный промежуток времени:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Перейти к таблице журнала" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Данные не найдены" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Анализ журнала пройден, но данные за выбранный промежуток времени не найдены." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Анализ…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Анализ результатов" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1517,7 +1522,7 @@ msgstr "Анализ результатов" msgid "Status" msgstr "Состояние" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1527,58 +1532,58 @@ msgstr "Состояние" msgid "Time" msgstr "Время" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Полное время:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Профилирование результатов" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Таблица" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "График" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Параметры фильтра таблицы журнала" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Фильтр" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Фильтровать запросы по строке либо регулярному выражению:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Группировать запросы, игнорируя данные переменных в условии WHERE" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Сумма сгруппированных строк:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Всего:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Загрузка журналов" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Обновление монитора завершилось ошибкой" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1588,26 +1593,26 @@ msgstr "" "может быть истекшая сессия. Перезагрузка страницы и последующий ввод данных " "учётной записи должны решить проблему." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Перезагрузить страницу" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Затронуто строк:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "Ошибка при разборе конфигурационного файла. Некорректный код JSON." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Ошибка построения сетки графика из импортированной конфигурации. Сброшено на " "изначальную конфигурацию…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1616,63 +1621,63 @@ msgstr "" msgid "Import" msgstr "Импорт" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Импорт настроек монитора" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Пожалуйста, выберите файл, который хотите импортировать." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "На сервере нет доступных для импорта файлов!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Анализировать запрос" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Системный советник" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Возможные проблемы производительности" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Проблема" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Рекомендация" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Подробности правила" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Обоснование" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Использованная переменная / формула" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Тест" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Форматирование SQL…" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "Параметры не найдены!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1684,60 +1689,60 @@ msgstr "Параметры не найдены!" msgid "Cancel" msgstr "Отменить" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Настройки, касающиеся страницы" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Применить" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Загрузка…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Запрос отменён!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "Обработка запроса" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "Запрос не выполнен!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Ошибка при обработке запроса" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Код ошибки: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Текст ошибки: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Ни одна база данных не выбрана." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Удаление столбца" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Добавление первичного ключа" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1747,55 +1752,55 @@ msgstr "Добавление первичного ключа" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Кликните для сокрытия данного уведомления" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Переименование баз данных" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Копирование базы данных" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Смена кодировки" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Включить проверку внешних ключей" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Не удалось получить реальное количество строк." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Поиск" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Скрыть результаты поиска" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Отобразить результаты поиска" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Просмотр" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Удаление" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Определение хранимой функции должно содержать выражение RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1811,45 +1816,45 @@ msgstr "Определение хранимой функции должно со msgid "Export" msgstr "Экспорт" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "Редактор ENUM/SET" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Значения для столбца %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Значения для новых столбцов" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Вставьте каждое значение в отдельное поле." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Добавить %d значение(й)" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Замечание: если файл содержит множество таблиц, они будут объединены в одну." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Скрыть поле запроса" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Отобразить поле запроса" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1859,7 +1864,7 @@ msgstr "Отобразить поле запроса" msgid "Edit" msgstr "Изменить" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1870,41 +1875,41 @@ msgstr "Изменить" msgid "Delete" msgstr "Удалить" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "Число %d не является правильным номером строки." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Обзор внешних значений" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Нет автосохраненных запросов" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Переменная %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Выбрать" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Селектор столбца" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Искать в списке" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1914,15 +1919,15 @@ msgstr "" "столбцов для базы данных %s имеет столбцы, которые не присутствуют в текущей " "таблице." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Больше информации" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Вы уверены?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1930,51 +1935,51 @@ msgstr "" "Это действие может изменить некоторые определения столбцов.
Вы уверены, " "что хотите продолжить?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Продолжить" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Добавить первичный ключ" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Добавлен первичный ключ." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Переход к следующему шагу…" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Первый этап нормализации таблицы '%s' завершён." -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Конец шага" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Второй этап нормализации (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Готово" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Подтвердите частичные зависимости" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Выбранные частичные зависимости показаны ниже:" -#: js/messages.php:444 +#: js/messages.php:446 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1982,20 +1987,20 @@ msgstr "" "Примечание: a, b -> d, f подразумевает, что значения столбцов a и b при " "объединении вместе могут определить значения столбца d и столбца f." -#: js/messages.php:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Не выбраны зависимости!" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Покажите мне возможные частичные зависимости на основе данных в таблице" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Скрыть список частичных зависимостей" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2003,41 +2008,41 @@ msgstr "" "Подождите, пожалуйста! Это может занять несколько секунд, в зависимости от " "объёма данных и количества столбцов таблицы." -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Шаг" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Выполнены следующие действия:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP столбцов %s в таблице %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Создать следующую таблицу" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Третий этап нормализации (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Подтвердите транзитивные зависимости" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Выбранные зависимости показаны ниже:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Не выбраны зависимости!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2047,124 +2052,124 @@ msgstr "Не выбраны зависимости!" msgid "Save" msgstr "Сохранить" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Скрыть параметры поиска" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Отобразить параметры поиска" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Поиск в диапазоне" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Максимум в столбце:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Минимум в столбце:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Минимальное значение:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Максимальное значение:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Скрыть параметры поиска и замены" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Отобразить параметры поиска и замены" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Каждая точка представляет строку данных." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Задержание курсора над точкой отобразит ее название." -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Для увеличения, выберите часть диаграммы мышкой." -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" "Кликните ссылку сброса увеличения для возвращения к исходному состоянию." -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "Кликните точку данных для просмотра или редактирования строки данных." -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Можно изменить размер участка перетащив его вдоль нижнего правого угла." -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Выберите два столбца" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Выберите два различных столбца" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Содержание точки данных" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Игнорировать" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Копировать" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Точка" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Линия" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Многоугольник" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Геометрия" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "Внутренний контур" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Внешний контур" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Вы хотите скопировать ключ шифрования?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Ключ шифрования" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2172,24 +2177,24 @@ msgstr "" "Показывает, что были произведены изменения на странице. Для отмены изменений " "потребуется подтверждение" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Выберите ссылочный ключ" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Выберите внешний ключ" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Выберите поле основного индекса (PRIMARY) или уникального индекса!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Выбор отображаемого столбца" -#: js/messages.php:536 +#: js/messages.php:538 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,76 +2202,76 @@ msgstr "" "Вы не сохранили изменения в раскладке. Без сохранения, они будут потеряны. " "Продолжить?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Название страницы" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Сохранить страницу" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Сохранить страницу как" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Открыть страницу" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Удалить страницу" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Без названия" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Выберите следующую страницу" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Введите правильное имя страницы" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "Вы хотите записать изменения на текущую страницу?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Страница успешно удалена" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Экспорт схемы связей" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Изменения сохранены" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Добавить параметр для столбца \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "создано %d объект(ов)." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Выполнить" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Для отмены редактирования нажмите Esc." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2274,15 +2279,15 @@ msgstr "" "Вы отредактировали некоторые данные, но изменения не были сохранены. Вы " "уверены, что хотите покинуть данную страницу без сохранения данных?" -#: js/messages.php:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Перетяните для изменения порядка сортировки." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Кликните для сортировки результатов по данному столбцу." -#: js/messages.php:567 +#: js/messages.php:569 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 " @@ -2292,26 +2297,26 @@ msgstr "" "переключения ASC/DESC.
- Удерживая Ctrl или Alt (для Mac: удерживая " "Shift и Option), кликните для удаления столбца из класса ORDER BY" -#: js/messages.php:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Кликните для установки/снятия отметки." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Кликните дважды для копирования имени столбца." -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Кликните выпадающую стрелку
для переключения видимости столбца." -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Показать все" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2320,13 +2325,13 @@ msgstr "" "могут не работать функции связанные с редактированием сетки, выставления " "галочки, ссылки редактирования, копирования и удаления." -#: js/messages.php:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Пожалуйста, введите допустимую шестнадцатеричную строку. Допустимыми знаками " "являются 0-9, A-F." -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2334,104 +2339,104 @@ msgstr "" "Вы действительно хотите отобразить все строки? При большом количестве данных " "возможно отключение браузера." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Исходный размер" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "Отмена" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Прервано" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Успех" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Импортировать состояние" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Перетащите файлы сюда" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Выберите базу данных" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Печать" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Большинство значений можно отредактировать
дважды кликнув прямо на них." -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "Возможно редактировать большинство значений
кликнув прямо на них." -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Перейти к ссылке:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Скопировать имя столбца." -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Для копирования имени столбца в буфер обмена, сделайте щелчок правой кнопкой " "мышки." -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Создать пароль" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Генерировать" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Ещё" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Раскрыть панель" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Скрыть панель" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Отображать скрытые пункты дерева навигации." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Связать с главной панелью" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Отсоединить от основной панели" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Запрошенная страница не найдена в истории, возможно, истекло время ее " "хранения." -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2441,49 +2446,49 @@ msgstr "" "Новейшая версия %s, выпущена %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", последняя стабильная версия:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "актуально" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Создать представление" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Отправить отчёт об ошибках" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Отправить отчёт об ошибке" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Произошла фатальная ошибка JavaScript. Вы хотите отправить отчёт об ошибке?" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Изменить настройки отчёта" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Показать детали отчёта" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "Ваш экспорт незавершён из-за ограничений времени выполнения на уровне PHP!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2493,60 +2498,60 @@ msgstr "" "поля могут быть проигнорированы согласно значения переменной max_input_vars " "в PHP." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "На сервере обнаружены некоторые ошибки!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Пожалуйста, посмотрите вниз текущего окна." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Игнорировать всё" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "В соответствии с вашими настройками они заносятся в данное время, подождите, " "пожалуйста." -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Выполнить запрос ещё раз?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Вы действительно хотите удалить эту закладку?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "В процессе получения информации по отладке SQL произошла ошибка." -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s запрос(ов) выполнено %s раз(а) за %s секунд(у/ы)." -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "%s аргумент(ов/а) передано" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Отобразить аргументы" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Скрыть аргументы" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Занято времени:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2555,355 +2560,355 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Скопировать базу данных в" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Добавить префикс таблицы:" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Заменить префикс таблицы" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Копировать таблицу с префиксом" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Предыдущий" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Следующий" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Сегодня" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Январь" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Февраль" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Март" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Апрель" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Май" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Июнь" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Июль" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Август" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Сентябрь" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Октябрь" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Ноябрь" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Декабрь" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Дек" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Воскресенье" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Понедельник" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Вторник" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Среда" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Четверг" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Пятница" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Суббота" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Вс" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Сб" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Вс" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Пн" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Вт" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Чт" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Пт" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "календарь-месяц-год" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Час" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Минута" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Секунда" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Это обязательное поле" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Пожалуйста, исправьте это поле" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Введите правильный email" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Пожалуйста, введите правильный URL" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Введите правильную дату" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Введите правильную дату ( ISO )" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Пожалуйста, введите правильное числовое значение" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Пожалуйста, введите правильный номер кредитной карты" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Пожалуйста, введите только цифровые символы" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Введите то же значение еще раз" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Пожалуйста, введите не более {0} символ(ов/а)" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Пожалуйста, введите не минее {0} символ(ов/а)" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "Пожалуйста, введите значение длиной между {0} и {1} символами(ом)" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Пожалуйста, введите значение между {0} и {1} символами(ом)" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "Пожалуйста, введите значение меньшее или равное {0}" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "Пожалуйста, введите значение, большее или равное {0}" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Введите правильную дату или время" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Пожалуйста, введите правильное значение HEX" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Ошибка" @@ -2957,34 +2962,34 @@ msgstr "" "Неожиданный символ на строке %1$s. Ожидается символ табуляции, а найден " "\"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Невозможно прочесть существующий конфигурационный файл (%s)." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "На конфигурационный файл выставлены неверные права разрешающие запись для " "всех!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Размер шрифта" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Свернуть" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Развернуть" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Повторный запрос" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3004,77 +3009,60 @@ msgstr "База данных" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Итого %d закладка" -msgstr[1] "Итого %d закладок" -msgstr[2] "Итого %d закладок" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "закрытый" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "общий" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s и %3$s закладки включены" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Нет закладок" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "В течение текущей сессии" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Анализировать" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Профилирование" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Закладка" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Сбой выполнения запроса" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Запрошенное время" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "Консоль SQL запроса" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Консоль" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Очистить" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "История" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3092,127 +3080,127 @@ msgstr "История" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Параметры" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Закладки" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Отладка SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Нажмите Ctrl+Enter для выполнения запроса" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Нажмите Enter для выполнения запроса" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "по возрастанию" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "по убыванию" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Порядок сортировки:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Количество" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Порядок выполнения" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Занято времени" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Сортировки по:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Группировать запросы" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Разгруппировать запросы" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Показать трассировку" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide Panel" msgid "Hide trace" msgstr "Скрыть панель" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Количество:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Обновить" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Добавить" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Добавить закладку" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Метка" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Целевая база данных" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Сделать закладку общедоступной" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Установить изначальное значение" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Всегда разворачивать сообщения запроса" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Показать историю запросов" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Показать текущий просматриваемый запрос" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3220,36 +3208,36 @@ msgstr "" "Выполнить запрос по нажатию Enter и вставить новую строку по нажатию Shift + " "Enter. Чтобы сделать эту опцию постоянной, смотрите настройки." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Переключиться на темную тему" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Ошибка при чтении конфигурационного файла!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "Сервер не отвечает (либо локальный сокет сервера MySQL неверно настроен)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Сервер не отвечает." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Пожалуйста, проверьте привилегии каталога содержащего базу данных." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Детали…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "Ошибка при указании соединения для controluser в конфигурации." @@ -3564,7 +3552,7 @@ msgstr "Может быть приблизительно. Смотрите [doc@ #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "SQL-запрос успешно выполнен." @@ -3689,17 +3677,17 @@ msgstr "Загрузка файла остановлена из-за расши msgid "Unknown error in file upload." msgstr "При время загрузке файла произошла неизвестная ошибка." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Ошибка при перемещении загруженного файла, смотрите [doc@faq1-11]FAQ 1.11[/" "doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Ошибка при перемещении загруженного файла." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Невозможно прочесть загруженный файл." @@ -3763,8 +3751,8 @@ msgid "Keyname" msgstr "Имя индекса" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3814,13 +3802,13 @@ msgstr "Индекс %s был удален." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Удалить" @@ -3919,7 +3907,7 @@ msgstr "Привилегии" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Операции" @@ -3934,7 +3922,7 @@ msgstr "Слежение" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4316,11 +4304,11 @@ msgstr "Ошибка создания внешнего ключа на %1$s (п msgid "No valid image path for theme %s found!" msgstr "Не найден правильный путь к изображениям для темы %s!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Предпросмотр не доступен." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "Применить" @@ -4640,21 +4628,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Пространственные" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Максимальный размер: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Статический анализ:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "Найдено %d ошибок при анализе." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4665,32 +4653,32 @@ msgstr "Найдено %d ошибок при анализе." msgid "MySQL said: " msgstr "Ответ MySQL: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Анализ SQL запроса" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Убрать анализ SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "Результат анализа %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "Убрать PHP-код" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "Отправить запрос" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Создать PHP-код" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Построчное редактирование" @@ -4778,6 +4766,10 @@ msgstr "в час" msgid "per day" msgstr "на день" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "общий" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Поиск:" @@ -4885,11 +4877,11 @@ msgstr "Добавить столбец" msgid "Attributes" msgstr "Атрибуты" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Ошибка при чтении конфигурационного файла!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4897,34 +4889,34 @@ msgstr "" "Обычно это означает наличие синтаксических ошибок, пожалуйста, проверьте " "выведенные ниже ошибки." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Невозможно загрузить изначальную конфигурацию из: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Неверный индекс сервера: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Для сервера %1$s указано неверное имя хоста. Исправьте настройки заданные в " "конфигурационном файле phpMyAdmin." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Сервер %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" "В конфигурационном файле phpMyAdmin установлен неверный метод аутентификации:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4936,24 +4928,24 @@ msgstr "" "phpMyAdmin в настоящий момент использует тайм зону, настроенную на сервере " "по-умолчанию." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Необходимо обновить %s до версии %s или выше." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Ошибка: несоответствие токена" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "попытка перезаписи GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "возможная уязвимость" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "определена числовая клавиша" @@ -5698,13 +5690,13 @@ msgstr "Поместить названия полей в первой стро #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Значения полей обрамлены" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Символ экранирования" @@ -5722,12 +5714,12 @@ msgstr "Удалить из полей символы перевода стро #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Разделитель столбцов" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Разделитель строк" @@ -6309,7 +6301,7 @@ msgid "Column names in first row" msgstr "Имена таблиц в первой строке" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Пропускать пустые строки" @@ -7886,7 +7878,7 @@ msgid "Table %s has been emptied." msgstr "Таблица %s была очищена." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Представление %s было удалено." @@ -8020,8 +8012,8 @@ msgid "No data to display" msgstr "Данные не найдены" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8060,53 +8052,53 @@ msgstr[2] "Имена '%s' являются зарезервированными msgid "No column selected." msgstr "Не выбран столбец." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Поля были успешно перемещены." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Ошибка запроса" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Изменить" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Индекс" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Пространственный" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Полнотекстовый" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Уникальные значения" @@ -8116,7 +8108,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Расширение %s не найдено. Пожалуйста, проверьте ваши настройки PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Нет изменений" @@ -8919,55 +8911,55 @@ msgstr "MySQL вернула пустой результат (т.е. ноль с msgid "[ROLLBACK occurred.]" msgstr "[Произошел откат.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Следующие структуры были созданы, либо изменены. Вы можете:" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "Просмотреть детали структуры, нажав на её имя." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Изменить любую настройку, нажав на соответствующую ссылку \"Параметры\"." -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Отредактировать структуру, перейдя по ссылке \"Структура\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Перейти к базе данных: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Отредактировать настройки для %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Перейти к таблице: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Структура %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Перейти к представлению (VIEW): %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Можно эмулировать только запросы UPDATE и DELETE с одной таблицей." -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9015,48 +9007,48 @@ msgstr "Или" msgid "web server upload directory:" msgstr "Из каталога загрузки:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Редактировать/Вставить" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Продолжить вставку с %s строки" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "и затем" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Вставить запись" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Вставить в виде новой строки и игнорировать появляющиеся ошибки" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Отобразить запрос вставки" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Вернуться на предыдущую страницу" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Добавить новую запись" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Вернуться к данной странице" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Редактировать следующую строку" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9066,7 +9058,7 @@ msgstr "" "Для перемещения между полями значения, используйте клавишу TAB, либо CTRL" "+клавиши со стрелками - для свободного перемещения" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9078,11 +9070,11 @@ msgstr "" msgid "Value" msgstr "Значение" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Отображает SQL-запрос" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Идентификатор вставленной строки: %1$d" @@ -9960,7 +9952,7 @@ msgstr "Восстановить таблицу" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Удалить данные или таблицу" @@ -9973,32 +9965,32 @@ msgid "Delete the table (DROP)" msgstr "Удалить таблицу (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Анализ" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Проверка" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Оптимизация" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Перестройка" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Исправление" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10024,37 +10016,37 @@ msgstr "Удалить разделение" msgid "Check referential integrity:" msgstr "Проверить целостность данных:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Не возможно переместить таблицу саму в себя!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Невозможно скопировать таблицу саму в себя!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Таблица %s была перемещена в %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Таблица %s была скопирована в %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Не задано имя таблицы!" @@ -10230,7 +10222,7 @@ msgstr "Параметры сохранения данных" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Дамп данных таблицы" @@ -10254,21 +10246,21 @@ msgstr "Определение" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Структура таблицы" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Структура для представления" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Дублирующая структура для представления" @@ -10358,7 +10350,7 @@ msgid "Database:" msgstr "База данных:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Данные:" @@ -10462,7 +10454,7 @@ msgid "Data creation options" msgstr "Параметры создания данных" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Очистить таблицу перед добавлением данных" @@ -10549,7 +10541,7 @@ msgstr "Похоже, что база данных использует функ #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "экспорт псевдонима не может надёжно работать во всех случаях." @@ -10593,52 +10585,52 @@ msgstr "используется" msgid "It appears your database uses views;" msgstr "Похоже, что база данных использует представления;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Ограничения внешнего ключа сохраненных таблиц" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Ограничения внешнего ключа таблицы" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Индексы сохранённых таблиц" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Индексы таблицы" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT для сохранённых таблиц" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT для таблицы" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME-ТИПЫ ТАБЛИЦЫ" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "СВЯЗИ ТАБЛИЦЫ" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Похоже, что ваша таблица использует триггеры;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "Структура для представления %s экспортирована как таблица" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Ошибка считывания данных:" @@ -10668,7 +10660,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10691,15 +10683,15 @@ msgstr "" msgid "Column names: " msgstr "Названия столбцов: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Неправильный параметр импорта CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10708,18 +10700,18 @@ msgstr "" "Указано ошибочное имя столбца (%s)! Убедитесь, что названия столбцов указаны " "верно, разделены запятыми, и не заключены в кавычки." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Неправильный формат входных CSV-данных в строке %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Несоответствие количества столбцов в CSV данных на строке %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Этот модуль не поддерживает импорт сжатых данных!" @@ -10727,23 +10719,23 @@ msgstr "Этот модуль не поддерживает импорт сжа msgid "MediaWiki Table" msgstr "Таблица MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Неверный формат ввода данных mediawiki на строке:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" "Импортировать проценты в виде десятичных значений (напр. 12.00% в .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Импортировать денежные единицы (напр. $5.00 в 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10751,7 +10743,7 @@ msgstr "" "Выбранный XML файл некорректен, либо неполон. Проверьте возможные ошибки и " "попробуйте ещё раз." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Не могу разобрать OpenDocument Spreadsheet!" @@ -10759,12 +10751,12 @@ msgstr "Не могу разобрать OpenDocument Spreadsheet!" msgid "ESRI Shape File" msgstr "Файл ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "При импорте файла ESRI произошла ошибка: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10772,12 +10764,12 @@ msgstr "" "Попытка загрузки некорректного файла либо файла, содержащего некорректные " "данные!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "Пространственное расширение MySQL не поддерживает тип ESRI \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Импортированный файл не содержит данных!" @@ -10790,7 +10782,7 @@ msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" "Не использовать атрибут AUTO_INCREMENT для нулевых значений" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13828,15 +13820,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "A rename operation was expected." @@ -13851,17 +13839,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "Нераспознанный тип данных." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Псевдоним был найден ранее." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Неожиданная точка." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Ожидался псевдоним." @@ -13879,19 +13868,19 @@ msgstr "Ожидалось смещение." msgid "This option conflicts with \"%1$s\"." msgstr "Этот параметр конфликтует с \"%1$s\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Ожидалось старое имя таблицы." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Ожидалось ключевое слово \"TO\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Ожидалось новое имя таблицы." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Ожидалась операция переименования." @@ -13917,15 +13906,15 @@ msgstr "Ожидалась закрывающая кавычка %1$s." msgid "Variable name was expected." msgstr "Ожидалось имя переменной." -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Неожиданное начало выражения." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13946,15 +13935,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Неизвестное ключевое слово." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Ожидалось имя сущности." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Ожидалось объявление, по крайней мере, одного столбца." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Ожидалось ключевое слово \"RETURNS\"." @@ -14652,7 +14641,7 @@ msgstr "Отобразить дамп (схему) таблицы" msgid "Invalid table name" msgstr "Неправильное имя таблицы" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Строка: %1$s, Столбец: %2$s, Ошибка: %3$s" @@ -15611,7 +15600,7 @@ msgid "at beginning of table" msgstr "в начале таблицы" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Разделы" @@ -15654,7 +15643,7 @@ msgstr "разделён" msgid "Edit partitioning" msgstr "Удалить разделение" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Редактировать представление" @@ -15773,11 +15762,11 @@ msgstr "VIEW название" msgid "Column names" msgstr "Названия столбцов" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Переименовать представление в" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Удалить вид (DROP)" @@ -17101,6 +17090,18 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert установлен в 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Итого %d закладка" +#~ msgstr[1] "Итого %d закладок" +#~ msgstr[2] "Итого %d закладок" + +#~ msgid "private" +#~ msgstr "закрытый" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s и %3$s закладки включены" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/si.po b/po/si.po index ceccccbc00..4b1ff8e23d 100644 --- a/po/si.po +++ b/po/si.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-01-06 03:53+0000\n" "Last-Translator: Isuru Abeywardana \n" "Language-Team: Sinhala " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "ගොනුවක් ලෙස තෝරන්න" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "ප්‍රතිසකසන්න" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "සියල්ල තෝරන්න" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "පෝරම‍යේ අස්ථනගත වූ අගයන් ඇත!" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "අවම වශයෙන් එක් වචනයක්වත්" -#: js/messages.php:118 +#: js/messages.php:120 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number!" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:119 +#: js/messages.php:121 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid length!" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "සුචිය එක් කරන්න" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "සුචිය සංස්කරණය කරන්න" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "සුචියට ක්ෂේත්‍ර %s ක් එක් කරන්න" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "සර්වරයේ සංස්කරණය" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "සර්වරයේ සංස්කරණය" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Columns enclosed with:" msgid "Composite with:" msgstr "තීර ඇවුරුම් සළකුණ:" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %s column(s) to index" msgid "Please select column(s) for the index." msgstr "සුචියට ක්ෂේත්‍ර %s ක් එක් කරන්න" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "ඔබ අවම වශයෙන් එක් ක්ෂේත්‍රයක්වත් එක් කල යුතුයි." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "විමසුම තුල" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "වෙනස් වූ පේළි:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL විමසුම:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y අගයන්" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "දාරක නම හිස්ව පවතී!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "භාවිත නාමය හිස්ව පවතී!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "මුරපදය හිස්ව පවතී!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "මුරපද නොගැලපේ!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත් කෙරෙමින්" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "වසන්න" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "සාදන ලද පිටු ගණන." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "පරිශීලක පැතිකඩ යාවත්කාලීන කරන ලදි." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "පේළිය ඉවත් කරන ලදි." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "අනෙකුත්" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "සම්බන්ධතා / ක්‍රියාවලි" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "අධීක්ෂකයේ වින්‍යාස නොගැලපේ" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1217,165 +1221,165 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "විමසුම් කෑෂ් කාර්යක්ෂමතාව" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "විමසුම් කෑෂ් භාවිතය" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "භාවිතා කරන ලද විමසුම් කෑෂ්" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "පද්ධතියේ CPU භාවිතය" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "පද්ධතියේ මතකය" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "පද්ධතියේ ප්‍රතිහරණය" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "මධ්‍යක භාරය" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "සම්පූර්ණ මතකය" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "කෑෂ්ගත මතකය" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "බෆරගත මතකය" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "නිදහස් මතකය" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "භාවිත මතකය" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "මුළු ප්‍රතිහරණය" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "කෑෂ්ගත ප්‍රතිහරණය" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "භාවිත ප්‍රතිහරණය" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "නිදහස් ප්‍රතිහරණය" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "යැවුණු බයිට ගණන" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "ලැබුණු බයිට ගණන" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "සම්බන්ධතා" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "ක්‍රියාවලි" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "වගු %d" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "ප්‍රශ්න" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "තදබදය" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "සිටුවම්" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "ජාලකයට ප්‍රස්තාර එක් කරන්න" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "කරුණාකර ශ්‍රේණියට අවම වශයෙන් එක විචල්‍යයක්වත් ඇතුලත් කරන්න!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1387,47 +1391,47 @@ msgstr "කරුණාකර ශ්‍රේණියට අවම වශයෙ msgid "None" msgstr "කිසිවක් නැත" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "අධීක්ෂණය නැවත අරඹන්න" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "අධීක්ෂණය තාවකාලිකව නවතන්න" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "ස්වයංක්‍රීය යාවත්කාලීන කිරීම අරඹන්න" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "ස්වයංක්‍රීය යාවත්කාලීන කිරීම නවතන්න" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log සහ slow_query_log සක්‍රීය යි." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log සක්‍රීය යි." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log සක්‍රීය යි." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log සහ general_log අක්‍රීය යි." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output අගය TABLE ලෙස සිටුවා නැත." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output අගය TABLE ලෙස සිටුවා ඇත." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1437,12 +1441,12 @@ msgstr "" "slow_query_log සක්‍රීයමුත් සේවාදායකය ලොග ගත කරන්නේ තත්පර %dට වඩා ගතවන විමසුම් පමණි. " "ඔබගේ පද්ධතියද සලකා long_query_time අගය තත්පර 0-2 අතර අගයකට සිටුවීම සුදුසුය." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time තත්පර %d කට සිටුවා ඇත." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1451,30 +1455,30 @@ msgstr "" "ප්‍රතිසැකසේ:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "log_output %s ට සිටුවන්න" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "%s සක්‍රිය කරන්න" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "%s අක්‍රිය කරන්න" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "long_query_time තත්පර %dකට සිටුවන්න." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1482,96 +1486,96 @@ msgstr "" "ඔබට මෙම විචල්‍යයන් වෙනස් කල නොහැක. කරුණාකර root ලෙස ප්‍රවේශ වන්න. නැතහොත් දත්ත ගබඩා " "පරිපාලක විමසන්න." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "සිටුවම් වෙනස් කිරීම" # සිටුවම් = settings. Source: Glossary of Information Technology Terms - ICTA -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "වර්තමාන සිටුවම්" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "ප්‍රස්ථාර මාතෘකාව" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "ආන්තර" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "%s න් බෙදන ලද" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "ඒකකය" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "slow log වෙතින්" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "general log වෙතින්" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "ලොග විශ්ලේෂණය කෙරෙමින්" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "ලොග විශ්ලේෂණය සහ පූරණය කෙරෙමින්. මේ සඳහා මඳ වේලාවක් ගත විය හැක." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "ඉල්ලීම අවලංගු කරන්න" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "ලගු දත්ත පූරණය කරන ලදී. මේ අතරතුර කෙරුණු විමසුම්:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "ලොග වගුව වෙත යන්න" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "දත්ත කිසිවක් හමු නොවිණි" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "ලොගය විශ්ලේෂණය කෙරුනමුත් මෙම කාල පරාසයට අදාල දත්ත කිසිවක් හමු නොවිණි." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "විශ්ලේෂණය…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "ප්‍රතිදානය පහදන්න" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1579,7 +1583,7 @@ msgstr "ප්‍රතිදානය පහදන්න" msgid "Status" msgstr "තත්වය" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1589,60 +1593,60 @@ msgstr "තත්වය" msgid "Time" msgstr "කාලය" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "මුළු කාලය:" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "Query results operations" msgid "Profiling results" msgstr "විමසුම් ප්‍රථිඵල සඳහා මෙහෙයුම්" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "වගුව" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "ප්‍රස්ථාර" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "ලොග වගුව සඳහා පෙරහන් විකල්ප" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "පෙරහන්න" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "විමසුම් වචන/regexp මගින් පෙරහන්න:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "WHERE වාක්‍යඛණ්ඩයේ ඇති විචල්‍ය දත්ත මගහැර, විමසුම් කාණ්ඩ කරන්න" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "ගොනු කල පේළි ගණන:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "මුළු එකතුව:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "ලොගයන් පූරණය කෙරෙමින්" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "අධීක්ෂකය යාවත්කාලින කිරීම අසමත් විය" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1651,25 +1655,25 @@ msgstr "" "ප්‍රස්ථාර සඳහා නව දත්ත ලබාගැනීමේදී සේවාදායකය නොවලංගු ප්‍රතිචාරයක් ලබාදුනි. මෙය බොහෝදුරට " "ඔබගේ සැසිය කල් ඉකුත්වීමෙන් සිදුවිය හැක. පිටුව ප්‍රතිපූරණය කර ලොගින් වීම සලකා බලන්න." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "පිටුව ප්‍රතිපූරණය කරන්න" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "වෙනස් වූ පේළි:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "වින්‍යාස ගොනුව විග්‍රහ කිරීම අසමත් විය. ගොනුවෙහි වලංගු JSON කේත ඇත්දැයි පරීක්ෂා කරන්න." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "අනයනිත වින්‍යාස සමඟින් ප්‍රස්ථාර ජාලය ගොඩනැගීම අසමත් විය. පෙරනිමි වින්‍යාස වෙත මාරු වෙමින්…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1678,67 +1682,67 @@ msgstr "" msgid "Import" msgstr "ආනයනය" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "අධීක්ෂකයේ වින්‍යාසයන් ආනයනය" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "ඔබට ආනයනය කිරීමට අවශ්‍ය ගොනුව තෝරන්න." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "විමසුම විශ්ලේෂණය" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "උපදේශක පද්ධතිය" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "විය හැකි කාර්ය සාධනය ආශ්‍රිත ගැටළු" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "ගැටළු" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "නිර්දේශය" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "රීතිය සම්බන්ද තොරතුරු" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "යුක්තිසාධනය" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "භාවිතා කරන ලද විචල්‍යයන් / සූත්‍ර" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "ඇගයීම" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "වැරදි පරාමිතියන්!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1750,72 +1754,72 @@ msgstr "වැරදි පරාමිතියන්!" msgid "Cancel" msgstr "අවලංගු කරන්න" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "සිටුවම් වෙනස් කිරීම" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "පූරණය කෙරෙමින්…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "ඉල්ලීම පිරිසැකසෙමින්" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "විමසුම් කෑෂ්" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Error in processing request:" msgid "Error in processing request" msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය:" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "දෝෂ කේතය: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "දෝෂ පණිවුඩය: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "දත්තගබඩාවක් තෝරාගෙන නොමැත." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "තීරුව හලමින්" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "ප්‍රාථමික මූලය එක් කරන්න" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1825,63 +1829,63 @@ msgstr "ප්‍රාථමික මූලය එක් කරන්න" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "මෙම නිවේදනය ඉවත් කිරීමට ක්ලික් කරන්න" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "දත්තගබඩාවල නම් වෙනස් කෙරෙමින්" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "දත්තගබඩාව පිටපත් කෙරෙමින්" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "අක්ෂර කට්ටලය වෙනස් කෙරෙමින්" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "අන්‍ය මූල පරීක්ෂා සක්‍රිය කරන්න" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "ශීර්ෂකය ලබා ගැනීමට නොහැකි විය" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "සොයමින්" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "සෙවුම් ප්‍රතිඵල සඟවන්න" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "සෙවුම් ප්‍රතිඵල පෙන්වන්න" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "පිරික්සමින්" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "ඉවත් කෙරෙමින්" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "සුරැකි ශ්‍රිතයක නිර්වචනයෙහි RETURN ප්‍රකාශයක් තිබිය යුතුයි!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1897,44 +1901,44 @@ msgstr "සුරැකි ශ්‍රිතයක නිර්වචනයෙ msgid "Export" msgstr "අපනයනය" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET සංස්කාරකය" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "%s තීරුව සඳහා අගයන්" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "නව තීරුවක් සඳහා අගයන්" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "එක් එක් අගයන් වෙන වෙනම ක්ෂේත්‍ර වලට ඇතුලත් කරන්න." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "අගයන් %dක් එක් කරන්න" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "සටහන: ගොනුවේ වගු එකකට වැඩි ගණනක් ඇත්නම්, ඒවා එකකට සංයුක්ත කෙරෙනු ඇත." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "විමසුම් කවුළුව සඟවන්න" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "විමසුම් කවුළුව පෙන්වන්න" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1944,7 +1948,7 @@ msgstr "විමසුම් කවුළුව පෙන්වන්න" msgid "Edit" msgstr "සංස්කරණය කරන්න" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1955,96 +1959,96 @@ msgstr "සංස්කරණය කරන්න" msgid "Delete" msgstr "ඉවත් කරන්න" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d වලංගු පේළි අංකයක් නොවේ." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "අන්‍ය අගයන් පිරික්සන්න" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "විචල්‍යය" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "පේළි කිසිවක් තෝරගෙන නැත" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "දත්තගබඩාවේ සොයන්න" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "නිදහස් මතකය" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "දායක වන්න" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "ප්‍රාථමික මූලය එක් කරන්න" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "%s ට ප්‍රාථමික මූලයක් එක් කරන ලදි" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "අවධානය පිළිබඳ වාර්තාව" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2052,90 +2056,90 @@ msgstr "" msgid "End of step" msgstr "පේළියේ අවසානය" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "තෝරන්න" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "දත්තගබඩාවක් තෝරාගෙන නොමැත." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "පහත විමසුම් ක්‍රියාත්මක කරන ලදි:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table:" msgid "Create the following table" msgstr "පහත වගුවට වරප්‍රසාද එක් කරන්න:" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "දත්තගබඩාවක් තෝරාගෙන නොමැත." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2145,165 +2149,165 @@ msgstr "දත්තගබඩාවක් තෝරාගෙන නොමැත. msgid "Save" msgstr "සුරකින්න" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "සෙවුම් නිර්ණායක සඟවන්න" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "සෙවුම් නිර්ණායක පෙන්වන්න" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "වගුව තුල සෙවීම" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "තීර නම්: " -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "තීර නම්: " -#: js/messages.php:477 +#: js/messages.php:479 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "උපරිම වගු" -#: js/messages.php:478 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "උපරිම වගු" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "සෙවුම් නිර්ණායක සඟවන්න" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "සෙවුම් නිර්ණායක පෙන්වන්න" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "එක් ලක්ෂ්‍යයකින් දත්ත පේළියක් නියෝජනය කෙරේ." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "ලක්ෂ්‍යයක් මතින් ගමන් කරන විට එහි ලේබලය පෙන්නුම් කරයි." -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "තුළු සූමකරණය සඳහා ප්‍රස්ථාරයේ කොටසක් මූසිකය ආධාරයෙන් තෝරන්න." -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "පෙර තත්ත්වයට පැමිණීම සඳහා සූමකරණය ප්‍රතිසකසන බොත්තම ක්ලික් කරන්න." -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "පේළියක දත්ත පරීකෂා කිරීමට හා සමහරක් දත්ත වෙනස් කිරීමට ලක්ෂ්‍යයක් මත ක්ලික් කරන්න." -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "ප්‍රස්තාරයෙහි විශාලත්වය පහළ දකුණු කොණෙන් ඇදීමෙන් වෙනස් කල හැක." -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "තීර දෙකක් තෝරන්න" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "එකිනෙකට වෙනස් තීර දෙකක් තෝරන්න" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "ලක්ෂයට අදාල දත්ත" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "නොසලකන්න" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "පිටපත් කරන්න" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "ලක්ෂ්‍යය" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "රේඛාව" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "බහු අස්‍රය" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "ජ්‍යාමිතිය" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "ඇතුලත කවය" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "පිටත කවය:" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "සම්බන්දිත මූලය තෝරන්න" # ප්‍රාථමික මූලය = Primary key. Source: Glossary of Information Technology # Terms - ICTA -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "අන්‍ය මූලය තෝරන්න" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "කරුණාකර ප්‍රාථමික මූලය හෝ අනුපම මූලයක් තෝරන්න!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "පෙන්වීම සඳහා තීරය ‍තෝරාගන්න" -#: js/messages.php:536 +#: js/messages.php:538 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,136 +2315,136 @@ msgstr "" "සැලැස්මේ සිදුකල වෙනස්කම් සුරැකීම සිදුකර නැත. සුරැකීම සිදු නොකළහොත් ඒවා අහිමි වනු ඇත. ඉදිරියට " "යන්න?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "පිටුවේ නම" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "පිටුව තෝරන්න" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "ඒකකය" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "සංස්කරණය සඳහා පිටුවක් තෝරාගන්න" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "ක්‍රමානුරූපය සංස්කරණය හෝ අපනයනය කරන්න" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "වෙනස් කිරීම් සුරකින ලදි" # අභිරුචිය = option. Source: Glossary of Information Technology Terms - ICTA -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "ක්ෂේත්‍රයට අභිරුචියක් එක් කරන්න " -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "වස්තූන් %d ක් නිමැවිණි." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "ඉදිරිපත් කරන්න" -#: js/messages.php:559 +#: js/messages.php:561 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "සංස්කරණය අවලංගු කිරීමට escape ඔබන්න" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "අනුපිලිවෙල නැවත සකස් කිරීමට අදින්න." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "සලකුණු කිරීමට/ ඉවත් කිරීමට ක්ලික් කරන්න." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "තීර නාමය පිටපත් කිරීම සඳහා ද්වි ක්ලික් කරන්න." -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "තීර පෙන්වීමට/සැඟවීමට
ඊතලය ක්ලික් කරන්න." -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "සියල්ල පෙන්වන්න" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2448,129 +2452,129 @@ msgstr "" "මෙම වගුවෙහි අනුපම තීරුවක් නැත. සුරැකීමෙන් අනතුරුව වෙනස් කිරීමට, පිටපත් කිරීමට, මකා දැමීමට අදාළ " "ඇඳීම් ක්‍රියා විරහිත වනු ඇත." -#: js/messages.php:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "මුල් පිහිටුම" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "අවලංගු කරන්න" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "අත්හැර දමන ලදි" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "ආනයන පෙරනිමි" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "වගු තෝරන්න" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "මුද්‍රණය කරන්න" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "අන්තර්ගත දත්ත මත ද්විත්ව-ක්ලික් කිරීමෙන් ඔබට
බොහෝ තීරවල අඩංගු දත්ත වෙනස් කල හැක." -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "අන්තර්ගත දත්ත මත ක්ලික් කිරීමෙන් ඔබට
බොහෝ තීරවල අඩංගු දත්ත වෙනස් කල හැක." -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy #| msgid "Go to link." msgid "Go to link:" msgstr "සබැඳීම වෙත යන්න." -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "තීර නම් පිටපත් කරන්න." -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "පසුරු පුවරුව වෙත පිටපත් කිරීම සඳහා තීර නාමය දකුණු ක්ලික් කරන්න." -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "මුරපදය උත්පාදනය කරන්න" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "උත්පාදනය කරන්න" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "තවත්" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "පැනලය පෙන්වන්න" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "පැනලය සඟවන්න" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show logo in navigation panel" msgid "Show hidden navigation tree items." msgstr "යාත්‍රණ පැනලයේ ලාංඡනය පෙන්වන්න" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Customize main panel" msgid "Link with main panel" msgstr "ප්‍රධාන පැනලය රිසි සේ සකසන්න" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main panel" msgid "Unlink from main panel" msgstr "ප්‍රධාන පැනලය රිසි සේ සකසන්න" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "ඔබ ඉල්ලු පිටුව ඉතිහාසයේ හමු නොවිණි, එය කල් ඉකුත් වී ඇතිවා විය හැකිය." -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2580,124 +2584,124 @@ msgstr "" "අනුවාදය %s අනුවාදයයි (%s දින නිකුත් කරන ලද)." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", නවතම ස්ථායි අනුවාදය:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "යාවත්කාලීන" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "දසුනක් සාදන්න" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "සර්වරයේ පොර්ට්" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "සර්වරයේ පොර්ට්" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "සිටුවම් වෙනස් කිරීම" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "විවෘත වගු පෙන්වන්න" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "නොසලකන්න" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "මෙම විමසුම මෙහි නැවත පෙන්වන්න" -#: js/messages.php:700 +#: js/messages.php:702 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "\"%s\" ක්‍රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්‍යද?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "ක්‍රියාත්මක කරන ලද විමසුම්" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "වගු විස්තර" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "සෙවුම් ප්‍රතිඵල සඟවන්න" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2706,385 +2710,385 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "වෙත දත්තගබඩාව පිටවත් කරන්න" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "වගු නාම මූලයක් එක් කරන්න:" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "වගු නාම මූලය ප්‍රතිස්ථාපනය කරන්න" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "නාම මූලය සහිත වගු පිටපත් කරන්න" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "පෙර" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "මීලඟ" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "අද දින" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "ජනවාරි" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "පෙබරවාරි" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "මාර්තු" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "අ‍ප්‍රේල්" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "මැයි" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "ජුනි" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "ජූලි" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "අගෝස්තු" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "සැප්තැම්බර්" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "ඔක්තෝම්බර්" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "නොවැම්බර්" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "දෙසැම්බර්" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "ජනවාරි" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "පෙබරවාරි" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "මාර්තු" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "අ‍ප්‍රේල්" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "මැයි" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "ජුනි" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "ජූලි" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "අගෝස්තු" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "සැප්තැම්බර්" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "ඔක්තෝම්බර්" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "නොවැම්බර්" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "දෙසැම්බර්" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "ඉරිදා" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "සඳුදා" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "අඟහරු‍වදා" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "බදාදා" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "බ්‍රහස්පතින්දා" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "සිකුරාදා" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "සෙනසුරාදා" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "ඉරිදා" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "සඳුදා" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "අඟහ" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "බදාදා" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "බ්‍රහස්" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "සිකුරා" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "සෙනසු" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "ඉරි" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "සඳු" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "අඟ" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "බදා" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "බ්‍රහ" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "සිකු" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "සෙන" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "දින දර්ශන-මාස-වසර" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "කිසිවක් නැත" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "පැය" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "මිනිත්තු" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "තත්පර" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "පෙළ ක්ෂේත්‍ර භාවිතා කරන්න" -#: js/messages.php:886 +#: js/messages.php:888 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:887 +#: js/messages.php:889 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:925 +#: js/messages.php:927 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:930 +#: js/messages.php:932 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "දෝෂය" @@ -3134,34 +3138,34 @@ msgstr "%s වන පේළියේ අනපේක්ෂිත අනුලක msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "%1$s වන පේළියේ අනපේක්ෂිත අනුලකුණකි. ටැබයක් අපේක්ෂිත නමුත් \"%2$s\" හමුවිය." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "වත්මන් වින්‍යාස ගොනුව (%s) කියවිය නොහැක." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "වින්‍යාස ගොනුව සඳහා වැරදි අවසර සිටුවා ඇත. සැමටම ඊට ලිවිය හැකි නොවිය යුතුය!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "ෆොන්ටයෙහි ප්‍රමාණය" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "subquery" msgid "Requery" msgstr "උප විමසුම" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3180,95 +3184,76 @@ msgid "Database" msgstr "දත්තගබඩාව" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Table Search" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "වගුව තුල සෙවීම" -msgstr[1] "වගුව තුල සෙවීම" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "හවුල්" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "පොත් සලකුණ ඉවත් කරන ලදි." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Table Search" msgid "No bookmarks" msgstr "වගුව තුල සෙවීම" -#: libraries/Console.php:186 +#: libraries/Console.php:168 #, fuzzy #| msgid "Skip current error" msgid "During current session" msgstr "වත්මන් දෝෂය මගහරින්න" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "SQL ය පහදන්න" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Bookmark table" msgid "Bookmark" msgstr "පොත්සලකුණු ගොනුව" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query cache" msgid "Query failed" msgstr "විමසුම් කෑෂ්" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "Query execution time" msgid "Queried time" msgstr "විමසුම ක්‍රියාත්මක කිරීමේ කාලය" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "SQL විමසුම් කවුළුව" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "මකන්න" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "SQL ඉතිහාසය" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3286,201 +3271,201 @@ msgstr "SQL ඉතිහාසය" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "විකල්ප" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Bookmark table" msgid "Bookmarks" msgstr "පොත්සලකුණු ගොනුව" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "SQL නිදොසන්න" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute every" msgid "Press Ctrl+Enter to execute query" msgstr "ක්‍රියාත්මක කරන්න සෑම" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute every" msgid "Press Enter to execute query" msgstr "ක්‍රියාත්මක කරන්න සෑම" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "ආරෝහන" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "අවරෝහන" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Other" msgid "Order:" msgstr "අනෙකුත්" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "තීර" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute every" msgid "Execution order" msgstr "ක්‍රියාත්මක කරන්න සෑම" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Other" msgid "Order by:" msgstr "අනෙකුත්" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "SQL විමසුම" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "SQL විමසුම" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "වර්ණය පෙන්වන්න" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide Panel" msgid "Hide trace" msgstr "පැනලය සඟවන්න" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "තීර" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "අලුත් කරන්න" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "සහ" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Table Search" msgid "Add bookmark" msgstr "වගුව තුල සෙවීම" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label:" msgid "Label" msgstr "ලේබලය:" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "ඉලක්කගත දත්තගබඩාව" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Table Search" msgid "Share this bookmark" msgstr "වගුව තුල සෙවීම" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Reset to default" msgid "Set default" msgstr "පෙරනිමි අගයන් පිහිටුවන්න" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "SQL query history table" msgid "Show query history at start" msgstr "SQL විමසුම් ඉතිහාස වගුව" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "පිටපත් කල වගුව වෙත මාරු වන්න" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "වින්‍යාස ගොනුව කියවීමට අසමත් විය!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "සේවාදායකය ප්‍රතිචාර නොදක්වයි (හෝ සේවාදායකයේ සොකට් නිවැරදිව සකසා නැත)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "සේවාදායකය ප්‍රතිචාර නොදක්වයි." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "කරුණාකර දත්තගබඩාව අඩංගු ඩිරෙක්ටරිය සඳහා වරප්‍රසාද පරීක්ෂා කරන්න." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "තොරතුරු…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "වින්‍යාසයන් හි අර්ථදක්වා ඇති පරිදි පරිපාලක භාවිතා කරන්නා ලෙස සම්බන්ධ වීම අසමත් විය." @@ -3809,7 +3794,7 @@ msgstr "සමහර විට ආසන්න වශයෙන්. [doc@faq3-11] #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "ඔබගේ SQL විමසුම සාර්ථකව ක්‍රියාවට නංවන ලදි." @@ -3933,16 +3918,16 @@ msgstr "දිගුව නිසා ගොනුව උඩුගත කිර msgid "Unknown error in file upload." msgstr "ගොනුව උඩුගත කිරීමේදී දෝෂයක් ඇති විය." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "උඩුගත කෙරුණු ගොනුව ගෙන යාමේදී දෝෂයක් ඇති විය, [doc@faq1-11]FAQ 1.11[/doc] බලන්න." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "උඩුගත කරන ලද ගොනුව චලනයේදී දෝෂයක් මතු විය." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -4010,8 +3995,8 @@ msgid "Keyname" msgstr "යතුරු නම" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4061,13 +4046,13 @@ msgstr "%s සූචිය හලන ලදි." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "හලන්න" @@ -4165,7 +4150,7 @@ msgstr "වරප්‍රසාද" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "මෙහෙයුම්" @@ -4180,7 +4165,7 @@ msgstr "අවධානය" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4571,11 +4556,11 @@ msgstr "%1$s මත අන්‍ය මූලය සෑදීමේදී දෝ msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "පූර්වදර්ශනයක් නොමැත." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "ලබාගන්න" @@ -4882,23 +4867,23 @@ msgctxt "spatial types" msgid "Spatial" msgstr "අවකාශීය" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "උපරිම: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "ස්ථිතික දත්ත" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4909,38 +4894,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL පවසන ලදි: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL ය පහදන්න" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "SQL ය පහදා දීමෙන් ඉවත් වන්න" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP කේත නොමැතිව" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "විමසුම ඉදිරිපත් කරන්න" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP කේත සාදන්න" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -5030,6 +5015,10 @@ msgstr "පැයකට" msgid "per day" msgstr "දිනකට" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "හවුල්" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "සෙවීම:" @@ -5146,42 +5135,42 @@ msgstr "තීරයක් එක් කරන්න" msgid "Attributes" msgstr "ගුණාංග" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "වින්‍යාස ගොනුව කියවීමට අසමත් විය!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "මෙහි සාමාන්‍ය අරුත වාක්‍ය වින්‍යාස දෝෂයකි, කරුණාකර පහත දැක්වෙන දෝෂ පරීක්ෂා කර බලන්න." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "%1$s වෙතින් පෙරනිමි සිටුවම් පූරණය කර ගත නොහැකි විය" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "අවලංගු සේවාදායක සුචිය: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s සේවාදායකය සඳහා වැරදි දායක නාමයක්. ඔබ ඔබගේ වින්‍යාසයන් පරීකෂා කර බැලිය යුතුය." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "%d වන සේවාදායකය" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "වින්‍යසයන්හි වලංගු නැති සත්‍යාපන ක්‍රමයක් සිටුවා ඇත:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5189,24 +5178,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "ඔබ %s %s හෝ ඉන්පසු අනුවාදයක් වෙත යාවත්කාලීන කල යුතුය." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "දෝෂය: ටෝකන නොගැලපීම" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS අගයන් උඩින් ලිවීමේ උත්සාහය" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "විය හැකි අයුතු ප්‍රයෝජන ගැනීමක්" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "සංඛ්‍යාත්මක යතුරක් අනාවරණය වුණි" @@ -5914,13 +5903,13 @@ msgstr "තීර නම් පළමු පේළියේ යොදන්න" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "තීර ඇවුරුම් සළකුණ" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "තීර මගහැරීමේ සළකුණ" @@ -5938,12 +5927,12 @@ msgstr "තීර තුල ඇති CRLF අනුලකුණු ඉවත් #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "තීර වෙන් කිරීමේ සළකුණ" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "පේළි අවසන් කිරීමේ සළකුණ" @@ -6537,7 +6526,7 @@ msgid "Column names in first row" msgstr "පළමු පේළියේ තීරු නම්" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "හිස් පේළි ආනයනය නොකරන්න" @@ -8280,7 +8269,7 @@ msgid "Table %s has been emptied." msgstr "%s වගුව හිස් කරන ලදි." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "%s දසුන හලන ලදි." @@ -8415,8 +8404,8 @@ msgid "No data to display" msgstr "පෙන්වීම සඳහා දත්ත නොමැත" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8464,53 +8453,53 @@ msgstr[1] "" msgid "No column selected." msgstr "පේළි කිසිවක් තෝරගෙන නැත" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "තීර සාර්ථකව ගෙන යන ලදි." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "විමසුම් දෝෂය" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "වෙනස් කරන්න" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "සූචිය" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "ජ්‍යාමිතික" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "සම්පූර්ණ පාඨය" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "එකිනෙකට වෙනස් අගයන්" @@ -8520,7 +8509,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s දිගුව සොයාගත නොහැක. කරුණාකර ඔබගේ PHP වින්‍යාසයන් පරීක්ෂා කර බලන්න." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "වෙනස්කම් නැත" @@ -9295,18 +9284,18 @@ msgstr "MySQL හිස් ප්‍රතිඵල කුලකයක් (ප msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "පහත සැකිලි අලුතින් සාදා හෝ වෙනස් කර ඇත. මෙහිදී ඔබට:" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 #, 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:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -9314,42 +9303,42 @@ msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "අදාල \"විකල්ප\" සබැඳිය මත ක්ලික් කිරීමෙන් එහි ඕනෑම සිටුවමක් වෙනස් කරන්න" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 #, fuzzy #| msgid "Edit structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "\"සැකිල්ල\" සබැඳිය ඔස්සේ යාමෙන් සැකිල්ල සංස්කරණය කරන්න" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "%s දත්තගබඩාව වෙත යන්න" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "%s සඳහා සිටුවම් සංස්කරණය කරන්න" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "%s වගුව වෙත යන්න" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s හි සැකිල්ල" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "%s දසුන වෙත යන්න" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9397,53 +9386,53 @@ msgstr "හෝ" msgid "web server upload directory:" msgstr "වෙබ් සේවාදායකයේ උඩුගත ඩිරෙක්ටරිය:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "සංස්කරණය/ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "පේළි %s බැගින් තවදුරටත් ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "අනතුරුව" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "නව පේළියක් ලෙස ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "දෝෂ නොසලකමින් නව පේළියක් ලෙස ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "ඇතුල් කිරීමේ විමසුම පෙන්වන්න" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "පෙර පිටුවට ආපසු යන්න" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "නව පේළියක් එක් කරන්න" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "මෙම පිටුව වෙත ආපසු යන්න" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "මීලඟ පේළිය සංස්කරණය කරන්න" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9455,11 +9444,11 @@ msgstr "" msgid "Value" msgstr "අගය" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "SQL විමසුම පෙන්වමින්" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "%1$d පේළිය ඇතුල් කරන ලදි" @@ -10337,7 +10326,7 @@ msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "වගුව හෝ දත්ත ඉවත් කරන්න" @@ -10350,32 +10339,32 @@ msgid "Delete the table (DROP)" msgstr "වගුව ඉවත් කරන්න (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "විශ්ලේෂණය" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "පරීක්ෂාව" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "ප්‍රශස්තනය" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "නැවත සෑදීම" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "ප්‍රතිසංස්කරණය" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10403,37 +10392,37 @@ msgstr "කොටස් කිරීම ඉවත් කරන්න" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "එම වගුවටම පිටපත් කල නොහැක!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "%s වගුව %s වෙතට ගෙනයන ලදි." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "%s වගුව %s වෙතට පිටපත් කරන ලදි." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "වගුවෙහි නම හිස්ව ඇත!" @@ -10609,7 +10598,7 @@ msgstr "දත්ත නික්ෂේපන විකල්ප" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "වගු සඳහා නික්ෂේප දත්ත" @@ -10633,21 +10622,21 @@ msgstr "අර්ථ දැක්වීම" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "වගුවක් සඳහා වගු සැකිල්ල" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "දසුන සඳහා සැකිල්ල" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "දසුන සැදීම සඳහා තාවකාලික සැකිල්ල" @@ -10737,7 +10726,7 @@ msgid "Database:" msgstr "දත්තගබඩාව:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "දත්ත:" @@ -10843,7 +10832,7 @@ msgid "Data creation options" msgstr "දත්ත සෑදීමේ විකල්ප" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "ඇතුල් කිරීම් වලට පෙර වගුව හිස් කරන්න" @@ -10929,7 +10918,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10975,61 +10964,61 @@ msgstr "භාවිතා වෙමින් පවතී" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "නික්ෂේපනය කරන ලද වගු සඳහා සීමා බාධක" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "වගුව සඳහා සීමා බාධක" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "නික්ෂේපනය කරන ලද වගු සඳහා සීමා බාධක" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "වගු තුල:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "ශුන්‍ය අගයන් සඳහා AUTO_INCREMENT භාවිතා නොකරන්න" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT අගයක් එක් කරන්න" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "දසුන සඳහා සැකිල්ල" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "දත්ත කියවීමේදී දෝෂයකි:" @@ -11061,7 +11050,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11083,15 +11072,15 @@ msgstr "" msgid "Column names: " msgstr "තීර නම්: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV ආනයනය සඳහා වැරදි පරාමිතියක්: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -11100,18 +11089,18 @@ msgstr "" "සැපයූ තීර නාමය (%s) වලංගු නොවේ! තීර නම් නිවැරදි අක්ෂර වින්‍යාසය සහිත බවට, උධෘත මගින් අහුරා " "ඇති බවට සහ කොමා සලකුණු වලින් වෙන් කර ඇති බවට වගබලා ගන්න." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "CSV ආනයනයේ %d පේළියේ වැරදි ආකෘතියක්." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "CSV අදානයේ %d පේළියේ වැරදි තීර ගණනකි." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "මෙම පේණුව හැකිළු ආනයන සඳහා සහාය නොදක්වයි!" @@ -11119,29 +11108,29 @@ msgstr "මෙම පේණුව හැකිළු ආනයන සඳහා msgid "MediaWiki Table" msgstr "MediaWiki වගු" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Mediawiki ආනයනයේ වැරදි ආකෘතියකි, පේළිය:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "ප්‍රතිශත පූර්ණ සංඛ්‍යා ලෙස ආනයනය කරන්න (උදා. 12.00%, .12 ලෙස)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "ව්‍යවහාර මුදල් අගයන් ආනයනය කරන්න (උදා. $5.00, 5.00 ලෙස)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" "ලබා දුන් XML ගොනුව අසම්පූර්ණ හෝ විකෘතිය. මෙම ගැටලුව නිරාකරණය කිරීමෙන් පසු නැවත උත්සාහ කරන්න." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "OpenDocument Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11151,24 +11140,24 @@ msgstr "OpenDocument පැතුරුම්පත" msgid "ESRI Shape File" msgstr "ESRI Shape ගොනුව" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "\"%s\" ESRI shape ගොනුව ආනයනය කිරීමේදී දෝෂයක් ඇති විය." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" "ඔබ ආනයනය කිරීමට උත්සාහ කල ගොනුව වලංගු නොවන එකක් හෝ එහි වලංගු දත්ත අඩංගු නොවන එකක් හෝ වේ!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL ජ්‍යාමිතික දිගුව ESRI \"%s\" වර්ගය සඳහා සහාය නොදක්වයි." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "ආනයන කල ගොනුවේ දත්ත කිසිවක් අඩංගු නොවේ!" @@ -11180,7 +11169,7 @@ msgstr "SQL ගැළපුම් ප්‍රකාරය:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "ශුන්‍ය අගයන් සඳහා AUTO_INCREMENT භාවිතා නොකරන්න" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14104,15 +14093,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14127,17 +14112,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14159,21 +14145,21 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "Title of browser window when a table is selected" msgid "The old name of the table was expected." msgstr "වගුවක් තෝරා ඇති විට බ්‍රව්සර කවුළුවේ මාතෘකාව" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14206,17 +14192,17 @@ msgstr "%1$s සිද්ධිය සාදන ලදි." msgid "Variable name was expected." msgstr "ගොනු නාම ටෙම්ප්ලේටය" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "වගුව මුලදී" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14239,17 +14225,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "පේළිය ඉවත් කරන ලදි." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14948,7 +14934,7 @@ msgstr "" msgid "Invalid table name" msgstr "වලංගු නොවන වගු නම" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15995,7 +15981,7 @@ msgid "at beginning of table" msgstr "වගුව මුලදී" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16044,7 +16030,7 @@ msgstr "කොටස් කරන ලද" msgid "Edit partitioning" msgstr "කොටස් කිරීම ඉවත් කරන්න" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "දසුන සංස්කරණය කරන්න" @@ -16167,11 +16153,11 @@ msgstr "දසුනේ නම" msgid "Column names" msgstr "තීර නම්" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "දසුනේ නම වෙනස් කරන්න" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Delete the table (DROP)" msgid "Delete the view (DROP)" @@ -17318,6 +17304,18 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ශුන්‍යයට සිටුවා ඇත" +#, fuzzy +#~| msgid "Table Search" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "වගුව තුල සෙවීම" +#~ msgstr[1] "වගුව තුල සෙවීම" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "පොත් සලකුණ ඉවත් කරන ලදි." + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/sk.po b/po/sk.po index 8e63cba691..603e22622c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-01-19 21:35+0000\n" "Last-Translator: Martin Lacina \n" "Language-Team: Slovak " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Uložiť a zavrieť" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Vynulovať" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Obnoviť všetko" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Chýbajúca položka vo formulári!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Vyberte aspoň jednu z možností!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Prosím zdajte platné číslo!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Prosím zadajte platnú dĺžku!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Pridať index" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Upraviť index" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Pridať %s polí do indexu" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Vytvoriť jedno-stĺpcový index" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Vytvoriť zložený index" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Zložený z:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Vyberte stĺpce pre index." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Musíte pridať aspoň jeden stĺpec." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Ukážka SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Simulovať dopyt" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Vyhovujúce riadky:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL dotaz:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Hodnoty Y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Názov hostiteľa je prázdny!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Meno používateľa je prázdne!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Heslo je prázdne!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Heslá sa nezhodujú!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Odstránenie vybraných používateľov" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Zavrieť" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Šablóna bola vytvorená." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Šablóna bola upravená." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Šablóna bola zmazaná." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Ostatné" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "," -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Spojenia / Procesy" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Vaše nastavenie monitoru nie je kompatibilné!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1146,155 +1151,155 @@ msgstr "" "touto verziou monitora a pravdepodobne nebude fungovať správne. Prosím, " "obnovte východzie nastavenie v ponuke Nastavenia." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Úspešnosť vyrovnávacej pamäte príkazov" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Využitie vyrovnávacej pamäte príkazov" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Využitá vyrovnávacia pamäť príkazov" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Využitie CPU" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Systémová pamäť" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Stránkovacia oblasť" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Priemerné vyťaženie" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Celková pamäť" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Vyrovnávacia pamäť" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Vyrovnávacia pamäť" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Voľná pamäť" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Využitá pamäť" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Swap celkom" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Cachovaný swap" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Využitý swap" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Voľný swap" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Odoslaných bajtov" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Prijatých bajtov" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Spojenia" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Procesy" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabuliek" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Dopyty" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Vyťaženie" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Nastavenia" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Pridať graf do mriežky" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Pridajte prosím aspoň jednu hodnotu do série!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1306,47 +1311,47 @@ msgstr "Pridajte prosím aspoň jednu hodnotu do série!" msgid "None" msgstr "Žiadny" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Obnoviť monitor" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Prerušiť monitor" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Zapnúť automatické obnovovanie" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Vypnúť automatické obnovovanie" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log a slow_query_log sú povolené." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log je povolený." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log je povolený." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log a general_log sú zakázané." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output nie je nastavený do tabuľky." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output je nastavený do tabuľky." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1357,12 +1362,12 @@ msgstr "" "sekúnd. Doporučujeme nastaviť premennú long_query_time na 0-2 sekundy, v " "závislosti na zaťažení vášho systému." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time je nastavený na %d sekúnd." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1371,30 +1376,30 @@ msgstr "" "servera:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Nastaviť log_output do %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Zapnúť %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Vypnúť %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Nastaviť long_query_time na %d sekúnd." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1402,57 +1407,57 @@ msgstr "" "Nemôžete zmeniť tieto premenné. Prihláste sa prosím ako root alebo " "kontaktujte vášho správcu databázy." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Zmeniť nastavenia" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Aktuálne nastavenia" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Názov grafu" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Rozdiely" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Vydelené s %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Jednotka" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Zo záznamu pomalých dopytov" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Z všeobecného logu" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "Názov databázy pre tento dotaz nie je známy v logoch servera." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Analyzujem záznamy" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Načítavam a analyzujem záznamy. Môže to chvíľu trvať." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Zrušiť požiadavku" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1462,7 +1467,7 @@ msgstr "" "Kritériom na zoskupenie bol len samotný SQL dopyt, takže ostatné atribúty " "dopytov, ako je napr. čas spustenia, sa môžu líšiť." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1471,35 +1476,35 @@ msgstr "" "Keďže bolo zvolené zoskupovanie INSERT dopytov, sú aj INSERT dopyty do " "rovnakej tabuľky zoskupované, bez ohľadu na vkladané dáta." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Záznamy boli načítané. V tomto časovom rozmedzí boli vykonané nasledujúce " "dopyty:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Prejsť na tabuľku so záznamami" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Žiadne dáta" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Záznamy boli skontrolované, ale v tomto časovom rozmedzí neboli nájdené " "žiadne údaje." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analyzujem…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Vysvetliť výstup" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1507,7 +1512,7 @@ msgstr "Vysvetliť výstup" msgid "Status" msgstr "Stav" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1517,58 +1522,58 @@ msgstr "Stav" msgid "Time" msgstr "Čas" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Celkový čas:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Výsledky profilovania" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabuľka" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Graf" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Nastavenie filtrovania logovacích tabuliek" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filter" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filtrovať dopyty podľa slova/regulárneho výrazu:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Zlučovať dopyty, ignorovať premenné dáta vo WHERE výraze" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Počet zlúčených riadkov:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Celkom:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Načítavam záznamy" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Obnovenie monitora zlyhalo" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1578,28 +1583,28 @@ msgstr "" "spôsobené vypršaním relácie. Problém môžete vyriešiť znovu načítaním " "stránky, alebo opätovným prihlásením." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Znovu načítať stránku" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Ovplyvnené záznamy:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Zlyhalo spracovanie konfiguračného súboru. Pravdepodobne neobsahuje platný " "JSON kód." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Nepodarilo sa vytvoriť graf z importovanej konfigurácie. Používam východzie " "nastavenia…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1608,63 +1613,63 @@ msgstr "" msgid "Import" msgstr "Import" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Importovať konfiguráciu monitora" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Prosím zvoľte súbor, ktorý chcete importovať." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Na serveri nie sú dostupné žiadne súbory na import!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Analyzovať dopyt" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Poradca" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Možné problémy s výkonom" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Problém" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Odporúčanie" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Podrobnosti o pravidle" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Zdôvodnenie" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Použitá premenná / vzorec" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Kontrola" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Formátujem SQL…" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "Parametre neboli nájdené!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1676,60 +1681,60 @@ msgstr "Parametre neboli nájdené!" msgid "Cancel" msgstr "Zrušiť" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Nastavenia stránky" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Použiť" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Načítanie…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Požiadavka bola prerušená!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "Prebieha spracovanie požiadavky" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "Požiadavka zlyhala!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Chyba pri spracovaní požiadavky" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Číslo chyby: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Text chyby: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Neboli vybrané žiadne databázy." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Odstraňujem stĺpec" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Pridávam primárny kľúč" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1739,55 +1744,55 @@ msgstr "Pridávam primárny kľúč" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Kliknutím zatvoríte túto správu" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Premenovávam databázy" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Kopírujem databázu" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Mením znakovú sadu" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Povoliť kontrolu cudzích kľúčov" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Nepodarilo sa zístiť skutočný počet riadkov." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Vyhľadávam" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Skryť výsledky vyhľadávania" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Zobraziť výsledky vyhľadávania" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Prechádzať" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Odstraňujem" -#: js/messages.php:391 +#: js/messages.php:393 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:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1803,45 +1808,45 @@ msgstr "Definícia uloženej funkcie musí obsahovať príkaz RETURN!" msgid "Export" msgstr "Exportovať" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "Upraviť ENUM/SET" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Hodnoty pre pole %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Hodnoty pre nový stĺpec" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Zadajte každú hodnotu do samostatného poľa." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Pridať %d hodnôt" -#: js/messages.php:403 +#: js/messages.php:405 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:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Skryť vyhľadávacie pole" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Zobrazit vyhľadávacie pole" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1851,7 +1856,7 @@ msgstr "Zobrazit vyhľadávacie pole" msgid "Edit" msgstr "Upraviť" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1862,56 +1867,56 @@ msgstr "Upraviť" msgid "Delete" msgstr "Zmazať" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 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:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Prejsť hodnoty cudzích kľúčov" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Žiadny automaticky uložený dopyt" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Premenná %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Zvoliť" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Volič stĺpcov" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Hľadať v tomto zozname" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "Zobraziť viac" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Ste si istí?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1919,51 +1924,51 @@ msgstr "" "Táto akcia môže zmeniť niektoré definície stĺpcov.
Naozaj chcete " "pokračovať?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Pokračovať" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Pridať primárny kľúč" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Bol pridaný primárny kľúč." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Vezmeme vás na ďalší krok…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Koniec kroku" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Druhý krok normalizácie (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Hotovo" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Potvrdiť čiastočné závislosti" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Vybrané čiastočné závislostí sú nasledovné:" -#: js/messages.php:444 +#: js/messages.php:446 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 +1976,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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Neboli vybrané žiadne čiastkové závislosti!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Skryť zoznam čiastočných závislostí" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1991,41 +1996,41 @@ 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:456 +#: js/messages.php:458 msgid "Step" msgstr "Krok" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Vykonajú sa nasledovné akcie:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "Odstrániť stĺpce %s z tabuľky %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Vytvoriť nasledujúcu tabuľku" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Tretí krok normalizácie (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Potvrdiť prechodné závislostí" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Boli zvolené nasledujúce závislosti:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Neboli vybrané žiadne závislosti!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2035,122 +2040,122 @@ msgstr "Neboli vybrané žiadne závislosti!" msgid "Save" msgstr "Uložiť" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Skryť parametre vyhľadávania" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Zobraziť parametre vyhľadávania" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Rozsah vyhľadávania" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Najväčšia hodnota stĺpca:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Najmenšia hodnota stĺpca:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Minimálna hodnota:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Maximálna hodnota:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Skryť kritériá vyhľadávania" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Zobraziť kritériá vyhľadávania" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Každý bod reprezentuje riadok dát." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Pohybom myši nad bodom zobrazíte jeho názov." -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Pre priblíženie kliknite na sekciu grafu." -#: js/messages.php:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Zvoľte dva stĺpce" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Zvoľte dva rôzne stĺpce" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Obsah datového bodu" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignorovať" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Kopírovať" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Bod" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Linka" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Polygón" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "Vnútorný obrys" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Vonkajší obrys" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Chcete skopírovať šifrovací kľúč?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Šifrovací kľúč" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2158,24 +2163,24 @@ msgstr "" "Hovorí, že ste vykonali zmeny na tejto stránke; budete vyzvaní k potvrdeniu " "pred zahodením zmien" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Zvoliť odkazovaný kľúč" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Zvoliť cudzí kľúč" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Zvoľte, prosím, primárny alebo unikátny kľúč!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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?" @@ -2183,117 +2188,117 @@ msgstr "" "Neuložili ste zmeny v schéme. Ak ich neuložíte, tieto zmeny budú stratené. " "Chcete pokračovať?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Názov stránky" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Otvoriť stránku" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Zmazať stránku" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Nepomenovaná" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Prosím zvoľte si stránku, kde chcete pokračovať" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Prosím zadajte platný názov stránky" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "Chcete uložiť zmeny aktuálnej stránky?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Stránka bola odstránená" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Exportovať relačnú schému" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Zmeny boli uložené" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Pridať voľbu pre stĺpec \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "Bolo vytvorených %d objektov." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Odošli" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Klávesou ESC ukončíte upravovanie." -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Usporiadajte pretiahnutím." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Kliknutím zoradíte výsledky podľa tohto stĺpca." -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Kliknite pre označenie/odznačenie." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Dvakrát kliknite pre skopírovanie názvu stĺpca." -#: js/messages.php:574 +#: js/messages.php:576 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Zobraziť všetko" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2302,11 +2307,11 @@ msgstr "" "zaškrtávanie, úprava, kopírovanie a mazanie liniek nemusí fungovať po " "uložení." -#: js/messages.php:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2314,100 +2319,100 @@ 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:587 +#: js/messages.php:589 msgid "Original length" msgstr "Originálna dĺžka" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "zrušiť" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Prerušené" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Úspech" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Stav importu" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Presuňte súbory sem" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Najprv vyberte databázu" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Vytlačiť" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Prejsť na odkaz:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Kopírovať názov stĺpca." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Vytvoriť heslo" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Vytvoriť" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Viac" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Zobraziť panel" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Skryť panel" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Zobraziť skryté položky navigácie." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Prepojiť s hlavným panelom" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Zrušiť prepojenie s hlavným panelom" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2417,41 +2422,41 @@ msgstr "" "Najnovšia verzia je %s a bola vydaná %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", posledná stabilná verzia:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "aktuálna" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Vytvoriť pohľad" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Poslať chybové hlásenie" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Odoslať chybové hlásenie" -#: js/messages.php:656 +#: js/messages.php:658 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:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Zmeniť nastavenia hlásení" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Zobraziť podrobnosti hlásenia" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2459,7 +2464,7 @@ msgstr "" "Export nie je kompletný kvôli krátkemu času vykonávania (execution time) v " "nastaveniach PHP!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2468,58 +2473,58 @@ 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Na serveri boli zistené chyby!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Prosím, pozrite sa na spodnú časť okna." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Ignorovať všetko" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Vykonať tento dopyt znovu?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Naozaj chcete odstrániť túto záložku?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, 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:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Zobraziť argumenty" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Skryť argumenty" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Ubehnutý čas:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2528,353 +2533,353 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 msgid "Copy tables to" msgstr "Skopírovať tabuľky do" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Pridať prefix tabuľky:" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Nahradiť predponu tabuľky" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Skopírovať tabuľku s predponou" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Predchádzajúci" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Ďalší" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Dnes" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Január" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Február" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Marec" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Apríl" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Máj" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Jún" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Júl" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "August" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "September" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Október" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "November" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Dec" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Nedeľa" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Pondelok" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Utorok" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Streda" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Štvrtok" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Piatok" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Po" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Út" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "St" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Št" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Pi" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Ut" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Št" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Pi" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "kalendár-mesiac-rok" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "žiadny" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Hodiny" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minúty" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Sekundy" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Toto pole je povinné" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Prosím opravte toto pole" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Prosím zadajte platnú emailovú adresu" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Prosím zdajte platnú adresu URL" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Prosím zadajte platný dátum" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Prosím zadajte platný dátum ( ISO )" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Prosím zadajte platné číslo" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Prosím zadajte platné číslo kreditnej karty" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Prosím zadajte iba čísla" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Prosím zadajte tú istú hodnotu ešte raz" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Prosím zadajte nie viac ako {0} znakov" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Prosím zadajte najmenej {0} znakov" -#: js/messages.php:915 +#: js/messages.php:917 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:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Prosím zadajte hodnotu medzi {0} a {1}" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "Prosím zadajte hodnotu menšiu alebo rovnú {0}" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "Prosím zadajte hodnotu väčšiu alebo rovnú {0}" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Prosím zadajte platný dátum alebo čas" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Prosím zdajte platný HEX vstup" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Chyba" @@ -2927,34 +2932,34 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" "Neočakávaný znak na riadku %1$s. Očakáva sa TAB, ale našlo sa \"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Existujúci konfiguračný súbor (%s) nie je čitateľný." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Konfiguračný súbor má zlé prístupové práva, nemal by byť zapisovateľný pre " "všetkých!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Veľkosť písma" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Zbaliť" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Rozbaliť" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Znovu spustiť dopyt" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2974,77 +2979,60 @@ msgstr "Databáza" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Spolu %d záložka" -msgstr[1] "Spolu %d záložky" -msgstr[2] "Spolu %d záložiek" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "súkromne" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "zdieľaný" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "Zahrnuté záložky %1$s, %2$s a %3$s" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Žiadne záložky" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Počas aktuálnej relácie" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Vysvetliť" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profilovanie" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Záložka" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Dopyt zlyhal" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Čas behu" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "Konzola pre SQL dopyty" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Konzola" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Vyčistiť" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "História" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3062,141 +3050,141 @@ msgstr "História" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Nastavenia" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Záložky" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Ladiť SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Stlačte Ctrl+Enter pre spustenie dopytu" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Stlačte Enter pre spustenie dopytu" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "vzostupne" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "zostupne" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Poradie:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Počet" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Poradie vykonávania" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Ubehnutý čas" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Zoradiť podľa:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Zoskupiť dopyty" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Zrušiť zoskupenie dopytov" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Zobraziť trasovacie informácie" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Skryť trasovacie informácie" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Počet:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Obnoviť" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Pridať" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Pridať záložku" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Názov" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Cieľová databáza" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Zdieľať túto záložku" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Nastaviť predvolené" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Vždy rozbaliť správy dopytu" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Zobraziť históriu dopytov na začiatku" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Zobraziť aktuálne prehliadaný dopyt" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Prepnúť na tmavú tému" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Nepodarilo sa načítať konfiguračný súbor!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3204,19 +3192,19 @@ msgstr "" "Server neodpovedá (alebo socket lokálneho MySQL servera nie je správne " "nastavený)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Server neodpovedá." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 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:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Podrobnosti…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "Nepodarilo sa pripojiť ku controluser podľa nastavení z konfigurácie." @@ -3529,7 +3517,7 @@ msgstr "Môže byť nepresné. Viď [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "SQL dopyt bol úspešne vykonaný." @@ -3651,16 +3639,16 @@ msgstr "Nahrávanie súboru bolo zastavené rozšírením." msgid "Unknown error in file upload." msgstr "Neznáma chyba pri nahrávaní súboru." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Chyba pri presune nahrávaného súboru, pozri[doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Chyba pri presúvaní nahraného súboru." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Nahraný súbor sa nedá prečítať." @@ -3724,8 +3712,8 @@ msgid "Keyname" msgstr "Kľúčový názov" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3775,13 +3763,13 @@ msgstr "Index pre %s bol odstránený." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Odstrániť" @@ -3881,7 +3869,7 @@ msgstr "Oprávnenia" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operácie" @@ -3896,7 +3884,7 @@ msgstr "Sledovanie" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4277,11 +4265,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "Nebola nájdená platná cesta k obrázkom pre vzhľad %s!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Náhľad nie je dostupný." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "zvoliť" @@ -4594,21 +4582,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Priestorový objekt" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Maximálna veľkosť: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Statická analýza:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4619,32 +4607,32 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL hlási: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Vysvetliť SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Preskočiť vysvetlenie SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "Bez PHP kódu" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "Odošli dopyt" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Vytvoriť PHP kód" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Upraviť v riadku" @@ -4732,6 +4720,10 @@ msgstr "za hodinu" msgid "per day" msgstr "za deň" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "zdieľaný" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Hľadať:" @@ -4836,11 +4828,11 @@ msgstr "Pridať nový stĺpec" msgid "Attributes" msgstr "Atribúty" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Nepodarilo sa načítať konfiguračný súbor!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4848,31 +4840,31 @@ msgstr "" "Toto je často spôsobené syntaktickou chybou v súbore, prosím skontrolujte " "chyby vypísané nižšie." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nepodarilo sa načítať prednastavenú konfiguráciu zo súboru: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Chybný index servera: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Chybné meno servera %1$s. Prosím, skontrolujte konfiguráciu." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "V konfigurácii je nastavená nesprávna autentifikačná metóda:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4880,24 +4872,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format 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:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Chyba: Nesprávny token" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Pokus o prepísanie GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "možný pokus o exploit" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "zistený číselný kľúč" @@ -5604,13 +5596,13 @@ msgstr "Pridať názvy polí na prvý riadok" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Polia uzatvorené do" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Polia uvedené pomocou" @@ -5628,12 +5620,12 @@ msgstr "Odstrániť konce riadkov (CRLF) z polí" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Stĺpce ukončené" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Riadky ukončené" @@ -6215,7 +6207,7 @@ msgid "Column names in first row" msgstr "Mená stĺpcov na prvom riadku" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Neimportovať prázdne riadky" @@ -7744,7 +7736,7 @@ msgid "Table %s has been emptied." msgstr "Tabuľka %s bola vyprázdená." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Pohľad %s bol odstránený." @@ -7878,8 +7870,8 @@ msgid "No data to display" msgstr "Žiadne dáta" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7918,52 +7910,52 @@ msgstr[2] "" msgid "No column selected." msgstr "Nebol vybraný žiadny stĺpec." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Stĺpce boli úspešne presunuté." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Chyba dopytu" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Zmeniť" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Index" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Celý text" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Odlišné hodnoty" @@ -7973,7 +7965,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Chýba rozšírenie %s. Skontrolujte prosín nastavenia PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Žiadna zmena" @@ -8738,54 +8730,54 @@ msgstr "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Upraviť štruktúru kliknutím na odkaz \"Štruktúra\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Prejsť do databázy: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Upraviť nastavenia pre %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Prejsť na tabuľku: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Štruktúra %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Prejsť na pohľad: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8831,48 +8823,48 @@ msgstr "Alebo" msgid "web server upload directory:" msgstr "upload adresár web serveru:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Upraviť/Vložiť" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "a potom" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Vložiť ako nový riadok" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Vložiť ako nový riadok a ignorovať chyby" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Zobraziť insert dopyt" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Späť" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Vložiť nový záznam" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Späť na túto stránku" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Upraviť nasledujúci riadok" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -8882,7 +8874,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8894,11 +8886,11 @@ msgstr "" msgid "Value" msgstr "Hodnota" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Zobrazujem SQL dotaz" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Vložený riadok id: %1$d" @@ -9721,7 +9713,7 @@ msgstr "Opraviť tabuľku" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Odstrániť dáta alebo tabuľku" @@ -9734,32 +9726,32 @@ msgid "Delete the table (DROP)" msgstr "Odstrániť tabuľku (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analyzovať" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Skontrolovať" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimalizovať" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Opraviť" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9785,35 +9777,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "Skontrolovať referenčnú integritu:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Nedá sa presunúť tabuľka sama do seba!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Nedá sa skopírovať tabuľka sama do seba!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabuľka %s bola presunutá do %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabuľka %s bola skorírovaná do %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Tabuľka je prázdna!" @@ -9988,7 +9980,7 @@ msgstr "Možnosti uloženia dát" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Sťahujem dáta pre tabuľku" @@ -10012,21 +10004,21 @@ msgstr "Definícia" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Štruktúra tabuľky pre tabuľku" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Štruktúra pre zobrazenie" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10116,7 +10108,7 @@ msgid "Database:" msgstr "Databáza:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Dáta:" @@ -10215,7 +10207,7 @@ msgid "Data creation options" msgstr "Možnosti vytvárania údajov" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Vyprázdniť tabuľku pred vložením" @@ -10286,7 +10278,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10328,52 +10320,52 @@ msgstr "práve sa používa" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Obmedzenie pre exportované tabuľky" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Obmedzenie pre tabuľku" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Kľúče pre exportované tabuľky" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indexy pre tabuľku" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT pre exportované tabuľky" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT pre tabuľku" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPY PRE TABUĽKU" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "PREPOJENIA PRE TABUĽKU" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Chyba pri čítaní dát:" @@ -10403,7 +10395,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10421,33 +10413,33 @@ msgstr "" msgid "Column names: " msgstr "Názvy stĺpcov: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Chybný parameter pre CSV import: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Chybný formát v CSV vstupe na riadku %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Chybný počet položiek v CSV vstupe na riadku %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Tento plug-in nepodporuje import komprimovaných súborov!" @@ -10455,22 +10447,22 @@ msgstr "Tento plug-in nepodporuje import komprimovaných súborov!" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Chybný formát vo vstupe z mediawiki na riadku:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10478,7 +10470,7 @@ msgstr "" "Zadaný XMl súbor mal zlý formát alebo bol poškodený. Opravte problém a " "skúste to znovu." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Nepodarilo sa spracovať pracovný hárok OpenDocument!" @@ -10486,23 +10478,23 @@ msgstr "Nepodarilo sa spracovať pracovný hárok OpenDocument!" msgid "ESRI Shape File" msgstr "ESRI Shape súbor" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Vyskytla sa chyba pri importe ESRI shape súboru : \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Nahraný súbor neobsahuje žiadne dáta!" @@ -10514,7 +10506,7 @@ msgstr "Režim kompatibility SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nepoužívať AUTO_INCREMENT pre nulové hodnoty" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13408,15 +13400,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Bola očakávaná čiarka alebo uzatváracia zátvorka." @@ -13429,17 +13417,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Bol očakávaný alias." @@ -13457,19 +13446,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Bolo očakávané staré meno tabuľky." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Bolo očakávané nové meno tabuľky." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Očakávala sa operácia premenovania." @@ -13496,15 +13485,15 @@ msgstr "Udalosť %1$s bola vytvorená." msgid "Variable name was expected." msgstr "Očakávalo sa meno premennej." -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Neočakávaný začiatok výrazu." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13527,17 +13516,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Očakávala sa aspoň jedna definícia stĺpca." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14210,7 +14199,7 @@ msgstr "Zobraziť dump (schému) tabuľky" msgid "Invalid table name" msgstr "Chybné meno tabuľky" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15165,7 +15154,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:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Oddiely" @@ -15207,7 +15196,7 @@ msgstr "Pozícia" msgid "Edit partitioning" msgstr "Upraviť v riadku" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Upraviť zobrazenie" @@ -15326,11 +15315,11 @@ msgstr "Meno pohľadu" msgid "Column names" msgstr "Názvy stĺpcov" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Premenovať pohľad na" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Odstrániť zobrazenie (DROP)" @@ -16416,6 +16405,18 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastavené na 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Spolu %d záložka" +#~ msgstr[1] "Spolu %d záložky" +#~ msgstr[2] "Spolu %d záložiek" + +#~ msgid "private" +#~ msgstr "súkromne" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "Zahrnuté záložky %1$s, %2$s a %3$s" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/sl.po b/po/sl.po index 09f1d4f5c2..cc7a7115d7 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,17 +3,17 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-02-08 14:36+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 @@ -48,7 +48,7 @@ msgid "Table comments:" msgstr "Pripombe tabele:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -102,7 +102,7 @@ msgstr "Vrsta" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -164,16 +164,16 @@ msgid "Comments" msgstr "Pripombe" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Primarni" -#: db_datadict.php:165 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:376 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:141 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:446 @@ -197,17 +197,17 @@ msgstr "Primarni" msgid "No" msgstr "Ne" -#: db_datadict.php:165 js/messages.php:519 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:521 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:143 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -261,7 +261,7 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -409,23 +409,23 @@ msgid "Point:" msgstr "Točka:" #: gis_data_editor.php:216 gis_data_editor.php:243 gis_data_editor.php:299 -#: gis_data_editor.php:372 js/messages.php:508 +#: gis_data_editor.php:372 js/messages.php:510 msgid "X" msgstr "X" #: gis_data_editor.php:219 gis_data_editor.php:247 gis_data_editor.php:303 -#: gis_data_editor.php:378 js/messages.php:509 +#: gis_data_editor.php:378 js/messages.php:511 msgid "Y" msgstr "Y" #: gis_data_editor.php:241 gis_data_editor.php:297 gis_data_editor.php:370 -#: js/messages.php:511 +#: js/messages.php:513 #, php-format msgid "Point %d" msgstr "Točka %d" #: gis_data_editor.php:254 gis_data_editor.php:310 gis_data_editor.php:388 -#: js/messages.php:517 +#: js/messages.php:519 msgid "Add a point" msgstr "Dodaj točko" @@ -447,7 +447,7 @@ msgstr "Notranji obroč %d:" msgid "Add a linestring" msgstr "Dodaj daljico" -#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:518 +#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:520 msgid "Add an inner ring" msgstr "Dodaj notranji obroč" @@ -464,12 +464,12 @@ msgstr "Dodaj večkotnik" msgid "Add geometry" msgstr "Dodaj geometrijo" -#: gis_data_editor.php:411 js/messages.php:349 libraries/DbSearch.php:463 +#: gis_data_editor.php:411 js/messages.php:351 libraries/DbSearch.php:463 #: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:139 #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -499,7 +499,7 @@ msgstr "Dodaj geometrijo" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Izvedi" @@ -519,7 +519,7 @@ msgstr "" msgid "Succeeded" msgstr "Uspelo" -#: import.php:58 js/messages.php:592 +#: import.php:58 js/messages.php:594 msgid "Failed" msgstr "Spodletelo" @@ -527,7 +527,7 @@ msgstr "Spodletelo" msgid "Incomplete params" msgstr "Nepopolni parametri" -#: import.php:184 +#: import.php:185 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -536,15 +536,15 @@ msgstr "" "Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, da si v " "%sdokumentaciji%s ogledate načine, kako obiti omejitev." -#: import.php:360 import.php:665 +#: import.php:361 import.php:666 msgid "Showing bookmark" msgstr "Prikazovanje zaznamka" -#: import.php:376 import.php:661 +#: import.php:377 import.php:662 msgid "The bookmark has been deleted." msgstr "Zaznamek je odstranjen." -#: import.php:474 +#: import.php:475 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -553,12 +553,12 @@ msgstr "" "Naložene datoteke ne morem premakniti, ker ima strežnik omogočen " "open_basedir brez dostopa do mape %s (za začasne datoteke)." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:491 import.php:568 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "Ne morem prebrati datoteke!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:502 import.php:517 import.php:542 import.php:557 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -567,7 +567,7 @@ msgstr "" "Poskušali ste naložiti datoteko z nepodprtim stiskanjem (%s). Bodisi podpora " "za njega ni vključena ali pa je onemogočena z vašo konfiguracijo." -#: import.php:574 +#: import.php:575 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -577,22 +577,27 @@ msgstr "" "je velikost datoteke presegala največjo velikost, dovoljeno v konfiguraciji " "PHP. Glej [doc@faq1-16]FAQ 1.16[/doc]." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:627 libraries/display_import.lib.php:662 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:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:669 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "Ustvaril sem zaznamek %s." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." +#: import.php:679 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." +msgstr[1] "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." +msgstr[2] "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." +msgstr[3] "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." -#: import.php:705 +#: import.php:710 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -601,7 +606,7 @@ msgstr "" "Časovna omejitev skripta je potekla; če želite končati uvoz, prosimo, " "%sponovno pošljite isto datoteko%s in uvoz se bo nadaljeval." -#: import.php:715 +#: import.php:720 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -614,8 +619,8 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Ne morem naložiti napredka uvoza." -#: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: import_status.php:116 js/messages.php:450 js/messages.php:602 +#: libraries/Util.php:795 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Nazaj" @@ -639,7 +644,7 @@ msgstr "" msgid "General settings" msgstr "Splošne nastavitve" -#: index.php:191 js/messages.php:625 +#: index.php:191 js/messages.php:627 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:287 msgid "Change password" @@ -711,10 +716,11 @@ msgstr "Pokaži podatke o PHP" msgid "Version information:" msgstr "Podatki o različici:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:442 libraries/Util.php:509 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Dokumentacija" @@ -845,95 +851,95 @@ msgstr "" "Strežnik, ki teče z Suhosin. Prosimo, nanašajte se na %sdokumentacijo%s za " "morebitna vprašanja." -#: js/messages.php:39 libraries/import.lib.php:207 sql.php:161 +#: js/messages.php:41 libraries/import.lib.php:207 sql.php:161 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Poizvedbe \"DROP DATABASE\" so izključene." -#: js/messages.php:45 +#: js/messages.php:47 msgid "Confirm" msgstr "Potrdi" -#: js/messages.php:46 +#: js/messages.php:48 #, php-format msgid "Do you really want to execute \"%s\"?" msgstr "Ali res želite izvesti \"%s\"?" -#: js/messages.php:48 libraries/mult_submits.lib.php:440 +#: js/messages.php:50 libraries/mult_submits.lib.php:440 msgid "You are about to DESTROY a complete database!" msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!" -#: js/messages.php:50 +#: js/messages.php:52 msgid "You are about to DESTROY a complete table!" msgstr "S tem dejanjem boste UNIČILI celotno tabelo!" -#: js/messages.php:52 +#: js/messages.php:54 msgid "You are about to TRUNCATE a complete table!" msgstr "S tem dejanjem boste IZPRAZNILI celotno tabelo!" -#: js/messages.php:53 +#: js/messages.php:55 msgid "Delete tracking data for this table?" msgstr "Izbrišemo podatke sledenja te tabele?" -#: js/messages.php:55 +#: js/messages.php:57 msgid "Delete tracking data for these tables?" msgstr "Izbrišemo podatke sledenja teh tabel?" -#: js/messages.php:57 +#: js/messages.php:59 msgid "Delete tracking data for this version?" msgstr "Izbrišemo podatke sledenja te različice?" -#: js/messages.php:59 +#: js/messages.php:61 msgid "Delete tracking data for these versions?" msgstr "Izbrišemo podatke sledenja teh različic?" -#: js/messages.php:60 +#: js/messages.php:62 msgid "Delete entry from tracking report?" msgstr "Izbrišem vnos iz poročila o sledenju?" -#: js/messages.php:61 +#: js/messages.php:63 msgid "Deleting tracking data" msgstr "Brisanje podatkov sledenja" -#: js/messages.php:62 +#: js/messages.php:64 msgid "Dropping Primary Key/Index" msgstr "Brisanje primarnega ključa/indeksa" -#: js/messages.php:63 +#: js/messages.php:65 msgid "Dropping Foreign key." msgstr "Zavrgel bom tuji ključ." -#: js/messages.php:65 +#: js/messages.php:67 msgid "This operation could take a long time. Proceed anyway?" msgstr "Operacija lahko traja dolgo časa. Vseeno nadaljujem?" -#: js/messages.php:67 +#: js/messages.php:69 #, php-format msgid "Do you really want to delete user group \"%s\"?" msgstr "Ali res želite izbrisati uporabniško skupino »%s«?" -#: js/messages.php:69 +#: js/messages.php:71 #, php-format msgid "Do you really want to delete the search \"%s\"?" msgstr "Ali res želite izbrisati iskanje »%s«?" -#: js/messages.php:71 +#: js/messages.php:73 msgid "You have unsaved changes; are you sure you want to leave this page?" msgstr "" "Imate neshranjene spremembe; ste prepričani, da želite zapustiti stran?" -#: js/messages.php:73 +#: js/messages.php:75 msgid "Do you really want to revoke the selected user(s) ?" msgstr "Ali res želite izbrisati izbrane uporabnike?" -#: js/messages.php:75 +#: js/messages.php:77 msgid "Do you really want to delete this central column?" msgstr "Ali res želite izbrisati ta osrednji stolpec?" -#: js/messages.php:77 +#: js/messages.php:79 msgid "Do you really want to delete the selected items?" msgstr "Ali res želite izbrisati izbrane vnose?" -#: js/messages.php:79 +#: js/messages.php:81 msgid "" "Do you really want to DROP the selected partition(s)? This will also DELETE " "the data related to the selected partition(s)!" @@ -941,19 +947,19 @@ msgstr "" "Ali res želite IZBRISATI izbrane razdelke? To bo tudi IZBRISALO podatke, " "povezane z izbranimi razdelki!" -#: js/messages.php:83 +#: js/messages.php:85 msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "Ali res želite IZPRAZNITI izbrane razdelke?" -#: js/messages.php:85 +#: js/messages.php:87 msgid "Do you really want to remove partitioning?" msgstr "Ali res želite odstraniti razdelitev?" -#: js/messages.php:86 +#: js/messages.php:88 msgid "Do you really want to RESET SLAVE?" msgstr "Ali res želite RESET SLAVE?" -#: js/messages.php:88 +#: js/messages.php:90 msgid "" "This operation will attempt to convert your data to the new collation. In " "rare cases, especially where a character doesn't exist in the new collation, " @@ -967,17 +973,17 @@ msgstr "" "pravilno; v tem primeru vam predlagamo, da podatke povrnete v izvorno " "razvrščanje in si ogledate namige na " -#: js/messages.php:94 +#: js/messages.php:96 msgid "Garbled Data" msgstr "Popačeni podatki" -#: js/messages.php:96 +#: js/messages.php:98 msgid "Are you sure you wish to change the collation and convert the data?" msgstr "" "Ste prepričani, da želite spremeniti pravilo za razvrščanje znakov in " "pretvoriti podatke?" -#: js/messages.php:98 +#: js/messages.php:100 msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -993,7 +999,7 @@ msgstr "" "predlagamo, da uporabite funkcionalnost urejanja stolpcev (povezava " "»Spremeni«) na strani strukture tabele." -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1001,160 +1007,160 @@ msgstr "" "Ste prepričani, da želite spremeniti vsa pravila za razvrščanje znakov v " "stolpcih in pretvoriti podatke?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Shrani in zapri" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Ponastavi" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Ponastavi vse" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "V obliki manjka vrednost!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Izberite vsaj eno možnost!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Prosimo, vnesite veljavno število!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Prosimo, vnesite veljavno dolžino!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Dodaj indeks" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Uredi indeks" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Dodaj %s stolpec(-cev) k indeksu" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Ustvari enostolpični indeks" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Ustvari sestavljen indeks" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Ustvari z:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Prosimo, izberite stolpce za indeks." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Dodati morate vsaj en stolpec." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Predogled SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Simuliraj poizvedbo" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Ujemajoče vrstice:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "Poizvedba SQL:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Vrednosti y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Ime gostitelja je prazno!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Uporabniško ime je prazno!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Geslo je prazno!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Gesli se ne ujemata!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Odstranjevanje izbranih uporabnikov" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Zapri" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Predlogo smo ustvarili." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Predlogo smo naložili." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Predlogo smo posodobili." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Predlogo smo izbrisali." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Drugo" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "," -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Povezave / Procesi" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Konfiguracija lokalnega nadziranja ni združljiva!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1166,155 +1172,155 @@ msgstr "" "je, da vaša trenutna konfiguracija ne bo več delovala. Prosimo, ponastavite " "svojo konfiguracijo na privzeto v meniju Nastavitve." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Učinkovitost predpomnilnika poizvedb" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Uporaba predpomnilnika poizvedb" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Uporabljenega predpomnilnika poizvedb" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Uporaba sistemskega CPU" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Sistemski pomnilnik" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Sistemska izmenjava" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Povprečna obremenitev" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Skupni pomnilnik" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Predpomnjen pomnilnik" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Medpomnjen pomnilnik" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Prost pomnilnik" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Uporabljen pomnilnik" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Skupna izmenjava" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Predpomnjena izmenjava" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Uporabljena izmenjava" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Prosta izmenjava" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Poslanih bajtov" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Prejetih bajtov" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Povezave" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Procesi" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabel(a)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Vprašanja" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Promet" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Nastavitve" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Dodaj grafikon na mrežo" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Prosimo, da v serijo dodate vsaj eno spremenljivko!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1326,47 +1332,47 @@ msgstr "Prosimo, da v serijo dodate vsaj eno spremenljivko!" msgid "None" msgstr "Brez" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Nadaljuj nadziranje" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Postoj nadziranje" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Začni s samodejnim osveževanjem" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Ustavi samodejno osveževanje" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log in slow_query_log sta omogočena." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log je omogočen." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log je omogočen." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log in general_log sta onemogočena." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output ni nastavljen na TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output je nastavljen na TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1377,12 +1383,12 @@ msgstr "" "trajajo več kot %d sekund. Priporočljivo je, da nastavite long_query_time na " "0–2 sekundi, odvisno od vašega sistema." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time je nastavljen na %d sekund(o)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1391,30 +1397,30 @@ msgstr "" "privzeto vrednost ob ponovnem zagonu strežnika:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Nastavi log_output na %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Omogoči %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Onemogoči %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Nastavi long_query_time na %d sekund." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1422,57 +1428,57 @@ msgstr "" "Teh spremenljivk ne morete spremeniti. Prosimo, prijavite se kot root ali " "stopite v stik z upravljavcem vaše zbirke podatkov." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Spremeni nastavitve" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Trenutne nastavitve" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Naslov grafikona" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Razlika" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Deljeno z %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Enota" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Iz počasnega dnevnika" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Iz splošnega dnevnika" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "Ime zbirke podatkov ni znano za to poizvedbo v dnevnikih strežnika." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Analiziranje dnevnikov" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Analiziranje in nalaganje dnevnikov. To lahko traja nekaj časa." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Prekliči zahtevo" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1482,7 +1488,7 @@ msgstr "" "zbirni pogoj je bila uporabljena le sama poizvedba SQL, zato se lahko drugi " "atributi poizvedb, npr. začetni čas, razlikujejo." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1491,33 +1497,33 @@ msgstr "" "Ker je izbrano zbiranje poizvedb INSERT, so poizvedbe INSERT iste tabele " "prav tako zbrane skupaj, ne glede na vstavljene podatke." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Podatki dnevnika so naloženi. Poizvedbe, izvedene v tem časovnem razponu:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Pojdi v dnevniško tabelo" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Našel nisem nobenih podatkov" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Dnevnik je analiziran, vendar v tem časovnem razponu nisem našel podatkov." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analiziranje…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Razloži izhod" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1525,7 +1531,7 @@ msgstr "Razloži izhod" msgid "Status" msgstr "Stanje" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1535,58 +1541,58 @@ msgstr "Stanje" msgid "Time" msgstr "Čas" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Skupni čas:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Profiliranje rezultatov" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabela" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Grafikon" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Možnosti filtra dnevnikov tabel" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filtriranje" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filtriraj poizvedbe po besedi/regexp:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Združi poizvedbe, neupoštevajoč spremenljive podatke v stavkih WHERE" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Seštevek združenih vrstic:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Skupaj:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Dnevniki nalaganja" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Osvežitev nadziranja je spodletela" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1596,28 +1602,28 @@ msgstr "" "se je najverjetneje zgodilo, ker je vaša seja potekla. Ponovno nalaganje " "strani in ponovni vnos poveril bi morala pomagati." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Ponovno naloži stran" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Spremenjene vrstice:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Razčlenjevalne konfiguracijske datoteke je spodletelo. Kot kaže, ni veljavna " "koda JSON." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Gradnja grafikona z uvoženo konfiguracijo je spodletela. Ponastavljanje na " "privzeto konfiguracijo…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1626,63 +1632,63 @@ msgstr "" msgid "Import" msgstr "Uvozi" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Uvozi konfiguracijo nadziranja" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Prosimo, izberite datoteko, ki jo želite uvoziti." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Na strežniku ni na voljo nobena datoteka za uvoz!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Analiziraj poizvedbo" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Svetovalni sistem" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Morebitni spori zmogljivosti" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Spor" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Priporočilo" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Podrobnosti pravila" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Utemeljitev" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Uporabljena spremenljivka/formula" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Preizkus" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Oblikovanje SQL …" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "Nismo našli nobenih parametrov!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1694,60 +1700,60 @@ msgstr "Nismo našli nobenih parametrov!" msgid "Cancel" msgstr "Prekliči" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Nastavitve, povezane s stranjo" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Uveljavi" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Nalaganje…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Zahteva je prekinjena!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "Obdelovanje zahteve" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "Zahteva je spodletela!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Napaka v obdelovanju zahteve" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Koda napake: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Besedilo napake: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Ni izbranih zbirk podatkov." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Brisanje stolpca" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Dodajanje primarnega ključa" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1757,55 +1763,55 @@ msgstr "Dodajanje primarnega ključa" msgid "OK" msgstr "V redu" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Kliknite, da prezrete obvestilo" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Preimenovanje zbirk podatkov" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Kopiranje zbirke podatkov" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Spreminjanje nabora znakov" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Omogoči preverjanja tujih ključev" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Pridobivanje pravega števila vrstic je spodletelo." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Iskanje" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Skrij rezultate iskanja" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Prikaži rezultate iskanja" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Brskanje" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Brisanje" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Opredelitev shranjene funkcije mora vsebovati izjavo RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1821,44 +1827,44 @@ msgstr "Opredelitev shranjene funkcije mora vsebovati izjavo RETURN!" msgid "Export" msgstr "Izvozi" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "Urejevalnik ENUM/SET" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Vrednosti stolpca %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Vrednosti novega stolpca" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Vnesite vsako vrednost v svoje polje." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Dodaj %d vrednost(i)" -#: js/messages.php:403 +#: js/messages.php:405 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:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Skrij polje poizvedbe" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Prikaži polje poizvedbe" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1868,7 +1874,7 @@ msgstr "Prikaži polje poizvedbe" msgid "Edit" msgstr "Uredi" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1879,41 +1885,41 @@ msgstr "Uredi" msgid "Delete" msgstr "Izbriši" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 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:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Prebrskaj tuje vrednosti" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Ni nobene samodejno shranjene poizvedbe" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Spremenljivka %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Izberite" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Izbirnik stolpcev" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Iskanje po seznamu" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1922,15 +1928,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:424 +#: js/messages.php:426 msgid "See more" msgstr "Poglej več" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Ste prepričani?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1938,51 +1944,51 @@ msgstr "" "Dejanje bo morda spremenilo nekatere opredelitve stolpcev.
Ste " "prepričani, da želite nadaljevati?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Nadaljuj" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Dodaj primarni ključ" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Dodal sem primarni ključ." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Prestavili vas bomo na naslednji korak …" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Konec koraka" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Druga stopnja normalizacije (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Končano" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Potrdi delne odvisnosti" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Izbrane so naslednje delne odvisnosti:" -#: js/messages.php:444 +#: js/messages.php:446 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,19 +1996,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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Ni izbranih delnih odvisnosti!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Skrij seznam delnih odvisnosti" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2010,41 +2016,41 @@ msgstr "" "Prosimo, počakajte. To lahko traja nekaj sekund, odvisno od velikosti " "podatkov in števila stolpcev v tabeli." -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Korak" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Izvedli bomo naslednja dejanja:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "ZAVRZI stolpce %s v tabeli %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Ustvari naslednjo tabelo" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Tretja stopnja normalizacije (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Potrdi prehodne odvisnosti" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Izbrane so naslednje odvisnosti:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Ni izbranih odvisnosti!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2054,123 +2060,123 @@ msgstr "Ni izbranih odvisnosti!" msgid "Save" msgstr "Shrani" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Skrij iskalne pogoje" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Prikaži iskalne pogoje" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Iskanje v območju" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Maksimum stolpcev:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Minimum stolpcev:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Minimalna vrednost:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Maksimalna vrednost:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Skrij pogoje za iskanje in zamenjavo" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Prikaži pogoje za iskanje in zamenjavo" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Vsaka točka predstavlja podatkovno vrstico." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Prehod z miško čez točko bo pokazalo njeno oznako." -#: js/messages.php:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Izberite dva stolpca" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Izberite dva različna stolpca" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Vsebina kazalca podatkov" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Prezri" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Kopiraj" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Točka" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Daljica" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Večkotnik" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometrija" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "Notranji obroč" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Zunanji obroč" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Ali želite kopirati šifrirni ključ?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Šifrirni ključ" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2178,24 +2184,24 @@ msgstr "" "Označuje, da ste na strani naredili spremembe; pred opustitvijo sprememb vas " "bomo pozvali" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Izberite referenčni ključ" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Izberite tuji ključ" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Prosimo, izberite primarni ključ ali unikatni ključ!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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,76 +2209,76 @@ msgstr "" "Niste shranili sprememb ureditve. Če jih ne shranite, bodo izgubljena. " "Želite nadaljevati?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Ime strani" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Shrani stran" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Odpri stran" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Izbriši stran" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Neimenovano" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Prosimo, izberite stran za nadaljevanje" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Prosimo, vnesite veljavno ime strani" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "Želite shraniti spremembe na trenutni strani?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Stran ste uspešno izbrisali" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Izvozi relacijsko shemo" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Spremembe so shranjene" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Dodaj možnost za stolpec \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "Ustvaril sem %d objekt(ov)." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Pošlji" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Za prekinitev urejanja pritisnite ubežnico (escape)." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2280,15 +2286,15 @@ msgstr "" "Uredili ste nekatere podatke, vendar jih niste shranili. Ste prepričani, da " "želite zapustiti stran, preden shranite podatke?" -#: js/messages.php:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Povlecite za preureditev." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Kliknite, da razvrstite rezultate po tem stolpcu." -#: js/messages.php:567 +#: js/messages.php:569 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 " @@ -2298,26 +2304,26 @@ msgstr "" "
- Ctrl+klik ali Alt+klik (Mac: Shift+možnost+klik), da stolpec " "odstranite iz stavka ORDER BY" -#: js/messages.php:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Kliknite za označitev/opustitev." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Dvakrat kliknite za kopiranje imena stolpca." -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Za preklop vidnosti stolpcev
kliknite spustno puščico." -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Pokaži vse" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2326,12 +2332,12 @@ msgstr "" "potrditvenimi polji, povezavami Uredi, Kopiraj in Izbriši, po shranjevanju " "morda ne bodo delovale." -#: js/messages.php:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2339,102 +2345,102 @@ msgstr "" "Si res želite ogledati vse vrstice? V primeru velikih tabel lahko to zruši " "brskalnik." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Izvirna dolžina" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "prekliči" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Prekinjeno" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Uspešno" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Stanje uvoza" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Spustite datoteke tukaj" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Najprej izberite zbirko podatkov" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Natisni" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Pojdi na povezavo:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Kopiraj ime stolpca." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Ustvari geslo" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Ustvari" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Več" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Pokaži ploščo" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Skrij ploščo" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Prikaži skrite predmete v navigacijskem drevesu." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Poveži z glavno ploščo" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Ne poveži z glavno ploščo" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2444,42 +2450,42 @@ msgstr "" "Najnovejša različica je %s, izdana %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", zadnja ustaljena različica:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "posodobljeno" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Ustvari pogled" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Pošlji poročilo o napaki" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Oddaj poročilo o napaki" -#: js/messages.php:656 +#: js/messages.php:658 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:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Spremeni nastavitve poročila" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Pokaži podrobnosti poročila" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2487,7 +2493,7 @@ msgstr "" "Vaš izvoz ni popoln zaradi nizke časovne omejitve izvršitve na stopnji PHP-" "ja!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2496,61 +2502,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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Na strežniku smo zaznali nekatere napake!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Prosimo, poglejte na dno okna." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Prezri vse" -#: js/messages.php:688 +#: js/messages.php:690 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:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Ponovno izvedem poizvedbo?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Ali res želite izbrisati zaznamek?" -#: js/messages.php:702 +#: js/messages.php:704 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:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s poizvedb izvedenih %s-krat v %s sekundah." -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "podanih %s argumentov" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Prikaži argumente" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Skrij argumente" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Porabljen čas:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2565,349 +2571,349 @@ msgstr "" "čiščenje vaših \"Podatkov pri delu brez povezave\". V Safariju je za težavo " "pogosto krivo \"Brskanje v zasebnem načinu\"." -#: js/messages.php:711 +#: js/messages.php:713 msgid "Copy tables to" msgstr "Kopiraj tabele v" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "Dodaj predpono tabele" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "Zamenjaj tabelo s predpono" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopiraj tabelo s predpono" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Prej" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Nasl" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Danes" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "januar" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "februar" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "marec" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "april" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "maj" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "junij" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "julij" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "avgust" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "september" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "oktober" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "november" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "dec" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "nedelja" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "ponedeljek" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "torek" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "sreda" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "četrtek" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "petek" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "sobota" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "ned" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "pon" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "sre" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "čet" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "pet" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "sob" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "ne" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "po" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "sr" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "če" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "pe" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "so" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "brez" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Ura" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minuta" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Sekunda" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Polje je obvezno" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Prosimo, popravite to polje" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Prosimo, vnesite veljaven e-pošni naslov" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Prosimo, vnesite veljaven URL" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Prosimo, vnesite veljaven datum" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Prosimo, vnesite veljaven datum (ISO)" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Prosimo, vnesite veljavno število" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Prosimo, vnesite veljavno številko kreditne kartice" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Prosimo, vnesite samo številke" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Prosimo, ponovno vnesite isto vrednost" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Prosimo, ne vnesete več kot {0} znakov" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Prosimo, vnesite vsaj {0} znakov" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "Prosimo, vnesite vrednost, dolgo od {0} do {1} znakov" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Prosimo, vnesite vrednost med {0} in {1}" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "Prosimo, vnesite vrednost, manjšo ali enako {0}" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "Prosimo, vnesite vrednost, večjo ali enako {0}" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Prosimo, vnesite veljaven datum ali čas" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Prosimo, vnesite veljaven heksadecimalen vnos" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Napaka" @@ -2961,33 +2967,33 @@ msgstr "" "Nepričakovan znak v vrstici %1$s. Pričakoval sem tabulator, vendar našel " "»%2$s«." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Obstoječa konfiguracijska datoteka (%s) ni berljiva." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Napačna dovoljenja konfiguracijski datoteke; ne sme biti vsem zapisljiva!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Velikost pisave" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Skrči" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Razširi" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Ponovna poizvedba" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3007,78 +3013,61 @@ msgstr "Zbirka podatkov" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Skupno %d zaznamek" -msgstr[1] "Skupno %d zaznamka" -msgstr[2] "Skupno %d zaznamki" -msgstr[3] "Skupno %d zaznamkov" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "zasebnih" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "deljenih" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s and %3$s vključenih zaznamkov" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Ni zaznamkov" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Med trenutno sejo" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Razloži" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profiliranje" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Zaznamek" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Poizvedba je spodletela" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Čas poizvedbe" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "Konzola poizvedb SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Konzola" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Počisti" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Zgodovina" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3096,125 +3085,125 @@ msgstr "Zgodovina" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Možnosti" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Zaznamki" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Odkrivaj napake SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Pritisnite ctrl+enter, da izvedete poizvedbo" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Pritisnite enter, da izvedete poizvedbo" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "naraščajoče" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "padajoče" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Vrstni red:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Štetje" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Vrstni red izvajanja" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Porabljen čas" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Razvrsti po:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Združi poizvedbe" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Razdruži poizvedbe" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Pokaži sled" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Skrij sled" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Štetje:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Osveži" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Dodaj" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Dodaj zaznamek" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Oznaka" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Ciljna zbirka podatkov" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Deli zaznamek" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Nastavi privzeto" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Vedno razširi sporočila poizvedb" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Na začetku prikaži zgodovino" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Prikaži trenutno poizvedbo brskanja" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3222,16 +3211,15 @@ msgstr "" "Izvedi poizvedbe z Enter in vstavi novo vrstico s Shift + Enter. Da to " "nastavite za stalno, si oglejte nastavitve." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Preklopi na temno emo" -#: libraries/DatabaseInterface.php:1528 -#| msgid "Failed to read configuration file!" +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "Ne morem nastaviti povezave konfiguriranega razvrščanja znakov!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3239,19 +3227,19 @@ msgstr "" "Strežnik se ne odziva (ali pa lokalna vtičnica strežnika ni pravilno " "konfigurirana)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Strežnik se ne odziva." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Prosimo, preverite pravice mape, v kateri se nahaja zbirka podatkov." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Podrobnosti …" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Povezava za controluserja, kot je določena v vaši konfiguraciji, je " @@ -3568,7 +3556,7 @@ msgstr "Morda je približno. Glej [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Poizvedbo SQL sem uspešno izvedel." @@ -3687,16 +3675,16 @@ msgstr "Nalaganje datoteke je ustavila razširitev." msgid "Unknown error in file upload." msgstr "Neznana napaka pri nalaganju datoteke." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Napaka pri premikanju naložene datoteke, glej [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Napaka pri premikanju naložene datoteke." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Ne morem prebrati naložene datoteke." @@ -3760,8 +3748,8 @@ msgid "Keyname" msgstr "Ime ključa" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3811,13 +3799,13 @@ msgstr "Zavrgel sem indeks %s." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Zavrzi" @@ -3917,7 +3905,7 @@ msgstr "Privilegiji" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operacije" @@ -3932,7 +3920,7 @@ msgstr "Sledenje" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4320,11 +4308,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "Za temo %s ni bila najdena veljavna pot slik!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Predogled ni na voljo." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "uporabi" @@ -4643,21 +4631,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Prostorsko" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Največja velikost: %s %s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Statični analiza:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "Med analizo smo našli %d napak." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4668,32 +4656,32 @@ msgstr "Med analizo smo našli %d napak." msgid "MySQL said: " msgstr "MySQL je vrnil: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Razloži stavek SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Preskoči razlago stavka SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "Analiziraj explain pri %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "Brez kode PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "Izvedi poizvedbo" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Ustvari kodo PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Uredi v vrstici" @@ -4781,6 +4769,10 @@ msgstr "na uro" msgid "per day" msgstr "na dan" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "deljenih" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Iskanje:" @@ -4889,11 +4881,11 @@ msgstr "Dodaj nov stolpec" msgid "Attributes" msgstr "Atributi" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Ne morem prebrati konfiguracijske datoteke!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4901,33 +4893,33 @@ msgstr "" "To po navadi pomeni, da ima skladenjsko napako; prosimo, preverite vse " "spodaj prikazane napake." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Ne morem naložiti privzete konfiguracije iz: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Neveljaven indeks strežnika: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Neveljavno ime gostitelja za strežnik %1$s. Prosim, preglejte svojo " "konfiguracijo." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Strežnik %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Neveljaven način overitve določen v konfiguracijski datoteki:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4939,24 +4931,24 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin trenutno uporalja privzeti časovni pas " "strežnika zbirke podatkov." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format 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:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Napaka: Neujemanje žetonov" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "poskus prepisa GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "možno izkoriščanje" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "zaznana številska tipka" @@ -5689,13 +5681,13 @@ msgstr "Postavi imena stolpcev v prvo vrstico" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Stolpci so obdani z" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Stolpci so izognjeni z" @@ -5713,12 +5705,12 @@ msgstr "Odstrani znake CRLF znotraj stolpcev" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Stolpci so zaključeni z" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Vrstice so zaključene z" @@ -6304,7 +6296,7 @@ msgid "Column names in first row" msgstr "Imena stolpcev v prvi vrstici" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Ne uvozi praznih vrstic" @@ -7855,7 +7847,7 @@ msgid "Table %s has been emptied." msgstr "Izpraznil sem tabelo %s." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Pogled %s sem zavrgel." @@ -7992,8 +7984,8 @@ msgid "No data to display" msgstr "Ni podatkov za prikaz" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8033,52 +8025,52 @@ msgstr[3] "Imena '%s' so rezervirane besede MySQL." msgid "No column selected." msgstr "Ni izbranih stolpcev." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Stolpce smo uspešno premaknili." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Napaka poizvedbe" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Spremeni" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Prostorsko" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Polno besedilo" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Različne vrednosti" @@ -8088,7 +8080,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Manjka razširitev %s. Prosimo, preverite vašo konfiguracijo PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Brez sprememb" @@ -8880,57 +8872,57 @@ msgstr "MySQL je vrnil kot rezultat prazno množico (npr. nič vrstic)." msgid "[ROLLBACK occurred.]" msgstr "[Zgodil se je ROLLBACK.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Uredite strukturo s sledenjem povezavi \"Struktura\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Pojdi v zbirko podatkov: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Uredi nastavitve za %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Pojdi na tabelo: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Pojdi na pogled: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8978,55 +8970,55 @@ msgstr "Ali" msgid "web server upload directory:" msgstr "imenik za nalaganje datotek:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Uredi/Vstavi" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Nadaljuj vstavljanje z %s vrsticami" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "in potem" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Vstavi kot novo vrstico" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Vstavi kot novo vrstico in presliši napake" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Prikaži poizvedbo insert" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Pojdi nazaj na prejšnjo stran" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Vstavi še eno novo vrstico" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Pojdi nazaj na stran" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Uredi naslednjo vrstico" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9038,11 +9030,11 @@ msgstr "" msgid "Value" msgstr "Vrednost" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Prikazovanje poizvedbe SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Id vstavljene vrstice: %1$d" @@ -9908,7 +9900,7 @@ msgstr "Popravi tabelo" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Izbriši podatke ali tabelo" @@ -9921,32 +9913,32 @@ msgid "Delete the table (DROP)" msgstr "Izbriši tabelo (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analiziraj" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Označi" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimiraj" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Ponovno sestavi" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Popravi" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Izprazni" @@ -9972,35 +9964,35 @@ msgstr "Odstrani particioniranje" msgid "Check referential integrity:" msgstr "Preveri referenčno integriteto:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Tabele ne morete premakniti same vase!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Tabele ne morete kopirati same vase!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabelo %s smo premaknili na %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabelo %s smo skopirali na %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Ime tabele je prazno!" @@ -10177,7 +10169,7 @@ msgstr "Možnosti odlaganja podatkov" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Odloži podatke za tabelo" @@ -10201,21 +10193,21 @@ msgstr "Opredelitev" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struktura tabele" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktura pogleda" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Nadomestna struktura pogleda" @@ -10305,7 +10297,7 @@ msgid "Database:" msgstr "Zbirka podatkov:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Podatki:" @@ -10405,7 +10397,7 @@ msgid "Data creation options" msgstr "Možnosti ustvarjanja podatkov" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Počisti tabelo pred vstavljanjem" @@ -10488,7 +10480,7 @@ msgstr "Kot kaže, vaša zbirka podatkov uporablja rutine;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "izvoz z vzdevkom v vseh primerih morda ne bo deloval zanesljivo." @@ -10530,52 +10522,52 @@ msgstr "v uporabi" msgid "It appears your database uses views;" msgstr "Kot kaže, vaša zbirka podatkov uporablja poglede;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Omejitve tabel za povzetek stanja" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Omejitve za tabelo" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indeksi zavrženih tabel" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indeksi tabele" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT zavrženih tabel" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT tabele" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "VRSTE MIME ZA TABELO" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE ZA TABELO" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Kot kaže, vaša tabela uporablja sprožilce;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktura pogleda %s, izvoženega kot tabela" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "(Oglejte si spodaj za resnični pogled)" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Napaka med branjem podatkov:" @@ -10607,7 +10599,7 @@ msgstr "" "DUPLICATE KEY UPDATE)" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10630,15 +10622,15 @@ msgstr "" msgid "Column names: " msgstr "Imena stolpcev: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Neveljavni parameter za uvoz CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10647,18 +10639,18 @@ msgstr "" "Naveden je neveljavni stolpec (%s)! Prepričajte se, da so imena stolpcev " "pravilno črkovana, ločena z vejicami in ne obdana z narekovaji." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Neveljavna oblika vnosa CSV v vrstici %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Neveljavno število stolpcev v vnosu CSV v vrstici %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Vtičnik ne podpira stisnjenih uvozov!" @@ -10666,23 +10658,23 @@ msgstr "Vtičnik ne podpira stisnjenih uvozov!" msgid "MediaWiki Table" msgstr "Tabela MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Neveljavna oblika vnosa mediawiki v vrstici:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" "Uvozi odstotke kot ustrezne decimalne vrednosti (npr. 12.00% v .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Uvozi denarne enote (npr. $5.00 v 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10690,7 +10682,7 @@ msgstr "" "Določena datoteka XML je ali skažena ali nepopolna. Prosimo, odpravite " "težave in poskusite znova." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Ne morem razčleniti preglednice OpenDocument!" @@ -10698,12 +10690,12 @@ msgstr "Ne morem razčleniti preglednice OpenDocument!" msgid "ESRI Shape File" msgstr "Datoteka oblik ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Med uvažanjem datoteke oblik ESRI je prišlo do napake: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10711,12 +10703,12 @@ msgstr "" "Poskušali ste uvoziti neveljavno datoteko ali pa uvožena datoteka vsebuje " "neveljavne podatke!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "Prostorska razširitev MySQL ne podpira ESRI vrste \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Uvožena datoteka ne vsebuje nobenih podatkov!" @@ -10728,7 +10720,7 @@ msgstr "Združljivostni način SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ne uporabi AUTO_INCREMENT za ničelne vrednosti" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13720,15 +13712,11 @@ msgstr "Pričakovali smo %1$d vrednosti, vendar smo jih našli %2$d." msgid "An opening bracket followed by a set of values was expected." msgstr "Pričakovali smo začetni oklepaj, ki mu sledi množica vrednosti." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "Pričakovali smo začetni oklepaj." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "Pričakovali smo vejico ali zaklepaj" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Pričakovali smo vejico ali zaklepaj." @@ -13741,17 +13729,18 @@ msgstr "Pričakovali smo zaklepaj." msgid "Unrecognized data type." msgstr "Neprepoznana vrsta podatkov." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Vzdevek smo našli že prej." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Nepričakovana pika." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Pričakovali smo vzdevek." @@ -13769,19 +13758,19 @@ msgstr "Pričakovali smo odmik." msgid "This option conflicts with \"%1$s\"." msgstr "Izbira je v sporu z \"%1$s\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Pričakovali smo staro ime tabele." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Pričakovali smo ključno besedo \"TO\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Pričakovali smo novo ime tabele." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Pričakovali smo poseg preimenovanja." @@ -13807,15 +13796,15 @@ 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:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Nepričakovan začetek stavka." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Neprepoznana vrsta stavka." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Začeli niste nobene transakcije." @@ -13838,15 +13827,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Nepričakovana ključna beseda." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Pričakovali smo ime entitete." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Pričakovali smo vsaj eno opredelitev stolpca." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Pričakovali smo ključno besedo \"RETURNS\"." @@ -14536,7 +14525,7 @@ msgstr "Preglej povzetek stanja tabele" msgid "Invalid table name" msgstr "Neveljavno ime tabele" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Vrstica: %1$s, Stolpec: %2$s, Napaka: %3$s" @@ -15455,7 +15444,7 @@ msgid "at beginning of table" msgstr "na začetku tabele" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Particije" @@ -15488,7 +15477,7 @@ msgstr "Tabela razdelitve" msgid "Edit partitioning" msgstr "Uredi razdelitev" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Urejevalni pogled" @@ -15603,11 +15592,11 @@ msgstr "Ime VIEW" msgid "Column names" msgstr "Imena stolpcev" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Preimenuj pogled v" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Izbriši pogled (DROP)" @@ -16871,6 +16860,22 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastavljeno na 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Skupno %d zaznamek" +#~ msgstr[1] "Skupno %d zaznamka" +#~ msgstr[2] "Skupno %d zaznamki" +#~ msgstr[3] "Skupno %d zaznamkov" + +#~ msgid "private" +#~ msgstr "zasebnih" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s and %3$s vključenih zaznamkov" + +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Pričakovali smo vejico ali zaklepaj" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/sq.po b/po/sq.po index dfd519f63d..a88f9445dc 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-09-05 23:03+0200\n" "Last-Translator: Arben Çokaj \n" "Language-Team: Albanian " -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1015,160 +1019,160 @@ msgstr "" "Jeni i sigurt se doni të ndryshoni të gjitha krahasimet e kolonës dhe të " "ktheni të dhënat?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Ruaj & mbyll" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Rivendos" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Rivendos të gjitha" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Mungon vlera në formular!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Zgjedh së paku një nga opsionet!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Ju lutem, fut një numër të vlefshëm!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Ju lutem, fut një gjatësi të vlefshme!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Shto indeks" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Korrigjo indeksin" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Shto %s kolonë(a) tek indeksi" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Krijo indeksin kolonë-e-vetme" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Krijo indeksin e përzier" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Përzierje me:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Ju lutem zgjedh kolonën(at) për indeksin." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Keni shtuar së paku një kolonë." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Paraqit SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Simulo pyetsor" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Radhët që përkojnë:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL pyetsor:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Vlerat Y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Emri host (pritësit) është i zbrazët!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Emri i përdoruesit është i zbrazët!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Fjalëkalimi është i zbrazët!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Fjalëkalimet nuk janë të njëjtë!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Largon përdoruesit e zgjedhur" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Mbyll" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Shablloni është krijuar." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Shablloni është lokalizuar." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Shablloni është aktualizuar." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Shablloni është fshirë." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Tjetër" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Lidhjet / Proçeset" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Konfigurimi lokal i monitorit i papërshtatshëm!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1180,155 +1184,155 @@ msgstr "" "Është shumë e mundshme, që konfigurimi aktual nuk do të punojë më. Ju lutem " "rivendos konfigurimin në vlerën e parazgjedhur në menynë Rregullimet." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Efiçienca e cache të pyetsorit" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Përdorimi cache i pyetsorit" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Cache e përdorur e pyetsorit" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Përdorimi CPU i sistemit" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Kujtesa e sistemit" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Shkëmbimi i sistemit" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Ngarkimi mesatar" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Kujtesa totale" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Cached kujtesë" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Kujtesa e amortizimit (zbutjes)" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Kujtesë e lirë" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Kujtesa e përdorur" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Shkëmbimi total" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Shkëmbimi cache" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Shkëmbimi i përdorur" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Shkëmbimi i lirë" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Bajt të dërguara" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Bajt të marra" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Lidhjet" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Proçeset" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabelë(a)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Pyetjet" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Trafiku" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Konfigurimet" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Shto grafik tek rrjeta" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Ju lutem, shtoni së paku një variabël në seri!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1340,47 +1344,47 @@ msgstr "Ju lutem, shtoni së paku një variabël në seri!" msgid "None" msgstr "Asnjë" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Rifillo monitorin" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Monitori i pauzës" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Fillo auto rifreskim" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Ndalo auto rifreskim" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log dhe slow_query_log janë aftësuar." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log është aftësuar." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log është aftësuar." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log dhe general_log janë pasivizuar." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output nuk është vendosur në TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output është vendosur në TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1391,12 +1395,12 @@ msgstr "" "marrin më shumë se %d sekonda. Këshillohet ta vendosni këtë long_query_time " "0-2 sekonda, në varësi të sistemit tuaj." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time është vendosur në %d sekond(a)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1405,30 +1409,30 @@ msgstr "" "rifillimin e serverit:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Vendos log_output në %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Aftëso %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Pasivizo %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Vendos long_query_time në %d sekonda." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1436,59 +1440,59 @@ msgstr "" "Nuk mund t'i ndryshoni këto variabla. Ju lutem, hyni si rrënjë (root) ose " "kontaktoni administratorin tuaj të databazës." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Ndrysho konfigurimet" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Rregullimet aktuale" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Titull grafiku" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Diferencial" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Ndarë sipas %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Njësi" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Nga regjistri i ngadalshëm" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Nga regjistri i përgjithshëm" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" "Emri i databazës nuk është i njohur për këtë pyetsor në regjistrat (logs) e " "serverit." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Analizon regjistrat (logs)" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Analizon & ngarkon regjistrat (logs). Kjo mund të marrë pak kohë." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Anulo kërkesën" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1499,7 +1503,7 @@ msgstr "" "kështu që atributet e tjera të pyetsorëve, të tilla si koha e fillimit, mund " "të ndryshojnë." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1509,35 +1513,35 @@ msgstr "" "njëjtën tabelë grupohen gjithashtu bashkë, pa marrë parasysh të dhënave të " "futura." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Të dhënat e regjistrit (log) u ngarkuan. Pyetsorët u ekzekutuan në këtë " "shtrirje kohore:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Hidhu tek tabela e regjistrit (log)" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Nuk gjenden të dhëna" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Regjistër (log) i analizuar, por nuk gjenden të dhëna në këtë shtrirje " "kohore." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analizon…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Sqaro rezultatin" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1545,7 +1549,7 @@ msgstr "Sqaro rezultatin" msgid "Status" msgstr "Statusi" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1555,59 +1559,59 @@ msgstr "Statusi" msgid "Time" msgstr "Koha" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Koha totale:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Rezultatet e profilimit" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabelë" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Grafik" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Opsionet e filtrit të regjistrit (log) të tabelës" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filtro" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filtro pyetsorët spas fjalës/regexp:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "Pyetsorët e grupit, injoron të dhënat e variablave në klauzolën (ku) WHERE" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Shuma e radhëve të grupuara:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Totali:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Ngarkon regjistrat (logs)" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Rifreskimi i monitorit dështoi" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1617,28 +1621,28 @@ msgstr "" "pavlefshme. Kjo ka mundësi të jetë për shkak se sesioni juaj ka skaduar. " "Ringarko faqen dhe ri-futja e kredencialeve tuaja duhet të ndihmojë." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Ringarko faqen" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Radhët e ndikuara:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Dështoi në parsimin e filit config. Nuk duket se është një kod i vlefshëm " "JSON." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Dështoi në ndërtimin e rrjetës së grafikut me konfig të importuar. " "Rivendosje në konfig standard…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1647,65 +1651,65 @@ msgstr "" msgid "Import" msgstr "Importi" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Konfigurimi i monitorit të importit" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Ju lutem, zgjedh filin që doni të importoni." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Nuk ka file të vlefshme në server për import!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Analizo pyetsorin" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Sistem këshilltar" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Çështje të mundshme performance" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Çështje" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Rekomandim" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Detajet e rregullit" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Justifikim" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Variabli i përdoruesit / formula" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Testi" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Formaton SQL…" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Parametra të këqinj!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1717,60 +1721,60 @@ msgstr "Parametra të këqinj!" msgid "Cancel" msgstr "Anulo" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Rregullimet faqe-relevante" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Apliko" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Ngarkon…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Kërkesa u abortua!!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "Proçeson kërkesën" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "Kërkesa dështoi!!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Gabim në proçesimin e kërkesës" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Kodi i gabimit: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Teksti gabim: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Nuk janë zgjedhur databaza." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Po fshin kolonën" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Shton çelësin primar" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1780,57 +1784,57 @@ msgstr "Shton çelësin primar" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Kliko për të larguar këtë njoftim" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Riemëron databazën" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Kopjon databazën" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Ndryshon setin e karaktereve" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Aftëso kontrollet e çelësave të huaj" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Dështoi në marrjen e numrit real të radhës." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Kërkon" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Fsheh rezultatet e kërkimit" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Shfaq rezultatet e kërkimit" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Shfleton" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Fshin" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Përkufizimi i një funksioni të ruajtur duhet të përmbajë një deklaratë " "RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1846,45 +1850,45 @@ msgstr "" msgid "Export" msgstr "Eksporti" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "Editori ENUM/SET (num/vendos)" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Vlerat për kolonat %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Vlerat për kolonën e re" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Fut secilën vlerë në një fushë të ndarë." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Shto %d vlerë(a)" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Shënim: Nëse fili përmban tabela të shumëfishta, ato do të kombinohen në një." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Fsheh kutinë e pyetsorit" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Shfaq kutinë e pyetsorit" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1894,7 +1898,7 @@ msgstr "Shfaq kutinë e pyetsorit" msgid "Edit" msgstr "Korrigjo" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1905,41 +1909,41 @@ msgstr "Korrigjo" msgid "Delete" msgstr "Fshij" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d nuk është numër i vlefshëm radhe." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Shfleto vlerat e huaja" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Nuk ka pyetsor auto-ruaj" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Variabli %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Zgjedh" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Zgjedhësi i kolonës" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Kërko këtë listë" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1948,15 +1952,15 @@ msgstr "" "Nuk ka kolona në listën qendrore. Sigurohu që lista Qendrore e kolonave për " "databazën %s ka kolona, të cilat nuk janë të pranishme në tabelën e aktuale." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Shiko më shumë" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "A jeni i sigurtë?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1964,51 +1968,51 @@ msgstr "" "Ky veprim mund të ndryshojë disa nga përkufizimet e kolonave.
Jeni i " "sigurtë, qe doni te vazhdoni?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Vazhdo" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Shto çelës primar" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Çelësi primar u shtua." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Po kalon në hapin tjetër…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Fundi i hapit" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Hapi i dytë i normalizimit (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "U krye" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Konfirmo varësitë e pjesëshme" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Varësitë e pjesëshme të zgjedhura janë si vijon:" -#: js/messages.php:444 +#: js/messages.php:446 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2016,19 +2020,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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Nuk janë zgjedhur varësi të pjesëshme!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Fsheh listën e varësisë së pjesëshme" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2036,41 +2040,41 @@ 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:456 +#: js/messages.php:458 msgid "Step" msgstr "Hapi" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Veprimet që vijojnë do të kryhen:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP (hedh) kolonat %s nga tabela %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Krijo tabelën që vijon" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Hapi i tretë i normalizimit (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Konfirmo varësitë kalimtare" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Varësitë e zgjedhura janë si vijon:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Nuk janë zgjedhur varësi!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2080,129 +2084,129 @@ msgstr "Nuk janë zgjedhur varësi!" msgid "Save" msgstr "Ruaj" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Fsheh kriteret e kërkimit" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Shfaq kriteret e kërkimit" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Kërkim i vargut" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Maksimumi i kolonës:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Minimumi i kolonës:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Vlera minimale:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Vlera maksimale:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Fsheh gjetjen dhe zëvendëso kriteret" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Shfaq gjej dhe zëvendëso kriteret" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Secila pikë paraqet një radhë të dhënash." -#: js/messages.php:488 +#: js/messages.php:490 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:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Zgjedh dy kolona" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Zgjedh dy kolona të ndryshme" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Përmbajtja e pikës së të dhënave" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Injoro" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Kopjo" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Pikë" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Vargu i linjës" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Gjeometri" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "Brenda rrethit" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Rrethi i jashtëm" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Doni të kopjoni çelësin e kriptimit?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Çelësi i kriptimit" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2210,24 +2214,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:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Zgjedh çelësin e referencës" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Zgjedh çelësin e huaj" -#: js/messages.php:533 +#: js/messages.php:535 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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?" @@ -2235,76 +2239,76 @@ msgstr "" "Nuk i keni ruajtur ndryshimet e faqosjes (layout). Do të humbin, nëse nuk i " "ruani ato. Doni të vazhdoni?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Emri i faqes" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Ruaj faqen" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Hap faqe" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Fshij faqen" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Pa titull" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Ju lutem, zgjedh një faqe për të vazhduar" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Ju lutem, fut një emër të vlefshëm faqeje" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "A doni të ruani ndryshimet në faqen aktuale?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Faqja u fshi me sukses" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Eksporto skemën relacionale" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Modifikimet janë ruajtur" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Shto një opsion për kolonë \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d objekt(e) u krijuan." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Dërgo" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Shtyp Esc (ik) për të anulluar korrigjimin." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2312,15 +2316,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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Tërhiq dhe rirendit." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Kliko të klasifikoni rezultatet sipas kësaj kolone." -#: js/messages.php:567 +#: js/messages.php:569 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 " @@ -2330,27 +2334,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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Kliko për të shënjuar/mos-shënjuar." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Kliko dyfish për të kopjuar emrin e kolonës." -#: js/messages.php:574 +#: js/messages.php:576 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Shfaq të gjitha" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2359,13 +2363,13 @@ msgstr "" "korrigjim rrjetë, kuti kontrolli, Korrigjo, Kopjo dhe Fshij mund të mos " "punojnë pas ruajtjes." -#: js/messages.php:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2373,104 +2377,104 @@ 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:587 +#: js/messages.php:589 msgid "Original length" msgstr "Gjatësi origjinale" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "anulo" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Abortuar" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Sukses" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Importo statusin" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Lësho filet këtu" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Zgjedh databazën së pari" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Printo" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Shko tek lidhja:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Kopjo emrin e kolonës." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Gjenero fjalëkalimin" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Gjenero" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Më shumë" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Shfaq panelin" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Fsheh panelin" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Shfaq njësitë e fshehta të pemës së navigimit." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Lidh me panelin kryesor" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Moslidh nga paneli kryesor" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2480,27 +2484,27 @@ msgstr "" "aktualizimin. Versioni më i ri është %s, lëshuar më %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", versioni i fundit stabil:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "aktual" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Krijo pamje" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Dërgo raportin e gabimit" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Dërgo raportin e gabimit" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2508,15 +2512,15 @@ msgstr "" "Një gabim fatal ka ndodhur në JavaScript. Dëshironi të dërgoni një raport " "gabimi?" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Ndrysho rregullimet e raportit" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Shfaq detajet e raportit" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2524,7 +2528,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:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2534,60 +2538,60 @@ msgstr "" "dorëzimin, disa nga fushat mund të injorohen, për shkak të konfigurimit PHP " "max_input_vars." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Disa gabime janë zbuluar në server!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Ju lutem shiko në fund të kësaj dritareje." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Injoro të gjitha" -#: js/messages.php:688 +#: js/messages.php:690 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:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Ekzekuto përsëri këtë pyetsor?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Doni me të vërtetë të fshini këtë faqeruajtës?" -#: js/messages.php:702 +#: js/messages.php:704 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:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s pyetsorë të ekzekutuar %s herë në %s sekonda." -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "%s argument(e) kaluan" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Shfaq argumentet" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Fsheh argumentet" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Koha që ka marrë:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2596,355 +2600,355 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopjo databazën në" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Shto prefiks tabele:" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Zëvendëso prefiksin e tabelës" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopjo tabelën me prefiks" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Para" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Tjetër" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Sot" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Janar" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Shkurt" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Mars" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Prill" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Maj" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "June" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Korrik" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Gusht" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Shtator" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Tetor" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Nëntor" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Dhjetor" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Shk" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Pri" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Kor" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Gus" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Sht" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Tet" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Nën" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Dhj" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Dielë" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "E hënë" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "E martë" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "E mërkurë" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "E enjte" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "E premte" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "E shtunë" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Die" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Hën" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Mër" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Enj" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Pre" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sht" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Hë" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Më" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Enj" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Pr" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Sh" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "kalendar-muaj-vit" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "asnjë" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Orë" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minutë" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Dytësor" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Kjo fushë kërkohet" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Ju lutem, fiksoje këtë fushë" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Ju lutem, fut një adresë të vlefshme email" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Ju lutem, fut një URL të vlefshme" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Ju lutem, fut një datë të vlefshme" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Ju lutem, fut një datë të vlefshme ( ISO )" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Ju lutem, fut një numër të vlefshëm" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Ju lutem, fut një numër të vlefshëm karte krediti" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Ju lutem, fut vetëm numra" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Ju lutem, fut të njëjtën vlerë përsëri" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Ju lutem, mos fut më shumë se {0} karaktere" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Ju lutem, fut së paku {0} karaktere" -#: js/messages.php:915 +#: js/messages.php:917 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:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Ju lutem, fut një vlerë ndërmjet {0} dhe {1}" -#: js/messages.php:925 +#: js/messages.php:927 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:930 +#: js/messages.php:932 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:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Ju lutem, fut një datë ose kohë të vlefshme" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Ju lutem, fut një hyrje HEX të vlefshëm" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Gabim" @@ -2997,34 +3001,34 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" "Karakter i papritur në linjën %1$s. Pritet tabelori, por u gjet \"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Fili i konfigurimit ekzistues (%s) nuk është i lexueshëm." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Lejimet e gabuara mbi filin e konfigurimit, nuk duhet të jetë botërisht e " "shkruajtshme!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Madhësia e shkrimit" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Ngushto" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Zgjero" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Requery (kërkesë)" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3044,76 +3048,59 @@ msgstr "Databaza" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Insgesamt %d Lesezeichen" -msgstr[1] "Insgesamt %d Lesezeichen" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "private" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "ndarë" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s dhe %3$s faqeruajtësit e përfshirë" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Nuk ka faqeruajtës" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Gjatë sesionit aktual" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Sqaro" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profilon" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Faqeruajtës" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Pyetsori dështoi" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Koha e pyetsorit" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "Pyetsori konsole SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Konsole" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Pastro" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Historia" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3131,125 +3118,125 @@ msgstr "Historia" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Opsionet" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Faqeruajtësit" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Debug (rregullo) SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Shtyp Ctrl+Enter për të ekzekutuar pyetsorin" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Shtyp Enter për të ekzekutuar pyetsorin" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "ngritëse" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "zbritëse" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Renditja:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Numri" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Ekzekutimi i renditjes" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Koha që ka marrë" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Renditur sipas:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Grupo pyetsorët" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Mos-grupo pyetsorët" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Shfaq gjurmën" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Fsheh gjurmën" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Numri:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Rifresko" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Shto" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Shto faqeruajtës" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Etiketë" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Databaza e objektivit" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Ndan këtë faqeruajtës" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "E paracaktuar" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Zgjero gjithmonë mesazhet e pyetsorit" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Shfaq historinë e pyetsorit në fillim" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Shfaq pyetsorin aktual të shfletimit" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3257,17 +3244,17 @@ msgstr "" "Ekzekuto pyetsorët me Enter dhe fut linja të reja me Shift + Enter. Për ta " "bërë këtë të përhershme, shfaq rregullimet." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Kalo tek modeli i errët" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Dështoi në leximin e filit të konfigurimit!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3275,19 +3262,19 @@ msgstr "" "Serveri nuk përgjigjet (ose foleja e serverit lokal nuk është konfiguruar " "saktë)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Serveri nuk përgjigjet." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Ju lutem, kontrollo privilegjet e drejtorisë që përmban databazën." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Detajet…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Lidhja për përdoruesin e kontrollit, siç përcaktohet në konfigurimin tuaj " @@ -3600,7 +3587,7 @@ msgstr "Mund të jetë me afërsi. Shiko [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Pyetsori juaj SQL është ekzekutuar me sukses." @@ -3721,16 +3708,16 @@ msgstr "Ngarkimi i filit u ndal nga zgjerimi." msgid "Unknown error in file upload." msgstr "Gabim i panjohur në ngarkimin e filit." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Gabim në lëvizjen e filit të ngarkuar, shiko [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Gabim gjatë lëvizjes së fileve të ngarkuara." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Nuk mund të lexojë filin e ngarkuar." @@ -3794,8 +3781,8 @@ msgid "Keyname" msgstr "Emri i çelësit" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3845,13 +3832,13 @@ msgstr "Indeksi %s është fshirë." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Fshij" @@ -3953,7 +3940,7 @@ msgstr "Privilegjet" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Veprime" @@ -3968,7 +3955,7 @@ msgstr "Gjurmim" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4346,11 +4333,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "Nuk ka rrugë të vlefshme imazhi të gjetur për modelin %s!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Nuk ka paraqitje të vlefshme." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "merre atë" @@ -4669,21 +4656,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Spacial (hapësinor)" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Maks: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Analizat statike:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "%d gabime u gjendën gjatë analizave." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4694,36 +4681,36 @@ msgstr "%d gabime u gjendën gjatë analizave." msgid "MySQL said: " msgstr "MySQL tha: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Sqaro SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Shmang sqarimin SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "Analizo sqarimin në %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Pa kod PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Dërgo pyetsor" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Krijo kodin PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Korrigjo në linjë" @@ -4811,6 +4798,10 @@ msgstr "për orë" msgid "per day" msgstr "për ditë" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "ndarë" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Kërko:" @@ -4919,11 +4910,11 @@ msgstr "Shto kolonë të re" msgid "Attributes" msgstr "Atributet" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Dështoi në leximin e filit të konfigurimit!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4931,33 +4922,33 @@ msgstr "" "Kjo zakonisht do të thotë se ka një gabim sintakse në të, ju lutem, " "kontrollo ndonjë gabim të treguar më poshtë." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nuk mund të ngarkojë konfigurimin e parazgjedhur nga: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Indeks serveri i pavlefshëm: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Emër pritësi (host) i pavlefshëm për serverin %1$s. Ju lutem, rishiko " "konfigurimin." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Serveri %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Metodë e pavlefshme autentifikimi e vendosur në konfigurim:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4969,24 +4960,24 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin përdor aktualisht zonën kohore të " "parazgjedhur të serverit të databazës." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Duhet të aktualizoni tek %s %s ose më lart." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Gabim: mospërputhje e shenjave" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS përpjekje mbishkrimi" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "e mundur të shfrytëzohet" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "çelës numerik është hetuar" @@ -5736,13 +5727,13 @@ msgstr "Vendos emrat e kolonave në radhë të parë" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Kolonat e mbyllura me" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Kolonat ikin nga" @@ -5760,12 +5751,12 @@ msgstr "Largo karakteret CRLF brenda kolonave" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Kolonat ndërpriten me" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Rreshta që përfundojnë me" @@ -6353,7 +6344,7 @@ msgid "Column names in first row" msgstr "Emrat e kolonës në radhën e parë" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Mos importo radhë të zbrazëta" @@ -7916,7 +7907,7 @@ msgid "Table %s has been emptied." msgstr "Tabela %s është zbrazur." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Paraqitja %s është fshirë." @@ -8050,8 +8041,8 @@ 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:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8089,52 +8080,52 @@ msgstr[1] "Emrat '%s' janë fjalë kyçe të rezervuara MySQL." msgid "No column selected." msgstr "Nuk është zgjedhur kolona." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Kolonat kanë lëvizur me sukses." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Gabim pyetsori" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Ndrysho" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeksi" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spacial (hapësinor)" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Tekst i plotë" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Vlerat e dallueshme" @@ -8144,7 +8135,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Zgjerimi %s mungon. Ju lutem, kontrollo konfigurimin tuaj PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nuk ka ndryshime" @@ -8951,57 +8942,57 @@ msgstr "MySQL ktheu një set rezultati të zbrazët (psh. zero radhë)." msgid "[ROLLBACK occurred.]" msgstr "[RIKTHIMI u shfaq.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Korrigjo strukturën duke ndjekur lidhjen \"Structure\" (struktura)." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Shko tek databaza: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Korrigjo rregullimet për %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Shko tek tabela: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struktura e %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Shko tek pamja: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 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:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9050,48 +9041,48 @@ msgstr "Ose" msgid "web server upload directory:" msgstr "drejtoria e ngarkimit në ueb server:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Korrigjo/Fut" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Vazhdo futjen me %s radhë" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "dhe pastaj" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Fut si radhë të re" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Fut si radhë të re dhe injoro gabimet" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Shfaq fut pyetsorin" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Kthehu tek faqja më përpara" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Fut një radhë tjetër" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Kthehu tek kjo faqe" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Korrigjo radhën tjetër" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9101,7 +9092,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9113,11 +9104,11 @@ msgstr "" msgid "Value" msgstr "Vlera" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Shfaqën pyetsorin SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "ID e radhës së futur: %1$d" @@ -9998,7 +9989,7 @@ msgstr "Riparo tabelën" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Fshij të dhënat ose tabelat" @@ -10011,32 +10002,32 @@ msgid "Delete the table (DROP)" msgstr "Fshij tabelën (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analizë" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Kontrollo" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimizo" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Rindërto" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Riparo" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Cungo" @@ -10062,35 +10053,35 @@ msgstr "Largo particionimin" msgid "Check referential integrity:" msgstr "Kontrollo integritetin referencial:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Nuk mund t'i lëvizë tabelat tek vetvetja!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Nuk mund ta kopjojë tabelën tek vetvetja!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s ka lëvizur tek %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s është kopjuar tek %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Emri i tabelës është i zbrazët!" @@ -10268,7 +10259,7 @@ msgstr "Opsionet e heqjes (dump) së të dhënave" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Zbraz të dhënat për tabelën" @@ -10292,21 +10283,21 @@ msgstr "Përkufizimi" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struktura e tabelës për tabelën" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktura për pamjen" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Struktura zëvendësuese për pamjen" @@ -10396,7 +10387,7 @@ msgid "Database:" msgstr "Databaza:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Të dhëna:" @@ -10498,7 +10489,7 @@ msgid "Data creation options" msgstr "Opsionet e krijimit të të dhënave" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Cungo tabelën para futjes" @@ -10583,7 +10574,7 @@ msgstr "Duket se databaza juaj përdor funksionet;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 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ë " @@ -10629,52 +10620,52 @@ msgstr "në përdorim" msgid "It appears your database uses views;" msgstr "Duket se databaza juaj përdor pamjet;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Detyrimet për tabelat e hedhura" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Detyrimet për tabelën" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Indekset për tabelat e hedhura" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Indekset për tabelë" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT për tabelat e hedhura" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT për tabelë" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "TIPET MIME PËR TABELËN" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELACIONET PËR TABELËN" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Duket se tabela juaj përdor shkrehës;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Gabim në leximin e të dhënave:" @@ -10706,7 +10697,7 @@ msgstr "" "DUPLICATE KEY UPDATE)" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10729,15 +10720,15 @@ msgstr "" msgid "Column names: " msgstr "Emrat e kolonës: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Parametër i pavlefshëm për importin CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10746,18 +10737,18 @@ msgstr "" "Kolonë e pavlefshme (%s) e specifikuar! Sigurohu që emrat e kolonave janë " "shkruar saktë, ndarë me presje dhe nuk mbyllen me thonjëza." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Format i pavlefshëm i hyrjes CSV në linjë %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Numër i pavlefshëm kolone në hyrjen CSV në linjë %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Kjo shtojcë (plug-in) nuk i mbështet importimet e kompresuara!" @@ -10765,23 +10756,23 @@ msgstr "Kjo shtojcë (plug-in) nuk i mbështet importimet e kompresuara!" msgid "MediaWiki Table" msgstr "Tabela MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Format i pavlefshëm i hyrjes mediawiki në linjë:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" "Përqindjet e importit si numra dhjetorë të plotë (psh. 12.00% në .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importo monedhat (psh. $5.00 në 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10789,7 +10780,7 @@ msgstr "" "Fili XML i specifikuar ishte ose i formuar keq ose jo i plotë. Ju lutem, " "korrekto problemin dhe provo përsëri." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Nuk mund të analizojë OpenDocument Spreadsheet!" @@ -10797,12 +10788,12 @@ msgstr "Nuk mund të analizojë OpenDocument Spreadsheet!" msgid "ESRI Shape File" msgstr "ESRI fil forme" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Ka një gabim në importimin e filit të formës ESRI: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10810,12 +10801,12 @@ msgstr "" "Provuat të importoni një fil të pavlefshëm ose fil të importuar që përmban " "të dhëna të pavlefshme!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "Zgjerimi i hapësirës MySQL nuk e mbështet tipin ESRI \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Fili i importuar nuk përmban ndonjë të dhënë!" @@ -10827,7 +10818,7 @@ msgstr "SQL mënyrë e përshtatshme:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Mos përdor AUTO_INCREMENT për vlerat zero" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13868,15 +13859,11 @@ msgstr "Vlerat %1$d u pranuan, por gjeti %2$d." msgid "An opening bracket followed by a set of values was expected." msgstr "Pritet një kllapë e hapur, e ndjekur nga një set vlerash." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "Pritet një kllapë e hapur." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "Pritet një presje ose një kllapë e mbyllur" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Pritet një presje ose një kllapë mbyllëse." @@ -13889,17 +13876,18 @@ msgstr "Pritet një kllapë e mbylljes." msgid "Unrecognized data type." msgstr "Tip të dhënash i panjohur." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Një pseudonim është gjetur më përpara." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Pikë (dot) e papritur." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Pritet një alias (pseudonim)." @@ -13917,19 +13905,19 @@ msgstr "Pritet një rezultat (offset)." msgid "This option conflicts with \"%1$s\"." msgstr "Ky opsion konflikton me \"%1$s\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Pritet emri i vjetër i tabelës." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Pritet fjala kyçe \"TO\" (për)." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Pritet emri i ri i tabelës." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Pritet një veprim riemërimi." @@ -13955,15 +13943,15 @@ msgstr "Pritet thonjëza e fundit %1$s." msgid "Variable name was expected." msgstr "Pritet emri i variablit." -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Fillim i papritur i deklaratës." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Tip deklarate i panjohur." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Nuk ka filluar ndonjë transaksion më parë." @@ -13986,15 +13974,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Fjalë kyçe e panjohur." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Pritet emri i entitetit." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Pritet së paku një përcaktim kolone." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Pritet një fjalë kyçe \"RETURNS\"." @@ -14686,7 +14674,7 @@ msgstr "Shfaq zbrazjen (skema) e tabelës" msgid "Invalid table name" msgstr "Emër tabele i pavlefshëm" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Radhë: %1$s, Kolonë: %2$s, Gabim: %3$s" @@ -15648,7 +15636,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:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Pjesët" @@ -15687,7 +15675,7 @@ msgstr "Ndarë nga:" msgid "Edit partitioning" msgstr "Largo particionimin" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Korrigjo pamjen" @@ -15806,11 +15794,11 @@ msgstr "SHFAQ emrin" msgid "Column names" msgstr "Emrat e kolonës" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Riemëro pamjen në" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Fshij pamjen (DROP)" @@ -17124,6 +17112,20 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert është vendosur në 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Insgesamt %d Lesezeichen" +#~ msgstr[1] "Insgesamt %d Lesezeichen" + +#~ msgid "private" +#~ msgstr "private" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s dhe %3$s faqeruajtësit e përfshirë" + +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Pritet një presje ose një kllapë e mbyllur" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/sr.po b/po/sr.po index 631a6ecf6f..d830fa43a5 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:25+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Сачувај као датотеку" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Поништи" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Изабери све" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Недостаје вредност у обрасцу!" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "бар једну од речи" -#: js/messages.php:118 +#: js/messages.php:120 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number!" msgstr "%d није исправан број реда." -#: js/messages.php:119 +#: js/messages.php:121 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid length!" msgstr "%d није исправан број реда." -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Додај ново поље" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit next row" msgid "Edit index" msgstr "Уреди следећи ред" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" msgstr "Додај %s поља" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Направи релацију" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Направи релацију" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Поља ограничена са" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %s field(s)" msgid "Please select column(s) for the index." msgstr "Додај %s поља" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Морате додати барем једно поље." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "у упиту" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Latched pages" msgid "Matched rows:" msgstr "Забрављене стране" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL упит" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Вредност" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Име домаћина је празно!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Име корисника није унето!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Лозинка је празна!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Лозинке нису идентичне!" -#: js/messages.php:148 +#: js/messages.php:150 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Уклони изабране кориснике" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Број направљених страна." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Профил је промењен." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Ред је обрисан" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Конекције" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Local monitor configuration incompatible!" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1259,181 +1264,181 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Кеш упита" -#: js/messages.php:177 +#: js/messages.php:179 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Кеш упита" -#: js/messages.php:178 +#: js/messages.php:180 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Кеш упита" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "Заузеће" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "Укупно" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Скуп прихватника" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Укупно" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Заузеће" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "Слободне стране" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Примљено" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Конекције" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Процеси" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "бајтова" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "КБ" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "ЕБ" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s табела" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 #, fuzzy msgid "Questions" msgstr "Персијски" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Саобраћај" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Опште особине релација" -#: js/messages.php:215 +#: js/messages.php:217 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Држи се мреже" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1445,47 +1450,47 @@ msgstr "" msgid "None" msgstr "нема" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1493,154 +1498,154 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Сачувај као датотеку" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Омогућено" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, fuzzy, php-format #| msgid "Disabled" msgid "Disable %s" msgstr "Онемогућено" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "Упит је трајао %01.4f секунди" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Опште особине релација" -#: js/messages.php:254 +#: js/messages.php:256 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Опште особине релација" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Наслов извештаја" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 #, fuzzy msgid "Analysing logs" msgstr "Локални" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Захтеви за читање" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 #, fuzzy msgid "Jump to Log table" msgstr "База не постоји" -#: js/messages.php:285 +#: js/messages.php:287 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "База не постоји" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Објасни SQL" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1648,7 +1653,7 @@ msgstr "Објасни SQL" msgid "Status" msgstr "Статус" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1658,98 +1663,98 @@ msgstr "Статус" msgid "Time" msgstr "Време" -#: js/messages.php:293 +#: js/messages.php:295 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Укупно" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Профилисање" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Табела" -#: js/messages.php:296 +#: js/messages.php:298 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Карактер сет" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 #, fuzzy msgid "Log table filter options" msgstr "Опције за извоз базе" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 #, fuzzy msgid "Filter" msgstr "Датотеке" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 #, fuzzy msgid "Sum of grouped rows:" msgstr "Број сортираних редова." -#: js/messages.php:306 +#: js/messages.php:308 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Укупно" -#: js/messages.php:308 +#: js/messages.php:310 #, fuzzy msgid "Loading logs" msgstr "Локални" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Поново учитај" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1758,75 +1763,75 @@ msgstr "" msgid "Import" msgstr "Увоз" -#: js/messages.php:326 +#: js/messages.php:328 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: js/messages.php:328 +#: js/messages.php:330 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import." msgstr "Молимо изаберите примарни или јединствени кључ" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Ажурирај упит" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 -msgid "Issue" -msgstr "" - -#: js/messages.php:338 -#, fuzzy -#| msgid "Documentation" -msgid "Recommendation" -msgstr "Документација" - #: js/messages.php:339 -msgid "Rule details" +msgid "Issue" msgstr "" #: js/messages.php:340 #, fuzzy #| msgid "Documentation" -msgid "Justification" +msgid "Recommendation" msgstr "Документација" #: js/messages.php:341 -msgid "Used variable / formula" +msgid "Rule details" msgstr "" #: js/messages.php:342 +#, fuzzy +#| msgid "Documentation" +msgid "Justification" +msgstr "Документација" + +#: js/messages.php:343 +msgid "Used variable / formula" +msgstr "" + +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Погрешни параметри!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1838,73 +1843,73 @@ msgstr "Погрешни параметри!" msgid "Cancel" msgstr "Откажи" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Опште особине релација" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy msgid "Loading…" msgstr "Локални" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Процеси" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Кеш упита" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Процеси" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Није изабрана ни једна база." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Procedure" msgid "Dropping column" msgstr "Процедуре" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "Додај %s поља" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1914,73 +1919,73 @@ msgstr "Додај %s поља" msgid "OK" msgstr "У реду" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Преименуј базу у" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Копирај базу у" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Карактер сет" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Искључи провере страних кључева" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "Неуспело преузимање заглавља." -#: js/messages.php:383 +#: js/messages.php:385 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Претраживање" -#: js/messages.php:384 +#: js/messages.php:386 #, fuzzy msgid "Hide search results" msgstr "SQL упит" -#: js/messages.php:385 +#: js/messages.php:387 #, fuzzy msgid "Show search results" msgstr "SQL упит" -#: js/messages.php:386 +#: js/messages.php:388 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Преглед" -#: js/messages.php:387 +#: js/messages.php:389 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Бришем %s" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1996,47 +2001,47 @@ msgstr "" msgid "Export" msgstr "Извоз" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Број поља" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Додај новог корисника" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 #, fuzzy msgid "Hide query box" msgstr "SQL упит" -#: js/messages.php:408 +#: js/messages.php:410 #, fuzzy msgid "Show query box" msgstr "SQL упит" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -2046,7 +2051,7 @@ msgstr "SQL упит" msgid "Edit" msgstr "Промени" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -2057,94 +2062,94 @@ msgstr "Промени" msgid "Delete" msgstr "Обриши" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d није исправан број реда." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Прегледај стране вредности" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Променљива" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Нема одабраних редова" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Претраживање базе" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Атрибути" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Примарни кључ је управо додат %s." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Промени" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2152,89 +2157,89 @@ msgstr "" msgid "End of step" msgstr "На крају табеле" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 #, fuzzy msgid "Done" msgstr "Подаци" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Није изабрана ни једна база." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Додај привилегије на следећој табели" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Није изабрана ни једна база." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2244,436 +2249,436 @@ msgstr "Није изабрана ни једна база." msgid "Save" msgstr "Сачувај" -#: js/messages.php:472 +#: js/messages.php:474 #, fuzzy msgid "Hide search criteria" msgstr "SQL упит" -#: js/messages.php:473 +#: js/messages.php:475 #, fuzzy msgid "Show search criteria" msgstr "SQL упит" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Претраживање" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Имена колона" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Имена колона" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 #, fuzzy msgid "Maximum value:" msgstr "База не постоји" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL упит" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL упит" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Додај/обриши колону" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Величина показивача података" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Игнориши" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Копирај" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Линије се завршавају са" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Додај новог корисника" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Линије се завршавају са" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Изаберите референцирани кључ" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Изабери страни кључ" -#: js/messages.php:533 +#: js/messages.php:535 #, 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Број стране:" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Изабери све" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Изаберите страну коју мењате" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d није исправан број реда." -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Уреди или извези релациону схему" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Измене су сачуване" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Number of fields" msgid "Add an option for column \"%s\"." msgstr "Број поља" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Пошаљи" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Имена колона" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Прикажи све" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Оригинална позиција" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Откажи" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Прекинуто" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy msgid "Import status" msgstr "Увоз датотека" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Изабери табеле" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Штампај" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy msgid "Go to link:" msgstr "База не постоји" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Имена колона" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Направи лозинку" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Направи" -#: js/messages.php:628 +#: js/messages.php:630 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пон" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Прикажи све" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Додај ново поље" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Прикажи мрежу" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy msgid "Link with main panel" msgstr "Опције за извоз базе" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy msgid "Unlink from main panel" msgstr "Опције за извоз базе" -#: js/messages.php:639 +#: js/messages.php:641 #, 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2681,123 +2686,123 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 #, fuzzy msgid ", latest stable version:" msgstr "Направи релацију" -#: js/messages.php:648 +#: js/messages.php:650 #, fuzzy msgid "up to date" msgstr "База не постоји" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy msgid "Create view" msgstr "Направи релацију" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy msgid "Send error report" msgstr "ИД сервера" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy msgid "Submit error report" msgstr "ИД сервера" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Опште особине релација" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Прикажи отворене табеле" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Игнориши" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Прикажи поново овај упит" -#: js/messages.php:700 +#: js/messages.php:702 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Да ли стварно хоћете да " -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Коментари табеле" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy msgid "Hide arguments" msgstr "SQL упит" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2806,38 +2811,38 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Копирај базу у" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Додај ново поље" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Замени податке у табели са подацима из датотеке" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Замени податке у табели са подацима из датотеке" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Претходна" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2845,96 +2850,96 @@ msgid "Next" msgstr "Следећи" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Укупно" -#: js/messages.php:755 +#: js/messages.php:757 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарни" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:758 +#: js/messages.php:760 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "мај" -#: js/messages.php:760 +#: js/messages.php:762 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:761 +#: js/messages.php:763 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:762 +#: js/messages.php:764 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2942,78 +2947,78 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "дец" -#: js/messages.php:801 +#: js/messages.php:803 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:802 +#: js/messages.php:804 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:803 +#: js/messages.php:805 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Уто" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3021,225 +3026,225 @@ msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Уто" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Уто" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "нема" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:873 +#: js/messages.php:875 #, fuzzy #| msgid "per second" msgid "Second" msgstr "у секунди" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Користи текст поље" -#: js/messages.php:886 +#: js/messages.php:888 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d није исправан број реда." -#: js/messages.php:887 +#: js/messages.php:889 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d није исправан број реда." -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d није исправан број реда." -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d није исправан број реда." -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d није исправан број реда." -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d није исправан број реда." -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d није исправан број реда." -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d није исправан број реда." -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d није исправан број реда." -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d није исправан број реда." -#: js/messages.php:925 +#: js/messages.php:927 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d није исправан број реда." -#: js/messages.php:930 +#: js/messages.php:932 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d није исправан број реда." -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d није исправан број реда." -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d није исправан број реда." -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Грешка" @@ -3290,34 +3295,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Величина фонта" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "in query" msgid "Requery" msgstr "у упиту" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3336,92 +3341,73 @@ msgid "Database" msgstr "База података" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Delete relation" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Обриши релацију" -msgstr[1] "Обриши релацију" -msgstr[2] "Обриши релацију" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "Обележивач је управо обрисан." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Обриши релацију" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "Објасни SQL" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Профилисање" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Delete relation" msgid "Bookmark" msgstr "Обриши релацију" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query cache" msgid "Query failed" msgstr "Кеш упита" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy msgid "SQL Query Console" msgstr "SQL упит" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 #, fuzzy msgid "Clear" msgstr "Календар" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "SQL историјат" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3439,173 +3425,173 @@ msgstr "SQL историјат" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Опције" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Delete relation" msgid "Bookmarks" msgstr "Обриши релацију" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy msgid "Press Ctrl+Enter to execute query" msgstr "SQL упит" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy msgid "Press Enter to execute query" msgstr "SQL упит" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Растући" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Опадајући" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "Колона" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy msgid "Group queries" msgstr "SQL упит" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy msgid "Ungroup queries" msgstr "SQL упит" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Прикажи боју" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Add new field" msgid "Hide trace" msgstr "Додај ново поље" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "Колона" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Освежи" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "и" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Delete relation" msgid "Add bookmark" msgstr "Обриши релацију" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "Назив" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy msgid "Target database" msgstr "Претраживање базе" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Delete relation" msgid "Share this bookmark" msgstr "Обриши релацију" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy msgid "Set default" msgstr "Увоз датотека" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "Flush query cache" msgid "Show query history at start" msgstr "Очисти кеш упита" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Пређи на копирану табелу" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to set configured collation connection!" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -3613,21 +3599,21 @@ msgid "" "configured)." msgstr "(или прикључак локалног MySQL сервера није исправно подешен)" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сервер не одговара" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Конекција за controluser-а, онако како је дефинисана у вашој конфигурацији, " @@ -4006,7 +3992,7 @@ msgstr "Може бити приближно. Видите [doc@faq3-11]FAQ 3.11 #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4142,18 +4128,18 @@ msgstr "Пријем датотеке заустављен због екстен msgid "Unknown error in file upload." msgstr "Непозната грешка при слању датотеке." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Грешка у премештању примљене датотеке, погледајте [doc@faq1-11]FAQ 1.11[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4221,8 +4207,8 @@ msgid "Keyname" msgstr "Име кључа" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4273,13 +4259,13 @@ msgstr "Кључ %s је обрисан." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Одбаци" @@ -4377,7 +4363,7 @@ msgstr "Привилегије" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Операције" @@ -4392,7 +4378,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4807,11 +4793,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "Нема исправне путање до слика за тему %s!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Преглед не постоји." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "преузми" @@ -5083,21 +5069,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Укупно" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Максимална величина: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5108,38 +5094,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL рече: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Објасни SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Прескочи објашњавање SQL-a" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "без PHP кода" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Изврши SQL упит" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Направи PHP код" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5235,6 +5221,10 @@ msgstr "на сат" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5355,46 +5345,46 @@ msgstr "Додај %s поља" msgid "Attributes" msgstr "Атрибути" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file!" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Неисправан индекс сервера: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Неисправан назив сервера %1$s. Молимо проверите своју конфигурацију." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Сервер" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Неисправан метод аутентикације је задат у конфигурацији:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5402,24 +5392,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Требало би да унапредите ваш %s сервер на верзију %s или новију." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6129,7 +6119,7 @@ msgstr "Стави имена поља у први ред" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6137,7 +6127,7 @@ msgstr "Поља ограничена са" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6159,14 +6149,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Линије се завршавају са" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6800,7 +6790,7 @@ msgid "Column names in first row" msgstr "Стави имена поља у први ред" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -8313,7 +8303,7 @@ msgid "Table %s has been emptied." msgstr "Табела %s је испражњена." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8456,8 +8446,8 @@ msgid "No data to display" msgstr "База не постоји" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." @@ -8507,56 +8497,56 @@ msgstr[2] "" msgid "No column selected." msgstr "Нема одабраних редова" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Изабрани корисници су успешно обрисани." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Врста упита" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, fuzzy, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "Изабрани корисници су успешно обрисани." -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Промени" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Кључ" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Текст кључ" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8568,7 +8558,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Нема измена" @@ -9408,55 +9398,55 @@ msgstr "MySQL је вратио празан резултат (нула редо msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "База не постоји" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "База не постоји" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Само структура" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9507,52 +9497,52 @@ msgstr "или" msgid "web server upload directory:" msgstr "директоријум за слање веб сервера" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Нови запис" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Поново покрени уношење са %s редова" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "и онда" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Унеси као нови ред" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 #, fuzzy msgid "Show insert query" msgstr "Приказ као SQL упит" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Назад на претходну страну" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Додај још један нови ред" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Врати се на ову страну" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Уреди следећи ред" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9562,7 +9552,7 @@ msgstr "" "Користите TAB тастер за померање од поља до поља, или CTRL+стрелице за " "слободно померање" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9574,11 +9564,11 @@ msgstr "" msgid "Value" msgstr "Вредност" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Приказ као SQL упит" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10467,7 +10457,7 @@ msgstr "Поправи табелу" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10483,34 +10473,34 @@ msgid "Delete the table (DROP)" msgstr "База не постоји" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 #, fuzzy msgid "Check" msgstr "Чешки" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 #, fuzzy msgid "Repair" msgstr "Поправи табелу" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10538,37 +10528,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Провери референцијални интегритет:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Не могу да преместим табелу у саму себе!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Не могу да копирам табелу у саму себе!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Табела %s је померена у %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Табела %s је копирана у %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Има табеле је празно!" @@ -10762,7 +10752,7 @@ msgstr "Опције за извоз базе" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Приказ података табеле" @@ -10788,21 +10778,21 @@ msgstr "Опис" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Структура табеле" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Структура за поглед (view)" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Структура која замењује поглед" @@ -10920,7 +10910,7 @@ msgid "Database:" msgstr "База података" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11036,7 +11026,7 @@ msgid "Data creation options" msgstr "Опције трансформације" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11105,7 +11095,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11157,61 +11147,61 @@ msgstr "се користи" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Ограничења за извезене табеле" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Ограничења за табеле" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ограничења за извезене табеле" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Унутар табела:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "Додај AUTO_INCREMENT вредност" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Додај AUTO_INCREMENT вредност" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВИ ЗА ТАБЕЛУ" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИЈЕ ТАБЕЛЕ" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Структура за поглед (view)" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11248,7 +11238,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11268,34 +11258,34 @@ msgstr "" msgid "Column names: " msgstr "Имена колона" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Неисправни параметри за CSV увоз: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Неисправан формат CSV улаза на линији %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Неисправан број поља у CSV улазу на линији %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Овај додатак не подржава компресоване увозе!" @@ -11303,29 +11293,29 @@ msgstr "Овај додатак не подржава компресоване msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." msgstr "Неисправан формат CSV улаза на линији %d." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11335,23 +11325,23 @@ msgstr "Open Document Spreadsheet" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -11365,7 +11355,7 @@ msgstr "Мод SQL компатибилности" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14568,15 +14558,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14591,17 +14577,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14623,23 +14610,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Број отворених табела." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Број отворених табела." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14668,17 +14655,17 @@ msgstr "Табела %s је одбачена" msgid "Variable name was expected." msgstr "Шаблон имена датотеке" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "На почетку табеле" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14699,19 +14686,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Ред је обрисан" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15423,7 +15410,7 @@ msgstr "Прикажи садржај (схему) табеле" msgid "Invalid table name" msgstr "Неисправан назив табеле" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16554,7 +16541,7 @@ msgid "at beginning of table" msgstr "На почетку табеле" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16599,7 +16586,7 @@ msgstr "Позиција" msgid "Edit partitioning" msgstr "Додај ново поље" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16734,12 +16721,12 @@ msgstr "назив за VIEW" msgid "Column names" msgstr "Имена колона" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Промени име табеле у " -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "База не постоји" @@ -17928,6 +17915,19 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "макс. истовремених веза" +#, fuzzy +#~| msgid "Delete relation" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Обриши релацију" +#~ msgstr[1] "Обриши релацију" +#~ msgstr[2] "Обриши релацију" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "Обележивач је управо обрисан." + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/sr@latin.po b/po/sr@latin.po index 1e6cf87eef..a8368c93ce 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian (latin) " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Sačuvaj kao datoteku" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Poništi" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Izaberi sve" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Nedostaje vrednost u obrascu!" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "bar jednu od reči" -#: js/messages.php:118 +#: js/messages.php:120 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number!" msgstr "Nije ispravan broj porta" -#: js/messages.php:119 +#: js/messages.php:121 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid length!" msgstr "Nije ispravan broj porta" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add Index" msgid "Add index" msgstr "Dodaj indeks" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Izmeni indeks" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format #| msgid "Add %d column(s) to index" msgid "Add %s column(s) to index" msgstr "Dodaj %d kolona u indeks" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Napravi relaciju" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Napravi relaciju" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Columns enclosed with:" msgid "Composite with:" msgstr "Kolone uokvirene sa:" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %d column(s) to index" msgid "Please select column(s) for the index." msgstr "Dodaj %d kolona u indeks" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Morate dodati barem jednu kolonu." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "u upitu" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "Zahvaćeni redovi:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL upit" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y vrednosti" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Ime domaćina je prazno!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Ime korisnika nije uneto!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Uklanjanje izabranih korisnika" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Zatvori" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Broj napravljenih strana." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profil je promenjen." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Red je obrisan" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Ostalo" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Veze / Procesi" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "Konfiguracija lokalnog monitoringa nije kompatibilna" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1263,167 +1268,167 @@ msgstr "" "resetujete konfiguraciju na početbe vrednosti u opciji menija " "Podešavanja." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Efikasnost query cache-a" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Upotreba query cache-a" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Iskorišćeno query cache-a" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Zauzetost sistemskog procesora" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Sistemska memorija" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Sistemski svop" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Prosečno opterećenje" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Ukupno memorije" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Keširana memorija" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Baferisana memorija" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Slobodna memorija" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Iskorišćena memorija" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Ukupno Swap" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Keširani svop" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Iskorišćeni svop" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Slobodno Swap" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Poslato bajtova" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Primljeno bajtova" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Veze" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Procesi" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabela" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Pitanja" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Saobraćaj" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Podešavanja" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Dodaj grafikon na grid" -#: js/messages.php:218 +#: js/messages.php:220 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "Molimo vas da dodate bar jednu promenljivu u seriju podataka" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1435,47 +1440,47 @@ msgstr "Molimo vas da dodate bar jednu promenljivu u seriju podataka" msgid "None" msgstr "nema" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Nastavi praćenje" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Zaustavi praćenje" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log i slow_query_log su omogućeni." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log je omogućen." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log je omogućen." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log i general_log su isključeni." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output nije postavljen na TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output je postavljen na TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1486,12 +1491,12 @@ msgstr "" "izvršavaju više od %d sekundi. Preporučljivo je da podesite long_query_time " "na 0-2 sekunde, u zavisnosti od vašeg sistema." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time je postavljeno na %d sekund(i)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1500,31 +1505,31 @@ msgstr "" "podrazumevane vrednosti kad server bude restartovan:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Postavi log_output na %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Omogući %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Onemogući %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Set long_query_time to %ds" msgid "Set long_query_time to %d seconds." msgstr "Postavi long_query_time na %ds" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1532,57 +1537,57 @@ msgstr "" "Nemate prava da promenite ove promenljive. Molimo vas da se prijavite kao " "root ili kontaktirajte vašeg administratora baze." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Izmeni podešavanja" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Trenutna podešavanja" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Naslov grafikona" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Diferencijalni" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Podeljeno sa %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Jedinica" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Iz dnevnika sporih upita" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Iz glavnog dnevnika" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Analiziranje logova" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Analiziranje i učitavanje dnevnika. Ovo može da potraje neko vreme." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Otkaži zahtev" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1592,7 +1597,7 @@ msgstr "" "Međutim samo sam SQL upit je iskorišćen kao kriterijum za grupisanje, tako " "da ostali atributi upita, kao što je vreme pokretanja, mogu da se razlikuju." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1601,32 +1606,32 @@ msgstr "" "Pošto je grupisanje INSERT upita izabrano, INSERT upiti u istu tabelu su " "takođe grupisani zajedno, bez obzira na umetnute podatke." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "Podaci iz dnevnika učitani. Upiti izvršeni u ovom vremenskom razmaku:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Preskoči na Log tabelu" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Nema podataka" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Dnevnik analiziran, ali ništa nije pronađeno u ovom vremenskom razmaku." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Aniliziram…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Objasni izlaz" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1634,7 +1639,7 @@ msgstr "Objasni izlaz" msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1644,58 +1649,58 @@ msgstr "Status" msgid "Time" msgstr "Vreme" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Ukupno vreme:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Rezultat profilisanja" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabela" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Grafikon" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Opcije filtera log tabele" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filter" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filtriraj upite po word/regexp:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Grupisanje upita, ignoriši promenljive vrednosti u WHERE klauzulama" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Suma grupisanih redova:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Ukupno:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Učitavanje logova" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Osvežavanje monitoringa neuspešno" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1705,28 +1710,28 @@ msgstr "" "odgovor. To se najverovatnije desilo jer je sesija istekla. Osvežavanje " "stranice i ponovno prijavljivanje trebalo bi da pomogne." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Ponovo učitaj stranu" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Zahvaćeni redovi:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Neuspelo analiziranje konfiguracione datoteke. Izgleda da sadržaj nije u " "validnom JSON formatu." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Neuspelo formiranje grafikona sa uvezenom konfiguracijom. Resetujem na " "podrazumevanu konfiguraciju…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1735,69 +1740,69 @@ msgstr "" msgid "Import" msgstr "Uvoz" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Podešavanje Import monitor-a" -#: js/messages.php:328 +#: js/messages.php:330 #, fuzzy #| msgid "Please select the file you want to import" msgid "Please select the file you want to import." msgstr "Molimo izaberite datoteku koju želite da uvezete" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "Analiza upita" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Sistem za savete" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Mogući problemi sa performansama" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Pitanje" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Preporuka" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Detalji pravila" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Opravdanje" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Korišćene promenljiva/formula" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Test" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Pogrešni parametri!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1809,72 +1814,72 @@ msgstr "Pogrešni parametri!" msgid "Cancel" msgstr "Otkaži" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Izmeni podešavanja" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Učitavanje…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Obrada zahteva" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Keš upita" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Error in processing request" msgid "Error in processing request" msgstr "Greška u procesiranju zahteva" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Brisanje kolone" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Adding Primary Key" msgid "Adding primary key" msgstr "Dodavanje primarnog ključa" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1884,64 +1889,64 @@ msgstr "Dodavanje primarnog ključa" msgid "OK" msgstr "U redu" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Kliknite da bi ste zatvorili ovo obaveštenje" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Preimenovanje baza podataka" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Kopiranje baze" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Izmena seta znakova" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Isključi provere stranih ključeva" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy msgid "Failed to get real row count." msgstr "Neuspelo upisivanje datoteke na disk." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Pretraga" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Sakrij tezultate pretrage" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Prikaži rezultate pretrage" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Pregledanje" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Brisanje" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definicija uskladištene funkcije mora imati RETURN iskaz!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1957,48 +1962,48 @@ msgstr "Definicija uskladištene funkcije mora imati RETURN iskaz!" msgid "Export" msgstr "Izvoz" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET uređivač" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Vrednosti za kolonu %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Vrednosti za novu kolonu" -#: js/messages.php:398 +#: js/messages.php:400 #, 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:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Dodaj %d vrednost(i)" -#: js/messages.php:403 +#: js/messages.php:405 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:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Sakrij okvir sa upitima" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Prikažiokvir sa upitima" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -2008,7 +2013,7 @@ msgstr "Prikažiokvir sa upitima" msgid "Edit" msgstr "Promeni" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -2019,96 +2024,96 @@ msgstr "Promeni" msgid "Delete" msgstr "Obriši" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 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:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Pregledaj strane vrednosti" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Promenljiva" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Nema odabranih redova" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Pretraživanje baze" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Slobodna memorija" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "Doprinesi" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Primarni ključ je upravo dodat %s." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Izveštaj o praćenju" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2116,88 +2121,88 @@ msgstr "" msgid "End of step" msgstr "Na kraju tabele" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Gotovo" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Dodaj privilegije na sledećoj tabeli" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2207,168 +2212,168 @@ msgstr "Nije izabrana ni jedna baza." msgid "Save" msgstr "Sačuvaj" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Sakrij kriterijume za pretragu" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Prikaži kriterijume za pretragu" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "Pretraga tabele" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "Imena kolona: " -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "Imena kolona: " -#: js/messages.php:477 +#: js/messages.php:479 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "Maksimalan broj tabela" -#: js/messages.php:478 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "Maksimalan broj tabela" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "Sakrij kriterijume za pretragu" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "Prikaži kriterijume za pretragu" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Svaka tačka pretsavlja jedan red podataka." -#: js/messages.php:488 +#: js/messages.php:490 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:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Izaberi dve kolone" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Izaberite dve različite kolone" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Sadržaj tačke podataka" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Kopiraj" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Tačka" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Linija teksta" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometrija" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Unutrašnji prsten" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Spoljni prsten" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Izaberite referencirani ključ" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Izaberi strani ključ" -#: js/messages.php:533 +#: js/messages.php:535 #, 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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?" @@ -2376,95 +2381,95 @@ msgstr "" "Niste snimili izmene u raspored. Biće izgubljene ako ih ne snimite. Da li " "želite da nastavite?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Ime strane" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "Izaberi stranu" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Jedinica" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Izaberite stranu koju menjate" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Nije ispravan broj porta" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Uredi ili izvezi relacionu shemu" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Izmene su sačuvane" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "Dodaj opciju za kolonu " -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Pošalji" -#: js/messages.php:559 +#: js/messages.php:561 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "Prtisni escape da otkažeš uređivanje" -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2472,49 +2477,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:564 +#: js/messages.php:566 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "Povucite da bi ste promenili redosled" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "Kliknite da postavite/skinete oznaku" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Copy column name" msgid "Double-click to copy column name." msgstr "Kopiraj ime kolone" -#: js/messages.php:574 +#: js/messages.php:576 #, 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Prikaži sve" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2523,60 +2528,60 @@ msgstr "" "izmene u gridu, checkbox, Edit, Copy i Delete linkovi može da se desi da ne " "rade nakon snimanja." -#: js/messages.php:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Originalna pozicija" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Otkaži" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Prekinuto" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Podrazumevane opcije uvoza" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Izaberi tabele" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Štampaj" -#: js/messages.php:606 +#: js/messages.php:608 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -2585,7 +2590,7 @@ msgstr "" "Možete izmeniti većinu kolona
tako što kliknete direktno na njen " "sadržaj." -#: js/messages.php:611 +#: js/messages.php:613 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -2594,72 +2599,72 @@ msgstr "" "Možete izmeniti većinu kolona
tako što kliknete direktno na njen " "sadržaj." -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "Idi na link" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "Kopiraj ime kolone" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Generiši lozinku" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Generiši" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Još" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Prikaži sve" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "Sakrij indekse" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Prikaži logo u levom okviru" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Prilagođavanje glavnog okvira" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Prilagođavanje glavnog okvira" -#: js/messages.php:639 +#: js/messages.php:641 #, 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2669,124 +2674,124 @@ msgstr "" "nadogradnji. Najnovije verzija je %s, objavljena %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", poslednja stabilna verzija:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "Ažurno" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Napravi pogled" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Port na serveru" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Port na serveru" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Izmeni podešavanja" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Prikaži otvorene tabele" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoriši" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Prikaži ponovo ovaj upit" -#: js/messages.php:700 +#: js/messages.php:702 #, 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:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Izvršeni upiti" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentari tabele" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Sakrij tezultate pretrage" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2795,385 +2800,385 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopiraj bazu u" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "Zameni prefix tabele" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Zameni prefix tabele" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopiraj tabelu sa prefiksom" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Prethodni" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Sledeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Danas" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Januar" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Februar" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Mart" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "April" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Maj" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Jun" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Jul" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Avgust" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Septembar" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Oktobar" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Novembar" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Decembar" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Avg" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Dec" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Nedelja" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Ponedeljak" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Utorak" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Sreda" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Četvrtak" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Petak" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Subota" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Sre" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Ut" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Sr" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Če" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Su" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "kalendar-mesec-godina" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "nema" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Čas" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minut" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Sekund" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Koristi tekst polje" -#: js/messages.php:886 +#: js/messages.php:888 #, 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:889 #, 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:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Nije ispravan broj porta" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Nije ispravan broj porta" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Nije ispravan broj porta" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Nije ispravan broj porta" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Nije ispravan broj porta" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Nije ispravan broj porta" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Nije ispravan broj porta" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Nije ispravan broj porta" -#: js/messages.php:925 +#: js/messages.php:927 #, 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:930 +#: js/messages.php:932 #, 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:936 +#: js/messages.php:938 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Nije ispravan broj porta" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Nije ispravan broj porta" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Greška" @@ -3224,36 +3229,36 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Postojeću konfiguracionu datoteku (%s) nije moguće pročitati." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Pogrešno podešena prava pristupa na konfiguracionoj datoteci, ne bi trebala " "da bude svima dostupna za pisanje!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Veličina fonta" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "subquery" msgid "Requery" msgstr "podupit" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3272,94 +3277,75 @@ msgid "Database" msgstr "Baza podataka" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Delete relation" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Obriši relaciju" -msgstr[1] "Obriši relaciju" -msgstr[2] "Obriši relaciju" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "Deljeno" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "Obeleživač je upravo obrisan." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Obriši relaciju" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "Objasni SQL" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profilisanje" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Delete relation" msgid "Bookmark" msgstr "Obriši relaciju" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query cache" msgid "Query failed" msgstr "Keš upita" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "Query execution time" msgid "Queried time" msgstr "Vreme izvršavanja upita" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "Okvir sa SQL upitima" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Obriši" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "SQL istorijat" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3377,183 +3363,183 @@ msgstr "SQL istorijat" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Opcije" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Delete relation" msgid "Bookmarks" msgstr "Obriši relaciju" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Debagovanje SQL-a" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute every" msgid "Press Ctrl+Enter to execute query" msgstr "Izvrrši svaki" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute every" msgid "Press Enter to execute query" msgstr "Izvrrši svaki" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Rastući" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Opadajući" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Other" msgid "Order:" msgstr "Ostalo" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "Kolona" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute every" msgid "Execution order" msgstr "Izvrrši svaki" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Other" msgid "Order by:" msgstr "Ostalo" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "SQL upiti" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "SQL upiti" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Prikaži boju" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide indexes" msgid "Hide trace" msgstr "Sakrij indekse" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "Kolona" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Osveži" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "i" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Delete relation" msgid "Add bookmark" msgstr "Obriši relaciju" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "Naziv" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Ciljna baza" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Delete relation" msgid "Share this bookmark" msgstr "Obriši relaciju" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Export defaults" msgid "Set default" msgstr "Podrazumevane opcije izvoza" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "Slow query rate" msgid "Show query history at start" msgstr "Stopa sporih upita" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Pređi na kopiranu tabelu" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "Neuspelo čitanje iz konfiguracione datoteke" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3561,19 +3547,19 @@ msgstr "" "Nema odgovora sa servera (ili priključak lokalnog servera nije ispravno " "podešen)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Server ne odgovara." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Konekcija za controluser-a, onako kako je definisana u vašoj konfiguraciji, " @@ -3925,7 +3911,7 @@ msgstr "Može biti približno. Vidite [doc@faq3-11]FAQ 3.11[/doc]" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4061,7 +4047,7 @@ msgstr "Prijem datoteke zaustavljen zbog ekstenzije." msgid "Unknown error in file upload." msgstr "Nepoznata greška pri slanju datoteke." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -4069,11 +4055,11 @@ msgstr "" "Greška u premeštanju primljene datoteke, pogledajte [doc@faq1-11]FAQ 1.11[/" "doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Greška kod premeštanja primljene datoteke." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -4143,8 +4129,8 @@ msgid "Keyname" msgstr "Ime ključa" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4194,13 +4180,13 @@ msgstr "Indeks %s je obrisan." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Odbaci" @@ -4300,7 +4286,7 @@ msgstr "Privilegije" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operacije" @@ -4315,7 +4301,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4733,11 +4719,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "Nema ispravne putanje do slika za temu %s!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Pregled ne postoji." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "preuzmi" @@ -5011,23 +4997,23 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Ukupno" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Maksimalna veličina: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Statički podaci" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5038,38 +5024,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL reče: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Preskoči objašnjavanje SQL-a" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "bez PHP koda" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Izvrši SQL upit" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Napravi PHP kod" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -5162,6 +5148,10 @@ msgstr "po satu" msgid "per day" msgstr "po danu" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "Deljeno" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5280,13 +5270,13 @@ msgstr "Dodaj kolonu" msgid "Attributes" msgstr "Atributi" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to read configuration file!" msgstr "Neuspelo čitanje iz konfiguracione datoteke" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -5294,32 +5284,32 @@ msgstr "" "Ovo obično znači da postoji sintaksna greška, molimo vas pogledajte greške " "prikazane ispod." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Neispravan indeks servera: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Neispravan naziv servera %1$s. Molimo proverite svoju konfiguraciju." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Server" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Neispravan metod autentikacije je zadat u konfiguraciji:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5327,24 +5317,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format 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:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "moguća zloupotreba" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "otkriven numerički ključ" @@ -6130,7 +6120,7 @@ msgstr "Stavi imena kolona u prvi red" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Columns enclosed with:" msgid "Columns enclosed with" @@ -6138,7 +6128,7 @@ msgstr "Kolone uokvirene sa:" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Columns escaped with:" msgid "Columns escaped with" @@ -6160,14 +6150,14 @@ msgstr "Izbaci CRLF znakove u kolonama" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "Kolone se završavaju sa" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated with:" msgid "Lines terminated with" @@ -6837,7 +6827,7 @@ msgid "Column names in first row" msgstr "Imena kolona u prvom redu" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Ne uvozi prazne redove" @@ -8433,7 +8423,7 @@ msgid "Table %s has been emptied." msgstr "Tabela %s je ispražnjena." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8574,8 +8564,8 @@ msgid "No data to display" msgstr "Nema podataka" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8626,55 +8616,55 @@ msgstr[2] "" msgid "No column selected." msgstr "Nema odabranih redova" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Greška u upitu" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Promeni" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Ključ" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Tekst ključ" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -8686,7 +8676,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Nema izmena" @@ -9493,54 +9483,54 @@ msgstr "MySQL je vratio prazan rezultat (nula redova)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Idi na bazu: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Idi na tabelu: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9590,48 +9580,48 @@ msgstr "ili" msgid "web server upload directory:" msgstr "direktorijum za slanje veb servera" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Uredi/Umetni" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Nastavi umetanje sa %s redova" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "i onda" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Prikaži insert upit" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Vrati se na ovu stranu" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Uredi sledeći red" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9641,7 +9631,7 @@ msgstr "" "Koristite TAB taster za pomeranje od polja do polja, ili CTRL+strelice za " "slobodno pomeranje" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9653,11 +9643,11 @@ msgstr "" msgid "Value" msgstr "Vrednost" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Prikaz kao SQL upit" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10538,7 +10528,7 @@ msgstr "Popravi tabelu" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Brisanje podataka ili tabele" @@ -10551,32 +10541,32 @@ msgid "Delete the table (DROP)" msgstr "Brisanje tabele (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Provera" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Popravi" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10604,37 +10594,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Proveri referencijalni integritet:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Ne mogu da premestim tabelu u samu sebe!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Ne mogu da kopiram tabelu u samu sebe!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s je pomerena u %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s je kopirana u %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Ima tabele je prazno!" @@ -10815,7 +10805,7 @@ msgstr "Opcije za izvoz podataka" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Prikaz podataka tabele" @@ -10839,21 +10829,21 @@ msgstr "Definicija" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Struktura tabele" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktura za pogled (view)" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Struktura koja zamenjuje pogled" @@ -10959,7 +10949,7 @@ msgid "Database:" msgstr "Baza podataka" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11069,7 +11059,7 @@ msgid "Data creation options" msgstr "Opcije transformacije" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11138,7 +11128,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11190,61 +11180,61 @@ msgstr "se koristi" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Ograničenja za izvezene tabele" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Ograničenja za tabele" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Ograničenja za izvezene tabele" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Unutar tabela:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Dodaj AUTO_INCREMENT vrednost" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPOVI ZA TABELU" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE TABELE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Greška kod čitanja podataka:" @@ -11278,7 +11268,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11296,33 +11286,33 @@ msgstr "" msgid "Column names: " msgstr "Imena kolona: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Neispravni parametri za CSV uvoz: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Neispravan format CSV ulaza na liniji %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Neispravan broj kolona u CSV ulazu na liniji %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Ovaj dodatak ne podržava kompresovane uvoze!" @@ -11330,29 +11320,29 @@ msgstr "Ovaj dodatak ne podržava kompresovane uvoze!" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." msgstr "Neispravan format CSV ulaza na liniji %d." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11362,23 +11352,23 @@ msgstr "Open Document Spreadsheet" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -11392,7 +11382,7 @@ msgstr "SQL komaptibilni mod:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14467,15 +14457,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14490,17 +14476,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14522,23 +14509,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Broj otvorenih tabela." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Broj otvorenih tabela." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14569,17 +14556,17 @@ msgstr "Događaj %1$s je kreiran." msgid "Variable name was expected." msgstr "Šablon imena tabele" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Na početku tabele" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14600,19 +14587,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15313,7 +15300,7 @@ msgstr "Prikaži sadržaj (shemu) tabele" msgid "Invalid table name" msgstr "Neispravan naziv tabele" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16383,7 +16370,7 @@ msgid "at beginning of table" msgstr "Na početku tabele" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16428,7 +16415,7 @@ msgstr "Pozicija" msgid "Edit partitioning" msgstr "Uredi indeks" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Uredi pogled" @@ -16559,11 +16546,11 @@ msgstr "naziv za VIEW" msgid "Column names" msgstr "Imena kolona" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Preimenuj pogled u" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Delete the table (DROP)" msgid "Delete the view (DROP)" @@ -17687,6 +17674,19 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je postavljeno na 0" +#, fuzzy +#~| msgid "Delete relation" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Obriši relaciju" +#~ msgstr[1] "Obriši relaciju" +#~ msgstr[2] "Obriši relaciju" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "Obeleživač je upravo obrisan." + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/sv.po b/po/sv.po index e0b152c239..a1ac201ff9 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-11-12 10:41+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Swedish " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -986,160 +990,160 @@ msgstr "" "Är du säker på att du vill ändra alla de kolumn-sorteringar och konvertera " "data?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Avsluta och Spara" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Återställ" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Återställ alla" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Värde saknas i formuläret!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Välj minst ett av alternativen!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Var vänlig ange ett giltigt nummer!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Var vänlig ange en giltig längd!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Lägg till index" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Redigera register" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Lägg till %s kolumn(er) till index" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Skapa index för singelkolumn" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Skapa sammansatta index" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Omges av:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Välj kolumner för indexet." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Du måste lägga till åtminstone en kolumn." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Förhandsgranska SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Simulera körning" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Matchande rader:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL-fråga:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Y-värden" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Värdnamnet är tomt!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Användarnamnet saknas!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Lösenordet saknas!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Lösenorden överensstämmer inte!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Tar bort valda användare" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Stäng" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Mallen skapades." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Mallen har lästs in." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Mallen uppdaterades." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Mallen har tagits bort." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Annan" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "," -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Anslutningar / Processer" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Lokal övervakningskonfiguration ej kompatibel!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1151,155 +1155,155 @@ msgstr "" "troligt att din nuvarande konfiguration inte fungerar längre. Återställ " "konfigurationen i Inställningar-menyn." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Frågecache effektivitet" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Användning av frågecache" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Använd frågecache" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Processoranvändning (CPU)" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Systemminne" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "System swap" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Genomsnittlig last" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Totalt minne" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Cachat minne" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Buffrat minne" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Ledigt minne" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Använt minne" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Totalt växlingsutrymme" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Cachelagrade" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Använt växlingsutrymme" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Ledigt växlingsutrymme" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Antal bitar som skickats" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Antal mottagna bital" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Anslutningar" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Processer" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "bytes" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "kB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "Mb" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tabell(er)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Frågor" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Inställningar" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Addera diagrammet till rutnätet" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Lägg till minst en variabel till serien!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1311,47 +1315,47 @@ msgstr "Lägg till minst en variabel till serien!" msgid "None" msgstr "Inget" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Återuppta övervakning" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Pausa övervakning" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Starta automatisk uppdatering" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Stoppa uppdatering" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log och slow_query_log är aktiverade." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log är aktiverad." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log är aktiverad." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log och general_log är deaktiverade." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output är inte definierad som TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output är definerad som TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1362,12 +1366,12 @@ msgstr "" "tid än %d sekunder. Det är lämpligt att definiera long_query_time till 0-2 " "sekunder, beroende på ditt system." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time är definerad till %d sekund(er)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1376,30 +1380,30 @@ msgstr "" "standardvärdet när servern startas om:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Sätt log_output till %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Aktivera %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Inaktivera %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Sätt long_query_time till %d sekunder." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1407,57 +1411,57 @@ msgstr "" "Du kan inte ändra dessa variabler. Logga in som root eller kontakta din " "databasadministratör." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Ändra inställningar" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Nuvarande inställningar" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Diagramtitel" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Differentiell" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Dividerat med %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Enhet" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Från långsam logg" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Från allmän logg" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "Databasnamnet är inte känt för denna fråga i serverns loggar." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Analyserar loggar" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Analyserar och laddar loggar. Detta kan ta lite tid." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Avbryt begäran" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1467,7 +1471,7 @@ msgstr "" "Men endast SQL-frågan själv blir jämförd, så därför kan frågornas andra " "attribut som starttid variera." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1476,31 +1480,31 @@ msgstr "" "Sedan gruppering av INSERT-frågor har valts, är INSERT-frågor till samma " "tabell också grupperade tillsammans, oberoende av det data som infogats." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "Loggdata laddad. Frågor utförda under denna tidsperiod:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Gå till tabellogg" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Inga data hittades" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "Logg analyserad, men inget data hittades under denna tidsperiod." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Analyserar…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Förklara utdata" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1508,7 +1512,7 @@ msgstr "Förklara utdata" msgid "Status" msgstr "Status" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1518,58 +1522,58 @@ msgstr "Status" msgid "Time" msgstr "Tid" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Total tid:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Profilering av resultat" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tabell" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Diagram" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Filteralternativ för loggtabell" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filtrera" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Filtrera frågor med ord/regexp:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Gruppfrågor, ignorera variabeldata i WHERE-klausuler" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Summan av grupperade rader:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Totalt:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Läser in loggar" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Uppdateringen av övervakningen misslyckades" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1579,27 +1583,27 @@ msgstr "" "beror troligen på att din session har upphört. Om du laddar om sidan och " "matar in dina inloggningsuppgifter igen borde det lösa problemet." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Uppdatera sidan" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Påverkade rader:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Parsning av config-filen misslyckades. Det verkar inte vara giltig JSON-kod." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Misslyckades skapa diagrammets rutnät med den importerade konfigurationen. " "Återställer till ursprunglig konfiguration…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1608,65 +1612,65 @@ msgstr "" msgid "Import" msgstr "Importera" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Importera monitorkonfigurationen" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Välj den fil du vill importera." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Inga filer tillgängliga för import på servern!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Analysera frågan" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Handledningssystem" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Möjliga prestandaproblem" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Problem" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Rekommendation" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Regeldetaljer" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Motivering" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Använd variabel / formel" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Test" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Formatering SQL…" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Felaktiga parametrar!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1678,60 +1682,60 @@ msgstr "Felaktiga parametrar!" msgid "Cancel" msgstr "Avbryt" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Sida-relaterade inställningar" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Verkställ" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Laddar…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Begäran avbröts!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "Bearbetar begäran" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "Begäran misslyckades!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Fel i processbegäran" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Felkod: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Felmeddelande: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Inga databaser markerade." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Tar bort kolumn" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Lägg till primär nyckel" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1741,56 +1745,56 @@ msgstr "Lägg till primär nyckel" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Klicka för att ta bort detta meddelande" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Byta namn på databaser" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Kopiera databas" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Ändrar teckenuppsättning" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Inaktivera kontroll av främmande nycklar" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Det gick inte att få riktiga radantal." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Söker" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Dölj sökresultat" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Visa sökresultat" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Bläddrar bland" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Raderar" -#: js/messages.php:391 +#: js/messages.php:393 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:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1806,44 +1810,44 @@ msgstr "" msgid "Export" msgstr "Exportera" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET editor" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Värden för kolumn %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Värden för ny kolumn" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Mata in varje värde i separat fält." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Lägg till %d värde(n)" -#: js/messages.php:403 +#: js/messages.php:405 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:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Göm sök-rutan" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Visa frågerutan" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1853,7 +1857,7 @@ msgstr "Visa frågerutan" msgid "Edit" msgstr "Redigera" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1864,41 +1868,41 @@ msgstr "Redigera" msgid "Delete" msgstr "Radera" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 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:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Bläddra bland främmande värden" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Ingen auto-sparad fråga" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Miljövariabeln %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Välj" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Kolumnväljaren" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Sök i denna lista" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1907,15 +1911,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:424 +#: js/messages.php:426 msgid "See more" msgstr "Se mer" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Är du säker?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1923,51 +1927,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:430 +#: js/messages.php:432 msgid "Continue" msgstr "Fortsätt" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Lägg till primär nyckel" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "En primär nyckel har lagts till för %s." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Tar dig till nästa steg…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Delslut" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Andra steget av normalisering (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Klart" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Bekräfta partiellt beroenden" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Valda partiell beroenden är följande:" -#: js/messages.php:444 +#: js/messages.php:446 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1975,19 +1979,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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Inga partiella beroenden valda!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Dölj partiella beroende-listan" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1995,41 +1999,41 @@ msgstr "" "Bara lugn! Det kan ta några sekunder beroende på data och kolumn räkna i " "tabellen." -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Steg" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Följande åtgärder utförs:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "RADERA kolumner %s från tabellen %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Skapa följande tabell" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Tredje steget i normalisering (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Bekräfta transitiva beroenden" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Valda beroenden är följande:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Inga beroenden valda!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2039,123 +2043,123 @@ msgstr "Inga beroenden valda!" msgid "Save" msgstr "Spara" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Dölj sökkriterier" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Visa sökkriterier" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Sökområde" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Högsta kolumn:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Minsta kolumn:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Minsta värde:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Högsta värdet:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Dölj sök och ersätt kriterierna" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Visa sök och ersätt kriterierna" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Varje punkt representerar en dataserie." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Hovring över en punkt kommer visa dess etikett." -#: js/messages.php:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Välj två kolumner" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Välj två olika kolumner" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Innehåll för datapunkt" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ignorera" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Kopiera" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Punkt" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Linestring" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Polygon" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "Inre ringen" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Yttre ring" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Vill du kopiera krypteringsnyckeln?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Krypteringsnyckel" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2163,24 +2167,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:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Välj refererad nyckel" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Välj främmande nyckel" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Välj den primära nyckeln eller en unik nyckel!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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?" @@ -2188,76 +2192,76 @@ msgstr "" "Du har inte sparat ändringarna i layouten. Dessa kommer förloras om du inte " "sparar dem. Vill du fortsätta?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Sidnamn" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Spara sidan" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Spara sidan som" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Öppen sida" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Radera sida" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Namnlöst" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Välj en sida för att fortsätta" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Vänligen ange ett giltigt sidnamn" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "Vill du spara ändringarna i den aktuella sidan?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Raderingen av sidan lyckades" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Exportera relationsschema" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Ändringarna har sparats" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Lägg till ett alternativ för kolumnen \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d objekt skapade." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Sänd" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Tryck Escape för att avbryta redigeringen." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2265,15 +2269,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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Dra för att ändra ordning." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Klicka på sortera efter den här kolumnen." -#: js/messages.php:567 +#: js/messages.php:569 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 " @@ -2283,26 +2287,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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Klicka för att markera/avmarkera." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Dubbelklicka för att kopiera kolumnnamn." -#: js/messages.php:574 +#: js/messages.php:576 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Visa alla" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2311,113 +2315,113 @@ msgstr "" "nätet redigera, kryssruta, redigera, kopiera och radera-länkar kanske inte " "fungerar när du har sparat." -#: js/messages.php:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 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." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Ursprunglig längd" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "Avbryt" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Avbrutna" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Lyckades" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Importstatus" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Släpp filer här" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Markera databasen först" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Skriv ut" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Gå till länk:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Kopiera kolumnnamn." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Skapa lösenord" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Generera" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Mera" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Visa panel" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Dölj Panel" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Visa dolda navigationsträdsobjekt." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Länka med huvudpanelen" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Avlänka från huvudpanelen" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2427,49 +2431,49 @@ msgstr "" "senaste versionen är %s, publicerad den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", senaste stabila version:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "aktuell" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Skapa vy" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Skicka felrapport" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Skicka felrapport" -#: js/messages.php:656 +#: js/messages.php:658 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:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Ändra rapportinställningar" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Visa rapportdetaljer" -#: js/messages.php:662 +#: js/messages.php:664 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:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2479,58 +2483,58 @@ msgstr "" "kan några av fälten ignoreras på grund av max_input_vars-inställningen för " "PHP." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Fel har påträffats på servern!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Titta längst ned i fönstret." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Ignorera alla" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Enligt dina inställningar, ha tålamod." -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Köra den här frågan igen?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Vill du verkligen ta bort detta bokmärke?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "Vissa fel uppstod när SQL inhämtade felinformation." -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s frågor körs %s gånger i %s sekunder." -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "%s argument utförda" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Visa argument" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Dölja argument" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Tidsåtgång:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2539,355 +2543,355 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopiera databasen till" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Lägg till tabellprefix:" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Ersätt tabellprefix" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopiera tabell med prefix" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Föregående" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Nästa" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Idag" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "januari" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "februari" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "mars" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "april" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "maj" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "juni" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "juli" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "augusti" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "september" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "oktober" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "november" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "mars" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "dec" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Söndag" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Måndag" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Tisdag" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Onsdag" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Torsdag" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Fredag" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Lördag" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Sön" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Mån" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Tis" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Tors" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Lör" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Sö" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Må" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Ti" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "On" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "To" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Lö" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "kalender-månad-år" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Timmar" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Minuter" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Sekunder" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Detta fältet är obligatoriskt" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Var vänlig och rätta detta fält" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Ange en giltig e-postadress" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Skriv in en giltig webbadress (URL)" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Ange ett giltigt datum" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Ange ett giltigt datum (ISO)" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Var vänlig ange ett giltigt nummer" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Skriv in ett giltigt kreditkortsnummer" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Ange endast siffror" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Skriv in samma värde igen" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Ange inte mer än {0} tecken" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Ange minst {0} tecken" -#: js/messages.php:915 +#: js/messages.php:917 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:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Ange ett värde mellan {0} och {1}" -#: js/messages.php:925 +#: js/messages.php:927 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:930 +#: js/messages.php:932 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:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Ange ett giltigt datum eller tid" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Skriv in en giltig Hexadecimalt värde" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Fel" @@ -2939,33 +2943,33 @@ msgstr "Oväntade tecken på rad %s." msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "Oväntat tecken på rad %1$s. Förväntad tab, men fann \"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Befintlig konfigurationsfil (%s) är inte läsbar." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Fel behörigheter på konfigurationsfilen, bör inte vara \"world\" skrivbar!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Teckenstorlek" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Slå ihop" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Expandera" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Ny fråga" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2985,76 +2989,59 @@ msgstr "Databas" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Totalt %d bokmärke" -msgstr[1] "Totalt %d bokmärken" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "privat" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "delad" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -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 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Inga bokmärken" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Under aktuell session" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Förklara" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profilering" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Bokmärke" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Query misslyckades" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Exekveringstid för frågor" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "SQL-frågeruta" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Konsol" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Rensa" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Historik" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3072,125 +3059,125 @@ msgstr "Historik" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Alternativ" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Bokmärken" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Debugga SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Tryck på Ctrl Enter för att exekvera frågan" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Tryck på Enter för att köra frågan" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "Stigande" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "fallande" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Sorteringsordning:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Räkna" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Körningsordningen" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Tidsåtgång" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Sorteringsordning:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Grupp sökfrågor" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Dela upp frågor" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Visa spår" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Dölja spår" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Antal:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Uppdatera" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Lägg till" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Lägg till bokmärke" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Etikett" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Måldatabas" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Dela detta bokmärke" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Sätt som standard" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Expandera alltid frågemeddelanden" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Visa sökhistorik vid start" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Visa sökningar under denna session" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3198,17 +3185,17 @@ msgstr "" "Köra sökningar med RETUR och Infoga ny rad med SKIFT+RETUR. Visa " "inställningar för att göra detta permanent." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Växla till mörkt tema" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Kunde inte läsa konfigurationsfilen!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3216,19 +3203,19 @@ msgstr "" "Servern svarar inte (eller den lokala serverns socket är inte korrekt " "konfigurerad)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Servern svarar inte." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Kontrollera privilegierna för katalogen som innehåller databasen." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Detaljer…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Uppkoppling för kontrollanvändare enligt din konfiguration misslyckades." @@ -3540,7 +3527,7 @@ msgstr "Kan vara ungefärligt. Se [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Din SQL-fråga utfördes korrekt." @@ -3660,15 +3647,15 @@ msgstr "Filuppladdning stoppades av tillägg." msgid "Unknown error in file upload." msgstr "Okänt fel i filuppladdning." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Fel vid flytt av uppladdad fil, se [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Fel vid flytt av uppladdad fil." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Kan inte läsa uppladdad fil." @@ -3732,8 +3719,8 @@ msgid "Keyname" msgstr "Nyckelnamn" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3783,13 +3770,13 @@ msgstr "Index %s har tagits bort." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Radera" @@ -3889,7 +3876,7 @@ msgstr "Privilegier" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operationer" @@ -3904,7 +3891,7 @@ msgstr "Spårning" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4282,11 +4269,11 @@ msgstr "Fel vid skapande av främmande nyckel för %1$s (kontrollera datatyper)" msgid "No valid image path for theme %s found!" msgstr "Ingen giltig sökväg för tema %s hittades!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Ingen förhandsgranskning tillgänglig." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "använd detta" @@ -4603,21 +4590,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Spatial" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Statisk analys:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "%d fel hittades under analys." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4628,36 +4615,36 @@ msgstr "%d fel hittades under analys." msgid "MySQL said: " msgstr "MySQL sa: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Förklara SQL-kod" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Utan SQL-förklaring" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "Analysförklaring Analysförklaringpå %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Utan PHP-kod" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Skicka fråga" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Skapa PHP-kod" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Redigera infogade" @@ -4745,6 +4732,10 @@ msgstr "per timme" msgid "per day" msgstr "per dag" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "delad" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Sök:" @@ -4854,11 +4845,11 @@ msgstr "Lägg till ny kolumn" msgid "Attributes" msgstr "Attribut" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Kunde inte läsa konfigurationsfilen!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4866,31 +4857,31 @@ msgstr "" "Detta betyder oftast att det finns ett syntaxfel i den, kontrollera " "eventuella fel som visas nedan." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Kunde inte läsa in standardkonfiguration från: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Ogiltigt serverindex: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ogiltigt värdnamn för server %1$s. Var god granska din konfiguration." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Server %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Ogiltig metod för verifiering angiven i konfiguration:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4902,24 +4893,24 @@ msgstr "" "['SessionTimeZone'][/em]. phpMyAdmin för närvarande används " "standardtidszonen på databasservern." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, 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:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Fel: Token matchningsfel" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Överskrivningsförsök av GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "möjlig exploatering" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "numerisk tangent upptäckt" @@ -5653,13 +5644,13 @@ msgstr "Sätt kolumnnamn på första raden" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Kolumner omges av" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Specialtecken i fält föregås av" @@ -5677,12 +5668,12 @@ msgstr "Ta bort CRLF-tecken i kolumner" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Kolumner avslutas med" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Rader avslutas med" @@ -6264,7 +6255,7 @@ msgid "Column names in first row" msgstr "Kolumnnamn på första raden" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Importera inte tomma rader" @@ -7801,7 +7792,7 @@ msgid "Table %s has been emptied." msgstr "Tabellen %s har tömts." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Vyn %s har tagits bort." @@ -7935,8 +7926,8 @@ msgid "No data to display" msgstr "Ingen data att visa" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7974,52 +7965,52 @@ msgstr[1] "Kolumnnamnen '%s' är reserverade nyckelord i MySQL." msgid "No column selected." msgstr "Ingen kolumn vald." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Kolumnerna har flyttats framgångsrikt." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Sökningsfel" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Ändra" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Index" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spatial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Fulltext" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Distinkta värden" @@ -8029,7 +8020,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "Tillägget %s saknas. Vänligen kontrollera din PHP-konfiguration." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ingen förändring" @@ -8824,56 +8815,56 @@ msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)." msgid "[ROLLBACK occurred.]" msgstr "[ÅTERTOG tidigare version]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Redigera strukturen genom att följa länken \"Struktur\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Gå till databas: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Redigera inställningar för %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Gå till tabell: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Struktur för %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Gå till vy: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Endast entabells-UPDATE och DELETE-körningar simuleras." -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8921,48 +8912,48 @@ msgstr "Eller" msgid "web server upload directory:" msgstr "Uppladdningskatalog på webbserver:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Redigera / Infoga" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Fortsätt inmatning med %s rader" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "och sedan" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Lägg till som ny rad" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Infoga som ny rad och ignorera fel" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Visa insert-fråga" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Gå tillbaka till föregående sida" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Lägg till ytterligare en ny rad" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Gå tillbaka till denna sida" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Ändra nästa rad" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -8972,7 +8963,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8984,11 +8975,11 @@ msgstr "" msgid "Value" msgstr "Värde" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Visar SQL-fråga" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Infogade rad-id: %1$d" @@ -9854,7 +9845,7 @@ msgstr "Reparera tabell" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Ta bort data eller tabell" @@ -9867,32 +9858,32 @@ msgid "Delete the table (DROP)" msgstr "Ta bort tabellen (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Analysera" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Kontrollera" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimera" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Återskapa" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Reparera" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Avkorta" @@ -9918,35 +9909,35 @@ msgstr "Ta bort partitionering" msgid "Check referential integrity:" msgstr "Kontrollera referensintegritet:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Kan inte flytta tabell till samma en!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Kan inte kopiera tabell till samma en!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format 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:2114 +#: libraries/operations.lib.php:2112 #, php-format 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabellen %s har flyttats till %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabellen %s har kopierats till %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Tabellnamnet är tomt!" @@ -10123,7 +10114,7 @@ msgstr "Dumpningsalternativ för data" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Dumpning av Data i tabell" @@ -10147,21 +10138,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tabellstruktur" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Struktur för vy" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Ersättningsstruktur för vy" @@ -10251,7 +10242,7 @@ msgid "Database:" msgstr "Databas:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Data:" @@ -10351,7 +10342,7 @@ msgid "Data creation options" msgstr "Valmöjligheter vid skapande av data" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Trunkera tabell innan inläggning" @@ -10436,7 +10427,7 @@ msgstr "Det verkar som om databasen använder följande funktioner;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "export med alias fungerar inte alltid tillförlitligt." @@ -10480,52 +10471,52 @@ msgstr "används" msgid "It appears your database uses views;" msgstr "Det verkar som om databasen använder följande vyer;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Restriktioner för dumpade tabeller" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Restriktioner för tabell" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Index för dumpade tabeller" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Index för tabell" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT för dumpade tabeller" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT för tabell" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYPER FÖR TABELL" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONER FÖR TABELL" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Det verkar dom om tabellen använder följande utlösare;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Fel vid läsning av data:" @@ -10557,7 +10548,7 @@ msgstr "" "KEY UPDATE')" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10580,15 +10571,15 @@ msgstr "" msgid "Column names: " msgstr "Kolumnnamn: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Ogiltig parameter för CSV-import: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10597,18 +10588,18 @@ msgstr "" "Ogiltig kolumn (%s)! Se till att kolumnernas namn är rättstavade, åtskilda " "med kommatecken och inte omges av citattecken." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Ogiltigt format i CSV-indata på rad %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Ogiltigt antal kolumner i CSV-indata på rad %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Detta insticksprogram stöder inte komprimerade importer!" @@ -10616,23 +10607,23 @@ msgstr "Detta insticksprogram stöder inte komprimerade importer!" msgid "MediaWiki Table" msgstr "MediaWiki-tabell" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Ogiltigt format på mediawiki-data på rad:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" "Importera procenttal som vanliga decimaltal (t.ex. 12.00% blir .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importera valutor (t.ex. $5.00 blir 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10640,7 +10631,7 @@ msgstr "" "Den angivna XML-filen var antingen felaktig eller ofullständig. Korrigera " "problemet och försök igen." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Kunde inte tolka OpenDocument-kalkylblad!" @@ -10648,12 +10639,12 @@ msgstr "Kunde inte tolka OpenDocument-kalkylblad!" msgid "ESRI Shape File" msgstr "ESRI Shape-fil" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Det uppstod ett fel vid importen av ESRI Shape-filen: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10661,12 +10652,12 @@ msgstr "" "Du försökte importera en ogiltig fil eller så innehåller den importerade " "filen ogiltiga data!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Spatial Extension stöder inte ESRI-typen \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Den importerade filen innehåller inte några data!" @@ -10678,7 +10669,7 @@ msgstr "SQL kompatibilitetsläge:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Använd inte AUTO_INCREMENT för nollvärden" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13671,15 +13662,11 @@ msgstr "%1$d värden var väntat, men hittade %2$d." msgid "An opening bracket followed by a set of values was expected." msgstr "En inledande hakparentes följt av en uppsättning värden förväntades." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "En inledande hakparentes förväntades." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -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 "A comma or a closing bracket was expected." msgstr "Semikolon eller en avslutande hakparentes förväntades." @@ -13692,17 +13679,18 @@ msgstr "En avslutande hakparentes förväntades." msgid "Unrecognized data type." msgstr "Okänd datatyp." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Ett alias hittades tidigare." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Oväntad punkt." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Ett alias förväntades." @@ -13720,19 +13708,19 @@ msgstr "En förskjutning förväntades." 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 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Det gamla namnet på tabellen förväntades." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Sökordet \"Till\" förväntades." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 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 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Ett namnbyte förväntades." @@ -13758,15 +13746,15 @@ msgstr "Slut citat %1$s förväntades." msgid "Variable name was expected." msgstr "Variabel namn förväntades." -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Oväntad början av satsen." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Okänd uttryckstyp." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Ingen transaktion startades tidigare." @@ -13788,15 +13776,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Okänt nyckelord." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Namnet på entiteten förväntades." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "Minst en kolumndefinition förväntades." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Ett nyckelord förväntades." @@ -14485,7 +14473,7 @@ msgstr "Visa SQL-satser för tabellen" msgid "Invalid table name" msgstr "Ogiltigt tabellnamn" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Rad: %1$s, kolumn: %2$s, fel: %3$s" @@ -15442,7 +15430,7 @@ msgid "at beginning of table" msgstr "I början av tabellen" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Partitioner" @@ -15481,7 +15469,7 @@ msgstr "partitionerad" msgid "Edit partitioning" msgstr "Ta bort partitionering" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Redigera vy" @@ -15598,11 +15586,11 @@ msgstr "VIEW-namn" msgid "Column names" msgstr "Kolumnnamn" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Ändra namn till" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Ta bort vyn (DROP)" @@ -16868,6 +16856,20 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert är satt till 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Totalt %d bokmärke" +#~ msgstr[1] "Totalt %d bokmärken" + +#~ msgid "private" +#~ msgstr "privat" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s och %3$s bokmärken ingår" + +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Semikolon eller en avslutande hakparentes förväntades" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/ta.po b/po/ta.po index adb349db20..7b6641df7e 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:17+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tamil " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save & Close" msgid "Save & close" msgstr "சேமிக்க & மூடுக" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "மீட்டமைக்கவும்" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Reset All" msgid "Reset all" msgstr "அனைத்தையும் மீட்டமை" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "படிவத்தில் மதிப்பு விடுபட்டுள்ளது!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "விருப்பங்களில் குறைந்தது ஒன்றாவது தெரிவு செய்க!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "தயவுசெய்து ஒரு சரியான எண்ணை இடுக!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "தயவுசெய்து ஒரு சரியான நீளத்தை இடுக!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "சுட்டுதொகுப்புக்குறி சேர்க்க" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "சுட்டுதொகுப்புக்குறி திருத்துக" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "%s நிரல்வரிசை(களை) சுட்டுதொகுப்புக்குறியில் சேர்க்க" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "ஒற்றை-நிரல்வரிசை தொகுப்புக்குறிகாட்டி உருவாக்குக" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "கலப்புரு நிரல்வரிசை தொகுப்புக்குறிகாட்டி உருவாக்குக" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "உடன் கலப்புருவாக்குக:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "சுட்டுதொகுப்புக்குறியில் சேர்ப்பதற்க்கான நிரல்வரிசை(களை) தேர்ந்தெடுக்க." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "நீங்கள் குறைந்தது ஒரு நெடுவரிசையையாவது சேர்க்க வேண்டும்." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "SQLஐ முன்பார்வையிடு" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "வினவலை பாவித்து காண்பி" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "பொருந்திய நிரல்வரிசைகள்:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL வினவல்:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "கு மதிப்புக்கள்" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "வழங்கியின் பெயர் வெறுமையாக உள்ளது!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "பயனர் பெயர் வெறுமையாக உள்ளது!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "கடவுச்சொல் வெறுமையாக உள்ளது!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "கடவுச்சொற்கள் பொருந்தவில்லை!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "தேர்ந்தெடுக்கப்பட்ட பயனர்கள் நீக்கப்படுகின்றனர்" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "மூடுக" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "இந்நிரைவரிசை அழிக்கப்பட்டது." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "ஏனையவை" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "இணைப்புக்கள்/ செயலாக்கங்கள்" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "உள்கண்காணிப்பின் அமைப்பாக்கம் இணக்கமற்றுள்ளது!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1186,165 +1190,165 @@ msgstr "" "தயவுசெய்து உங்கள் முன்னிருப்பு அமைப்புருவாக்கத்திற்கு அமைவுகள் பட்டி மூலம் " "மீட்டமைக்கவும்." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "வினவல் இடைமாற்றியின் பயனுறுதிறன்" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "வினவல் இடைமாற்றல் பயன்பாட்டளவு" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "வினவல் இடைமாற்று பயன்படுத்தப்பட்டுள்ளது" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "மையச்செயலக பயனளவு" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "அமைப்புமுறையின் நினைவகம்" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "அமைப்புமுறையின் மாற்றிடம்" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "சராசரி சுமையளவு" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "மொத்த நினைவகம்" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "இடைமாற்று நினைவகம்" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "இடையக நினைவகம்" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "பயன்படுத்தபடா நினைவகம்" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "பயன்பாட்டிலுள்ள நினைவகம்" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "மொத்த மாற்றிடம்" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "இடைமாற்று மாற்றிடம்" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "பயன்பாட்டிலுள்ள மாற்றிடம்" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "பயன்பாடுத்தபடாத மாற்றிடம்" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "அனுப்பப்பட்ட துண்டுகள்" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "ஏற்றுக்கொள்ளப்பட்ட துண்டுகள்" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "இணைப்புகள்" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "செயலாக்கங்கள்" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "து" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d அட்டவணை(கள்)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "வினாக்கள்" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "போக்குவரத்து" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "அமைவுகள்" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "விளக்கப்படத்தை கட்டத்தில் சேர்" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "தயவுசெய்து குறைந்தது ஒரு மாறியை\\ தொடரில் சேர்க்க!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1356,47 +1360,47 @@ msgstr "தயவுசெய்து குறைந்தது ஒரு ம msgid "None" msgstr "எதுவுமில்லை" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "கண்காணிப்பை மீளேற்று" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "கண்காணிப்பை இடைநிறுத்துக" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "தன்னிச்சையானபுதுப்பித்தலை துவக்குக" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "தன்னிச்சையான புதுப்பித்தலை நிறுத்துக" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log மற்றும் slow_query_log ஆகியவை இயலசெய்யப்பட்டன." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log இயலசெய்யப்பட்டது." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log இயலசெய்யப்பட்டது." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "general_log மற்றும் slow_query_log ஆகியவை முடக்கப்பட்டன." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output அட்டவணை என அமைக்கப்படவில்லை." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output அட்டவணை என அமைக்கப்பட்டது." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1407,12 +1411,12 @@ msgstr "" "எடுத்துகொள்ளும் வினவல்களை மட்டுமே பதிவு செய்கிறது. உங்கள் கணிணிஅமைப்பை பொறுத்து " "long_query_time ஐ ௦-2 நொடிகளாக அமைக்க அறிவுறுத்தப்படுகிறது." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time %d நொடி(களாக) அமைக்கப்படுகிறது." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1421,30 +1425,30 @@ msgstr "" "பொது இயல்புநிலைக்கு மீட்டமைக்கப்படும்:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "log_output %s க்கு அமைக்க" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "இயலச்செய்க %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "முடக்குக %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "long_query_time ஐ %d நொடிகளாக அமைக்க." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1452,57 +1456,57 @@ msgstr "" "நீங்கள் இந்த மாறிகளை மாற்ற முடியாது.தயவுசெய்து root அக புகுபதிவு செய்க.அல்லது உங்கள் " "செயலாட்சியரை தொடர்பு கொள்க." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "அமைப்புக்களை மாற்று" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "நடப்பு அமைப்புக்கள்" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "வரைபட தலைப்பு" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "வகைகெழு" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "%s ஆல் பிரிக்கப்பட்டது" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "அலகு" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "slow_log லிருந்து" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "general_log லிருந்து" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "இவ்வினவலுகான தரவுத்தளத்தின் பெயர் வழங்கியின் பதிகையில் இல்லை." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "பதிகைகளை பகுத்தாராய்கிறது" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "பதிகைகளை பகுத்தாராய்ந்து நினைவேற்றுகிறது.இதற்கு சிறிது நேரமாகலாம்." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "கோரிக்கையை விலக்கு" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1512,7 +1516,7 @@ msgstr "" "SQL உரை மட்டுமே ஒப்புநோக்கப்பட்டதால் வினவலின் பிற துவக்கநேரம் போன்ற பண்புகூறுகள் " "மாறுபடலாம்." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1521,31 +1525,31 @@ msgstr "" "INSERT வினவல்களை தொகுத்தல் இயலசெய்யப்பட்டுள்ளதால், ஒரே அட்டவணைக்குள் உள்ளிடும் INSERT " "வினவல்களும் உள்ளிட்ட தரவை கருதாமல் தொகுக்கப்படுகிறன." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "பதிகை தரவுகள் நினைவேற்றப்பட்டன. இந்த இடைநேரத்தில் செயல்படுத்தப்பட்ட வினவல்கள்:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "பதிகை அட்டவணைக்கு செல்க" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "எந்த தரவும் காணபடவில்லை" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "பதிகை பகுத்தாராயபட்டது, எனினும் இந்த இடைநேரத்திற்கு எந்த தரவும் காணப்படவில்லை." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "ஆராயப்படுகிறது…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "வெளியீட்டை விளக்குக" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1553,7 +1557,7 @@ msgstr "வெளியீட்டை விளக்குக" msgid "Status" msgstr "நிகழ்நிலை" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1563,58 +1567,58 @@ msgstr "நிகழ்நிலை" msgid "Time" msgstr "நேரம்" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "மொத்த நேரம்:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "முடிவுகள் பகுமுறையிடபடுகிறது" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "அட்டவணை" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "விளக்கப்படம்" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "பதிகை அட்டவணை வடிகட்டி விருப்பதெரிவுகள்" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "வடிகட்டி" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "வினவல்களை சொற்கள்/சுருங்குகுறி வழி வடிக்கட்டுக:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "WHERE பிரிவிலுள்ள மாறி மதிப்புகளை கருதாமல் வினவல்களை தொகுக்க" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "தொகுக்கப்பட்ட நிறைவரிசைகளின் கூடுதல்:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "மொத்தம்:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "பதிகைகள் நினைவேற்றப்படுகின்றது" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "கண்காணிப்பு மீளேற்றம் தோல்வியடைந்தது" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1623,27 +1627,27 @@ msgstr "" "புதிய வரைபட தரவை கோரியபோது செல்லாத மறுமொழி பெறப்பட்டது. இது உங்கள் அமர்வு " "முடிந்ததால் இருக்கலாம். பக்கத்தை மீளேற்றி புகுபதிவு செய்க." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "பக்கத்தை மீளேற்று" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "மாற்றமடைந்த நிரல்வரிசைகள்:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "அமைப்பாக்க கோப்பினை வழிச்செலுத்தல் தோல்வியுற்றது. இது சரியான JSON நிரல் போலில்லை." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "தரவிறக்கபட்ட அமைப்பாக்க கோப்புடன் விளக்கப்படம் அமைத்தல் தோல்வியடைந்தது.இயல்நிலை அமைப்புக்கு " "மீட்டமைக்கப்படுகிறது…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1652,67 +1656,67 @@ msgstr "" msgid "Import" msgstr "தரவிறக்கம்" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "கண்காணிப்பின் அமைப்பாக்கத்தை தரவிறக்கு" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "தரவிறக்க வேண்டிய கோப்பை தயவுசெய்து தேர்ந்தெடுக்கவும்." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "தரவிறக்குவதற்கு வழங்கியில் எந்த கோப்பும் இல்லை!" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "வினவலை பகுத்தாய்க" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "முறைமை அறிவுறுத்துனர்" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "நேரிடகூடிய செயல்திறன் சிக்கல்கள்" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "சிக்கல்" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "பரிந்துரை" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "விதிமுறை விபரங்கள்" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "விளக்கமளி" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "பயன்படுத்தப்பட்ட மாறி/வாய்ப்பாடு" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "தேர்வுமுறை" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "ஒவ்வாத பண்புகூறுகள்!" -#: js/messages.php:350 +#: js/messages.php:352 #: 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,74 +1728,74 @@ msgstr "ஒவ்வாத பண்புகூறுகள்!" msgid "Cancel" msgstr "விலக்கு" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "அமைப்புக்களை மாற்று" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "ஏற்றப்படுகிறது…" -#: js/messages.php:358 +#: js/messages.php:360 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "வேண்டுகோள் கைவிடப்பட்டது!!" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "வேண்டுகோள் செயல்முறைப்படுத்தபடுகின்றது" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Request Aborted!!" msgid "Request failed!!" msgstr "வேண்டுகோள் கைவிடப்பட்டது!!" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Error in processing request:" msgid "Error in processing request" msgstr "வேண்டுகோள் செயலாக்கதில் பிழை:" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "பிழை குறிப்பெண்: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "பிழை செய்தி: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "எந்த தரவுத்தளமும் தேர்ந்தெடுக்கப்படவில்லை." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "நிரல்வரிசை கைவிடப்படுகிறது" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "முதனிலை குறிப்பெழுத்து சேர்க்க" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1801,63 +1805,63 @@ msgstr "முதனிலை குறிப்பெழுத்து சே msgid "OK" msgstr "சரி" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "இந்த அறிவுறுத்தலை நீக்க சொடுக்குக" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "தரவுத்தளங்கங்களின் பெயர் மாற்றப்படுகின்றது" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "தரவுத்தளம் நகல் எடுக்கபடுகின்றது" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "எழுத்துத்தொகுதி மாற்றப்படுகின்றது" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Foreign key check:" msgid "Enable foreign key checks" msgstr "அயல் குறியெண் சரிபார்க்க:" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "நிறைவரிசை எண்ணிக்கையை பெற தவறியது." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "தேடுதல்" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "தேடல் முடிவுகளை மறை" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "தேடல் முடிவுகளை காட்டு" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "உலாவுதல்" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "அழித்தல்" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "சேமிக்கபட்ட செயல்கூற்றின் வரையறையில் ஓர் RETURN கூற்று கண்டிப்பாக இருக்கவேண்டும்!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1873,44 +1877,44 @@ msgstr "சேமிக்கபட்ட செயல்கூற்றின msgid "Export" msgstr "தரவேற்றுக" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/கணம் தொகுப்பான்" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "நெடுவரிசை %sகான மதிப்பு.கள்" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "புதிய நிரல்வரிசைக்கான மதிப்புகள்" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "ஒவ்வொரு மதிப்பையும் தனித்தனி கலங்களில் உள்ளிடுக." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "%d மதிப்பு(களை) சேர்க்க" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "குறிப்பு: கோப்பில் பல்வேறு அட்டவணைகள் இருப்பின், அவை ஒன்றிணைக்கபடும்." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "வினவல் பெட்டியை மறை" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "வினவல் பெட்டியை காண்பி" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1920,7 +1924,7 @@ msgstr "வினவல் பெட்டியை காண்பி" msgid "Edit" msgstr "தொகு" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1931,42 +1935,42 @@ msgstr "தொகு" msgid "Delete" msgstr "அழி" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d என்பது சரியான நிரைவரிசை எண் அல்ல." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "அயல் குறியெண் மதிப்புகளை உலவு" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variables" msgid "Variable %d:" msgstr "மாறிகள்" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "தேர்ந்தெடுக்கவும்" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "நிரல்வரிசை தெரிவு" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "இந்த பட்டியலில் தேடுக" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1975,15 +1979,15 @@ msgstr "" "முதன்மை பட்டியலில் பத்திகள் ஏதுமில்லை. %s தரவுத்தளத்திற்கான முதன்மை பட்டியலில் தற்போதைய " "அட்டவணையில் இல்லாத பத்திகள் உள்ளதை உறுதிசெய்க." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "மேலும் பார்க்க" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "உறுதியாகவா?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1991,51 +1995,51 @@ msgstr "" "இந்த நடவடிக்கை பத்திகளின் வரையறையில் சிலவற்றை மாற்றலாம்.
நீங்கள் உறுதியாக தொடர " "விரும்புகிறீர்களா?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "தொடர்க" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "முதனிலை குறிப்பெழுத்து சேர்க்க" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "முதனிலை குறிப்பெழுத்து சேர்க்கப்பட்டது." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "அடுத்த படிநிலைக்கு செல்கிறோம்…" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "'%s' அட்டவணையின் சீராக்கலின் முதல் படிநிலை நிறைவுற்றது." -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "செயல்முறையின் முடிவு" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "சீராக்கலின் இரண்டாம் படிநிலை (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "முடிந்த" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "பகுதியளவு சார்புகளை உறுதிசெய்க" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "தேர்ந்தெடுக்கப்பட்ட பகுதியளவு சார்புகளை பின்வருமாறு:" -#: js/messages.php:444 +#: js/messages.php:446 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,60 +2047,60 @@ msgstr "" "குறிப்பு: அ,ஆ->இ,ஈ என்பது அ மற்றும் ஆ நெடுவரிசைகளின் மதிப்புகள் கூட்டாக இ,ஈ " "நெடுவரிசைகளின் மதிப்புகளை முடிவுசெய்கிறது என்பதை குறிக்கிறது." -#: js/messages.php:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "எந்த பகுதியளவு சார்புகளும் தேர்ந்தெடுக்கப்படவில்லை!" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "அட்டவணையிலுள்ள தரவின் அடிப்படையில் ஏற்படகூடிய பகுதியளவு சார்புகளை காட்டுக" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "பகுதியளவு சார்பு பட்டியலை மறைக்க" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "பொறுத்திருங்கள்!தரவின் அளவு,நெடுவரிசை எண்ணிக்கையை பொருத்தது சில நொடிகள் ஆகலாம்." -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "படிநிலை" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "பின்வரும் நடவடிக்கைகள் செயல்படுத்தப்படும்:" -#: js/messages.php:459 +#: js/messages.php:461 #, 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:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "பின்வரும் அட்டவணையை உருவாக்குக" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "சீராக்கலின் மூன்றாம் படிநிலை (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "நிலைபெறா சார்புகளை உறுதிசெய்க" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "தேர்ந்தெடுக்கப்பட்ட சார்புகளை பின்வருமாறு:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "எந்த சார்புகளும் தேர்ந்தெடுக்கப்படவில்லை!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2106,149 +2110,149 @@ msgstr "எந்த சார்புகளும் தேர்ந்தெ msgid "Save" msgstr "சேமி" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "தேடுதல் கட்டளை விதியை மறை" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "தேடுதல் கட்டளை விதியை காண்பி" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "வரம்பு தேடல்" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "நெடுவரிசையில் மீயளவு:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "நெடுவரிசையில் மீச்சிற்றளவு:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "மீச்சிற்றளவு:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "மீப்பெருவளவு:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "தேடிமாற்று நிபந்தனையை மறை" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "தேடிமாற்று நிபந்தனையை காண்பி" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "ஒவ்வொரு புள்ளியும் ஒரு தரவு வரிசையை குறிக்கிறது." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "ஒவ்வொரு புள்ளியின் மேற்செல்லும் போதும் அதற்கான சிட்டை தெரியும்." -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "அணுக்கதிற்கு, வரைபடத்தின் ஒரு பகுதியை சுட்டியால் தெரிவுசெய்க." -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "மெய்நிலைக்கு வர மீள்அணுக்கம் பொத்தானை சொடுக்கவும்." -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "ஒரு தரவுவரிசையை பார்க்கவும் திருத்தவும் அதன் தரவுபுள்ளியை சொடுக்கவும்." -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "வரைவின் வலது கீழ் மூலையில் அழுத்தி இழுப்பதன் மூலம் அளவை மாற்றலாம்." -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "இரு நெடுவரிசைகளை தேர்ந்தெடுக்கவும்" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "இரு வெவ்வேறு நெடுவரிசைகளை தேர்ந்தெடுக்கவும்" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "தரவுப்புள்ளி உள்ளடக்கம்" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "புறக்கணி" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "படியெடு" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "புள்ளி" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "வரிச்சரம்" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "பல்கோணி" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "கேத்திர கணிதம்" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "உள்ப்புற வளையம்" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "வெளிப்புற வளையம்:" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "மறைகுறியாக்க குறிப்பெழுத்தை படியெடுக்க வேண்டுமா?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "மறைகுறியாக்க குறிப்பெழுத்து" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "மேற்கோள்காட்டப்பட்ட குறிப்பெழுத்தை தேர்ந்தெடுக்க" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "அயல் குறிப்பெழுத்தை தேர்ந்தெடுக்க" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "முதனிலை குறிப்பெழுத்து அல்லது தனித்த குறிப்பெழுத்தை தேர்ந்தெடுக்க!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "காட்டுவதற்க்கான நிரல்வரிசையை தேர்ந்தெடுக்க" -#: js/messages.php:536 +#: js/messages.php:538 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,78 +2260,78 @@ msgstr "" "நீங்கள் திட்டஅமைப்பில் செய்த மாற்றங்களை சேமிக்கவில்லை.எனவே அவற்றை இழக்கநேரிடும். " "தொடரவேண்டுமா?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "பக்கத்தின் பெயர்" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "பக்கத்தை சேமிக்க" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "பக்கத்தை திறக்க" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "பக்கத்தை அழிக்க" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "பெயரிடாதது" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "தொடர்வதற்கு ஒரு பக்கத்தை தேர்ந்தெடுக்க" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "இப்பக்கத்தில் செய்த மாற்றங்களை சேமிக்கவேண்டுமா?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "பக்கம் நீக்கப்பட்டது" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "தொடர்புசார் ஒழுங்கமைப்பை தரவேற்றுக" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "மாற்றங்களை சேமிக்க" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "நெடுவரிசை \"%s\" க்கு ஒரு விருப்பத்தை சேர்க்க." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d கருப்பொதிவு(கள்) உருவாக்கப்பட்டன." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "தொகுப்பதை நிறுத்த Esc அழுத்தவும்." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2335,15 +2339,15 @@ msgstr "" "நீங்கள் சில தரவுகளை தொகுத்துள்ளீர்கள். தரவை செமிக்காமல் இப்பக்கத்தைவிட்டு வெளியேறவேண்டுமா " "என உறுதிசெய்க?" -#: js/messages.php:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "மறுவரிசைப்படுத்த இழுக்கவும்." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "இந்நெடுவரிசையை பொருத்து முடிவுகளை வரிசைப்படுத்த சொடுக்குக." -#: js/messages.php:567 +#: js/messages.php:569 #, fuzzy #| msgid "" #| "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC." @@ -2356,26 +2360,26 @@ msgstr "" "இந்நெடுவரிசையை ORDER BY உறுப்புரையில் சேர்க்க அல்லது ASC/DESCஐ மாற்ற shift" "+சொடுக்கவும்.
- ORDER BY உறுப்புரையிலிருந்து நீக்க Ctrl+சொடுக்கவும்" -#: js/messages.php:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "சேர்க்க/நீக்க சொடுக்கவும்." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "நிரல்வரிசை பெயரை படியெடுக்க இருமுறை சொடுக்குக." -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "நிரல்வரிசையின் காட்சிப்பண்பை
மாற்ற கீழிறங்கு குறியை சொடுக்குக." -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "அனைத்தையும் காட்டு" -#: js/messages.php:578 +#: js/messages.php:580 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2383,115 +2387,115 @@ msgstr "" "இவ்வட்டவணையில் தனித்தநிரல்வரிசை இல்லை.சேமித்த பின்னர் நெய்யரியில் தொகுத்தல், தேர்வுபெட்டி, " "தொகுத்தல், படியெடுத்தல், மற்றும் நீக்கல் வசதிகள் செயல்படாமல் போகலாம்." -#: js/messages.php:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "சரியான அறுபதின்ம சரத்தை உள்ளிடவும்.௦-9,A-F ஆகியவை ஏற்ற உள்ளீடுகள்." -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "மெய் சரம்" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "விலக்கு" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "கைவிடப்பட்டது" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "வெற்றி" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "தரவிறக்க நிலை" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "கோப்புகளை இங்கு விடுக" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "ஒரு தரவுத்தளத்தை முதலில் தேர்வுசெய்க" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "அச்சிடுக" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "நீங்கள் பெரும்பாலான மதிப்புகளை தொகுக்க
அவற்றை இருமுறை-சொடுக்குக." -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "நீங்கள் பெரும்பாலான மதிப்புகளை தொகுக்க
அவற்றை சொடுக்குக." -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "இணைப்புக்கு செல்:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "நிரல்வரிசை பெயரை படியெடுக்கவும்." -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "நிரல்வரிசை பெயரை இடைபிடிப்புக்கு படியெடுக்க வலமுறை-சொடுக்குக." -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "கடவுச்சொல்லை இயற்று" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "இயற்று" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "மேலும்" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "பலகத்தை காட்டு" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "பலகத்தை மறை" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "மறைத்துள்ள வழிசெலுத்தல் படிமுறை உருப்படிகளை காண்பி." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "முதன்மை பலகத்துடன் இணைக்க" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "முதன்மை பலகத்திலிருந்து பிரிக்க" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "நீங்கள் கோரிய பக்கம் வரலாற்றில் இல்லை, அது செல்லுபடி இல்லாமல் போயிருக்கலாம்." -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2501,57 +2505,57 @@ msgstr "" "கருத்தில் கொள்ளவும்.மிக அண்மைய பதிப்பு %s,%s அன்று வெளியிடப்பட்டது." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", புதிய நிலைப்பதிப்பு:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "இன்றுவரை" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "விவரபார்வையை உருவாக்குக" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Send Error Report" msgid "Send error report" msgstr "பிழை அறிக்கை அனுப்புக" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "பிழை அறிக்கை அளிக்க" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "ஒரு ஆபத்தான ஜாவா ஸ்க்ரிப்ட் பிழை நிகழ்ந்துள்ளது. பிழை அறிக்கை அளிக்க விரும்புகிறீர்களா?" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "அறிக்கை அமைப்புக்களை மாற்றுக" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "அறிவிக்கை விவரங்களை காட்டுக" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "PHPயின் நிலையில் குறைந்த செயலாக்கநேர வரம்பின் விளைவாக உங்கள் தரவேற்றம் முடிவுறவில்லை!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2560,62 +2564,62 @@ msgstr "" "எச்சரிக்கை: இப்பக்கத்திலுள்ள ஒரு படிவத்தில் %dஐ விட அதிகமான கலங்கள் உள்ளன.PHPயின் " "max_input_vars அமைப்பாக்கத்தின் விளைவாக அனுப்பும்போது சில கலங்கள் விடப்படலாம்." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "சேவையகத்தில் சில பிழைகள் கண்டறியப்பட்டுள்ளன!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "இச்சாளரத்தின் கீழ்பக்கம் பார்க்கவும்." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "அனைத்தையும் புறக்கணி" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "உங்கள் அமைவுகளின்படி,தற்பொழுது அவை அனுப்பபட்டுகொண்டிருக்கிறன.காத்திருக்கவும்." -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "இந்த வினவலை மீண்டும் செயல்படுத்த வேண்டுமா?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "உங்களுக்கு உண்மையிலேயே புத்தகக்குறியை நீக்க வேண்டுமா?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "அட்டவணைக் கருத்துரைகள்" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "தேடல் முடிவுகளை மறை" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2624,385 +2628,385 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "தரவுதளத்தை இப்படி படியெடுக்க" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "அட்டவணையின் முன்னொட்டு சேர்க்க:" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "அட்டவணை முன்னொட்டை பதிலிடு" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "பின்" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "அடுத்த" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "இன்று" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "ஜனவரி" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "பெப்ரவரி" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "மார்ச்" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "ஏப்ரல்" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "மே" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "ஜூன்" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "ஜூலை" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "ஆகஸ்ட்" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "செப்டம்பர்" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "அக்டோபர்" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "நவம்பர்" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "டிசம்பர்" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "தை" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "மாசி" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "பங்குனி" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "சித்திரை" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "மே" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "ஆணி" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "ஆடி" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "ஆவணி" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "புரட்டாதி" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "ஐப்பசி" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "காத்திகை" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "மார்கழி" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "ஞாயிறு" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "திங்கள்" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "செவ்வாய்" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "புதன்" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "வியாழன்" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "வெள்ளி" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "சனி" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "ஞாயிறு" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "திங்" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "செவ்" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "புத" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "வியா" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "வெள்" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "சனி" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "ஞாயி" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "திங்" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "செவ்" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "புத" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "வியா" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "வெள்" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "சனி" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "நாள்காட்டி-மாதம்-ஆண்டு" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "எதுவுமில்லை" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "மணித்தியாலம்" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "நிமிடம்" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "வினாடிகள்" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field:" msgid "Please fix this field" msgstr "உரைபுலத்தின் மூலமாக:" -#: js/messages.php:886 +#: js/messages.php:888 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid email address" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:887 +#: js/messages.php:889 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "தயவுசெய்து ஒரு சரியான எண்ணை இடுக!" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date ( ISO )" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "தயவுசெய்து ஒரு சரியான எண்ணை இடுக!" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "தயவுசெய்து ஒரு சரியான எண்ணை இடுக!" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "தயவுசெய்து ஒரு சரியான நீளத்தை இடுக!" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter the same value again" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter at least {0} characters" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value between {0} and {1}" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:925 +#: js/messages.php:927 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "தயவுசெய்து ஒரு சரியான நீளத்தை இடுக!" -#: js/messages.php:930 +#: js/messages.php:932 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value greater than or equal to {0}" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date or time" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "தயவுசெய்து ஒரு சரியான எண்ணை இடுக!" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "வலு" @@ -3056,33 +3060,33 @@ msgstr "" "%1$sம் வரியில் எதிர்பாராத எழுத்துக்கள் உள்ளன.தத்தல் உரு எதிர்பார்க்கப்பட்டது, \"%2$s\" " "காணப்பட்டது." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "இப்போதுள்ள அமைப்பாக்க கோப்பு (%s) படிக்கமுடியாததாக உள்ளது." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "அமைப்பாக்க கோப்பு தவறான அணுகல்இசைவுடன் உள்ளது.அனைவரும் திருத்தக்கூடியதாக இருக்ககூடாது!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "எழுத்துரு அளவு" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "சுருக்கு" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "விரி" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "மீள்வினவல்" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3102,76 +3106,59 @@ msgstr "தரவுத்தளம்" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "மொத்தம் %d புத்தகக்குறி" -msgstr[1] "மொத்தம் %d புத்தகக்குறிகள்" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "தனிப்பட்ட" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "பகிரப்பட்டது" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s மற்றும் %3$s புத்தகக்குறிகள் சேர்க்கப்பட்டன" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "புத்தகக்குறிகள் இல்லை" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "அமர்வின் போது" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "விளக்குக" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "பகுமுறையிடல்" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "புத்தகக்குறி" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "வினவல் தோல்வியடைந்தது" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "வினவலின் நேரம்" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "SQL வினவல் காட்சிமுனையம்" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "முனையம்" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "அகற்று" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "வரலாறு" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3189,182 +3176,182 @@ msgstr "வரலாறு" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "விருப்பத்தேர்வுகள்" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "புத்தகக்குறிகள்" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "வினவலை செயல்படுத்த Ctrl+Enter அழுத்துக" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Press Ctrl+Enter to execute query" msgid "Press Enter to execute query" msgstr "வினவலை செயல்படுத்த Ctrl+Enter அழுத்துக" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "ஏறுவரிசை" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "இறங்குவரிசை" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Order" msgid "Order:" msgstr "ஏனையது->வரிசை" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "எண்ணிக்கை" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute" msgid "Execution order" msgstr "செயலாக்குக" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Order" msgid "Order by:" msgstr "ஏனையது->வரிசை" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "SQL வினவல்கள்" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "SQL வினவல்கள்" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show create" msgid "Show trace" msgstr "உருவாக்கத்தை காட்டு" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide Panel" msgid "Hide trace" msgstr "பலகத்தை மறை" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Count" msgid "Count:" msgstr "எண்ணிக்கை" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "புதுப்பி" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "சேர்க்க" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "புத்தகக்குறி சேர்க்க" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "சிட்டை" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "இலக்கு தரவுத்தளம்" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "இப்புத்தகக்குறியை பகிர்க" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "இயல்நிலையை அமைக்க" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "எப்போதும் வினவல் தகவல்களை விரிக்க" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "துவக்கத்தின் போது வினவல் வரலாற்றை காண்பி" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "தற்போது உலவும் வினவலை காண்பிக்க" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied database" msgid "Switch to dark theme" msgstr "பிரதியான தரவுதளத்துக்கு மாறு" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "வழங்கி பதிலளிக்கவில்லை(அல்லது உள்வழங்கியின் இணைவுக்கொள்குழி சரியாக அமைக்கப்படவில்லை)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "வழங்கி பதிலளிக்கவில்லை." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "தரவுத்தளத்தை கொண்டுள்ள அடைவின் உரிமைகளை சரிபார்க்க." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "தகவல்கள்…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "அமைப்பாக்கத்தில் உள்ளவாறு அமைத்த கட்டுபாட்டுபயனருக்கான இணைப்பு தோல்வியடைந்தது." @@ -3681,7 +3668,7 @@ msgstr "அண்ணளவாக இருக்கலாம்.[doc@faq3-11]FAQ #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "உங்கள் SQL வினவல் வெற்றிகரமாக நிறைவேற்றப்பட்டது." @@ -3801,15 +3788,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3873,8 +3860,8 @@ msgid "Keyname" msgstr "முக்கியபெயர்" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3924,13 +3911,13 @@ msgstr "" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "அழி" @@ -4028,7 +4015,7 @@ msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "செயல்பாடுகள்" @@ -4043,7 +4030,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4416,11 +4403,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "அதை ஏற்றுக்கொள்" @@ -4683,23 +4670,23 @@ msgctxt "spatial types" msgid "Spatial" msgstr "வெளி சார்பு" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "நிலையான தரவு" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4710,38 +4697,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL சொன்னது: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP நிரல் இல்லாமல்" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "வினவலை சமர்ப்பி" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP குறிமுறை உருவாக்கு" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit view" msgctxt "Inline edit query" @@ -4831,6 +4818,10 @@ msgstr "ஒவ்வொரு மணிக்கும்" msgid "per day" msgstr "ஒரு நாளைக்கு" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "பகிரப்பட்டது" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "தேடுக:" @@ -4937,41 +4928,41 @@ msgstr "புதிய நெடுவரிசையை சேர்க்க" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "வழங்கி %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4979,24 +4970,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5672,13 +5663,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5696,12 +5687,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -6266,7 +6257,7 @@ msgid "Column names in first row" msgstr "" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -7691,7 +7682,7 @@ msgid "Table %s has been emptied." msgstr "%s அட்டவணை வெறுமையாக்கப்பட்டது." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "நோக்குநிலை %s கைவிடப்பட்டது." @@ -7824,8 +7815,8 @@ msgid "No data to display" msgstr "காட்டுவதற்கு தரவு இல்லை" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7871,52 +7862,52 @@ msgstr[1] "" msgid "No column selected." msgstr "எந்த நிரல்வரிசையும் தெரிவுசெய்யப்படவில்லை." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "நெடுவரிசைகள் வெற்றிகரமாக நகர்த்தப்பட்டன." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "வினவல் வழு" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "மாற்று" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "சுட்டுதொகுப்புக்குறி" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "இடம்சார்" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "தனித்த மதிப்புகள்" @@ -7926,7 +7917,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8673,54 +8664,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "தரவுத்தளம்: %s க்கு செல்க" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8766,53 +8757,53 @@ msgstr "அல்லது" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8824,11 +8815,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9661,7 +9652,7 @@ msgstr "அட்டவணையை திருத்து" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "தரவை அல்லது அட்டவணையை அழி" @@ -9674,32 +9665,32 @@ msgid "Delete the table (DROP)" msgstr "அட்டவணையை அழி (அழி)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "ஆரய்தல்" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "சரிபார்" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "உகப்பாக்கு" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "மீள்வாகு" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "திருத்து" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9727,35 +9718,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9931,7 +9922,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9955,21 +9946,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10059,7 +10050,7 @@ msgid "Database:" msgstr "தரவுத்தளம்:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "தரவு:" @@ -10158,7 +10149,7 @@ msgid "Data creation options" msgstr "தரவேற்ற விருப்பங்கள்" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10227,7 +10218,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10273,52 +10264,52 @@ msgstr "பயன்பாட்டில் உள்ளது" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "குவிக்கப்பட்ட அட்டவணைகளுக்கான தொகுப்புக்குறிகள்" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "அட்டவணைகளில்:->அட்டவணைகளுக்கான தொகுப்புக்குறிகள்" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "குவிக்கப்பட்ட அட்டவணைகளுக்கான AUTO_INCREMENT(தன்னிலைகூட்டு)" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "அட்டவணைக்கான AUTO_INCREMENT(தன்னிலைகூட்டு)" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10348,7 +10339,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10366,33 +10357,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10400,28 +10391,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10429,23 +10420,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "ESRI வடிவகோப்பு" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "ESRI வடிவகோப்பை \"%s\" தரவிறக்குவதில் பிழை நிகழ்ந்துள்ளது." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL இடம்சார் நிரல்நீட்சியானது ESRI வகைக்கு \"%s\" ஆதரவளிக்கவில்லை." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10457,7 +10448,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -13232,15 +13223,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -13255,17 +13242,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -13287,19 +13275,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -13329,17 +13317,17 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "Rate of table open" msgid "Unexpected beginning of statement." msgstr "திறந்தநிலை அட்டவணைகளின் விழுக்காடு" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13362,17 +13350,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "இந்நிரைவரிசை அழிக்கப்பட்டது." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14051,7 +14039,7 @@ msgstr "" msgid "Invalid table name" msgstr "தகுதியற்ற அட்டவணைப் பெயர்" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15011,7 +14999,7 @@ msgid "at beginning of table" msgstr "திறந்தநிலை அட்டவணைகளின் விழுக்காடு" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15056,7 +15044,7 @@ msgstr "பிரிவினை %s" msgid "Edit partitioning" msgstr "தொகுப்பு பார்வை" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "தொகுப்பு பார்வை" @@ -15175,11 +15163,11 @@ msgstr "பெயரை பார்" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "தரவு பார்வையை அழி (கைவிடு)" @@ -16221,6 +16209,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "மொத்தம் %d புத்தகக்குறி" +#~ msgstr[1] "மொத்தம் %d புத்தகக்குறிகள்" + +#~ msgid "private" +#~ msgstr "தனிப்பட்ட" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s மற்றும் %3$s புத்தகக்குறிகள் சேர்க்கப்பட்டன" + #~ msgid "Replace table prefix:" #~ msgstr "அட்டவணை முன்னொட்டை பதிலிடு:" diff --git a/po/te.po b/po/te.po index 567df1e86a..54a9e9f164 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Telugu " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "అన్నీ ఎంచుకో" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "కనీసం ఒక్క పదం" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" # మొదటి అనువాదము -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add into comments" msgid "Add index" msgstr "స్పందనలకు చేర్చు" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Add a new User" msgid "Edit index" msgstr "క్రొత్త వాడుకరిని చేర్చు" # మొదటి అనువాదము -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %s column(s) to index" msgstr "స్పందనలకు చేర్చు" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "సృష్టించు" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "సృష్టించు" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "" # మొదటి అనువాదము -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add into comments" msgid "Please select column(s) for the index." msgstr "స్పందనలకు చేర్చు" # మొదటి అనువాదము -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have added a new user." msgid "You have to add at least one column." msgstr "మీరు క్రొత్త వినియోగదారుని చేర్చారు" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "Update Query" msgid "Simulate query" msgstr "క్వెరీ ని మార్చు" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Start" msgid "Matched rows:" msgstr "మొదలుపెట్టు" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "విలువ" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "" # మొదటి అనువాదము -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "వాడుకరి పేరులో ఏమీ లేదు!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "సంకేతపదం ఖాళీగా ఉంది!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "సంకేతపదాలు సరిపోలలేదు!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "మూసివేయి" # మొదటి అనువాదము -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "సృష్టించబడిన పుటల సంఖ్య." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "Database %s has been dropped." msgid "Template was deleted." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "అనుసంధానాలు" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Server configuration" msgid "Local monitor configuration incompatible!" msgstr "సేవకి స్వరూపణం" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1185,132 +1188,132 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "వాడుక" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "మొత్తం" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "మొత్తం" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "అనుసంధానాలు" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "బై" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "కిబై" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "మెబై" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "గిబై" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "టెబై" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "పిబై" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "ఎబై" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1318,32 +1321,32 @@ msgid "%d table(s)" msgstr "%s పట్టిక" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 #, fuzzy #| msgid "Relations" msgid "Questions" msgstr "సంబంధాలు" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "అమరికలు" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1355,47 +1358,47 @@ msgstr "" msgid "None" msgstr "ఏమీలేదు" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1403,157 +1406,157 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, fuzzy, php-format #| msgid "Tables" msgid "Enable %s" msgstr "పట్టికలు" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, fuzzy, php-format #| msgid "Disable Statistics" msgid "Disable %s" msgstr "గణాంకాలని అచేతనంచేయి" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 #, fuzzy #| msgid "Basic settings" msgid "Change settings" msgstr "ప్రాధమిక అమరికలు" -#: js/messages.php:254 +#: js/messages.php:256 #, fuzzy #| msgid "More settings" msgid "Current settings" msgstr "మరిన్ని అమరికలు" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Default title" msgid "Chart title" msgstr "అప్రమేయ శీర్షిక" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 #, fuzzy #| msgid "Difference" msgid "Differential" msgstr "తేడా" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" # మొదటి అనువాదము -#: js/messages.php:267 +#: js/messages.php:269 #, fuzzy #| msgid "Analyze" msgid "Analysing logs" msgstr "విశదీకరించు" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" # మొదటి అనువాదము -#: js/messages.php:270 +#: js/messages.php:272 #, fuzzy #| msgid "Write requests" msgid "Cancel request" msgstr "విన్నపములను వ్రాయుము" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "" -#: js/messages.php:285 +#: js/messages.php:287 #, fuzzy #| msgid "data" msgid "No data found" msgstr "భోగట్టా" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" # మొదటి అనువాదము -#: js/messages.php:289 +#: js/messages.php:291 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "విశదీకరించు" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1561,7 +1564,7 @@ msgstr "" msgid "Status" msgstr "స్థితి" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1571,19 +1574,19 @@ msgstr "స్థితి" msgid "Time" msgstr "సమయం" -#: js/messages.php:293 +#: js/messages.php:295 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "మొత్తం" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "Show statistics" msgid "Profiling results" msgstr "గణాంకాలను చూపించు" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" @@ -1591,51 +1594,51 @@ msgid "Table" msgstr "పట్టిక" # మొదటి అనువాదము -#: js/messages.php:296 +#: js/messages.php:298 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "అక్షరమాల" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "పట్టిక ఎంపికలు" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:306 +#: js/messages.php:308 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "మొత్తం" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1643,26 +1646,26 @@ msgid "" msgstr "" # మొదటి అనువాదము -#: js/messages.php:315 +#: js/messages.php:317 #, fuzzy #| msgid "Database" msgid "Reload page" msgstr "డేటాబేస్" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1671,76 +1674,76 @@ msgstr "" msgid "Import" msgstr "దిగుమతి" -#: js/messages.php:326 +#: js/messages.php:328 #, fuzzy #| msgid "Server configuration" msgid "Import monitor configuration" msgstr "సేవకి స్వరూపణం" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "క్వెరీ ని మార్చు" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "పత్రావళి" -#: js/messages.php:339 +#: js/messages.php:341 #, fuzzy #| msgid "Details…" msgid "Rule details" msgstr "వివరాలు…" -#: js/messages.php:340 +#: js/messages.php:342 #, fuzzy #| msgid "Authentication" msgid "Justification" msgstr "అధీకరణ" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" # మొదటి అనువాదము -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "చెల్లని పరామితులు!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1752,74 +1755,74 @@ msgstr "చెల్లని పరామితులు!" msgid "Cancel" msgstr "రద్దుచేయి" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Basic settings" msgid "Page-related settings" msgstr "ప్రాధమిక అమరికలు" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" # మొదటి అనువాదము -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy #| msgid "Analyze" msgid "Loading…" msgstr "విశదీకరించు" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Show statistics" msgid "Processing request" msgstr "గణాంకాలను చూపించు" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Show statistics" msgid "Request failed!!" msgstr "గణాంకాలను చూపించు" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Table comments" msgid "Dropping column" msgstr "పట్టిక వ్యాఖ్యలు" # మొదటి అనువాదము -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add into comments" msgid "Adding primary key" msgstr "స్పందనలకు చేర్చు" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1829,69 +1832,69 @@ msgstr "స్పందనలకు చేర్చు" msgid "OK" msgstr "సరే" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" # మొదటి అనువాదము -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Database" msgid "Renaming databases" msgstr "డేటాబేస్" # మొదటి అనువాదము -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Database" msgid "Copying database" msgstr "డేటాబేస్" # మొదటి అనువాదము -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "అక్షరమాల" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: js/messages.php:383 +#: js/messages.php:385 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "శోధించు" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "" -#: js/messages.php:387 +#: js/messages.php:389 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "తొలగించు" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1907,46 +1910,46 @@ msgstr "" msgid "Export" msgstr "ఎగుమతి" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "%s నిలువు వరుసకు విలువలు" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" # మొదటి అనువాదము -#: js/messages.php:399 +#: js/messages.php:401 #, fuzzy, php-format #| msgid "Add a new User" msgid "Add %d value(s)" msgstr "క్రొత్త వినియోగదారుని చేర్చు" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1956,7 +1959,7 @@ msgstr "" msgid "Edit" msgstr "మార్చు" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1967,95 +1970,95 @@ msgstr "మార్చు" msgid "Delete" msgstr "తొలగించు" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Disable Statistics" msgid "Variable %d:" msgstr "గణాంకాలని అచేతనంచేయి" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "Comments" msgid "Column selector" msgstr "వ్యాఖ్యలు" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Use this value" msgid "Search this list" msgstr "ఈ విలువని ఉపయోగించు" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" # మొదటి అనువాదము -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Add into comments" msgid "Continue" msgstr "స్పందనలకు చేర్చు" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "" # మొదటి అనువాదము -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "మార్చుము" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" # మొదటి అనువాదము -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2063,82 +2066,82 @@ msgstr "" msgid "End of step" msgstr "వాక్యాంతము" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2148,171 +2151,171 @@ msgstr "" msgid "Save" msgstr "భద్రపరచు" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "శోధించు" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Comments" msgid "Column maximum:" msgstr "వ్యాఖ్యలు" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Comments" msgid "Column minimum:" msgstr "వ్యాఖ్యలు" -#: js/messages.php:477 +#: js/messages.php:479 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "గరిష్ఠ పట్టికలు" -#: js/messages.php:478 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "గరిష్ఠ పట్టికలు" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "నిలువ వరుసల్ని చేర్చు/తొలగించు" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "విషయ సూచిక" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "పుట పేరు" # మొదటి అనువాదము -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Create a page" @@ -2320,14 +2323,14 @@ msgid "Save page" msgstr "పుటని సృష్టించు" # మొదటి అనువాదము -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2335,220 +2338,220 @@ msgstr "పుటని సృష్టించు" msgid "Open page" msgstr "పుటలు" -#: js/messages.php:543 +#: js/messages.php:545 #, fuzzy #| msgid "Delete" msgid "Delete page" msgstr "తొలగించు" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Title" msgid "Untitled" msgstr "శీర్షిక" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Export method" msgid "Export relational schema" msgstr "ఎగుమతి పద్ధతి" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Values for column %s" msgid "Add an option for column \"%s\"." msgstr "%s నిలువు వరుసకు విలువలు" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "దాఖలుచేయి" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Comments" msgid "Double-click to copy column name." msgstr "వ్యాఖ్యలు" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "అన్నీ చూపించు" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "అసలు స్థానం" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "రద్దుచేయి" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import" msgid "Import status" msgstr "దిగుమతి" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "అన్నీ ఎంచుకో" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "ముద్రించు" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Comments" msgid "Copy column name." msgstr "వ్యాఖ్యలు" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "మరిన్ని" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "అన్నీ చూపించు" # మొదటి అనువాదము -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide/Show all" msgid "Hide panel" msgstr "అన్నింటిని చూపుము/దాచుము" # మొదటి అనువాదము -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show" msgid "Show hidden navigation tree items." msgstr "చూపించు" # మొదటి అనువాదము -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Hide/Show all" @@ -2556,17 +2559,17 @@ msgid "Link with main panel" msgstr "అన్నింటిని చూపుము/దాచుము" # మొదటి అనువాదము -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Hide/Show all" msgid "Unlink from main panel" msgstr "అన్నింటిని చూపుము/దాచుము" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2574,114 +2577,114 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "" # మొదటి అనువాదము -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "సృష్టించు" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Basic settings" msgid "Change report settings" msgstr "ప్రాధమిక అమరికలు" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show more actions" msgid "Show report details" msgstr "మరిన్ని చర్యలను చూపించు" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "పట్టిక వ్యాఖ్యలు" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2690,30 +2693,30 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "డేటాబేస్ ను ఇక్కడికి కాపీ చేయి" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Display table filter" msgid "Add table prefix" msgstr "పట్టిక వ్యాఖ్యలు" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Display table filter" msgid "Replace table with prefix" msgstr "పట్టిక వ్యాఖ్యలు" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" # మొదటి అనువాదము -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Prev" msgctxt "Previous month" @@ -2721,7 +2724,7 @@ msgid "Prev" msgstr "గత" # మొదటి అనువాదము -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2729,149 +2732,149 @@ msgid "Next" msgstr "తదుపరి" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "ఈరోజు" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "జనవరి" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "ఫిబ్రవరి" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "మార్చి" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "ఏప్రిల్" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "మే" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "జూన్" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "జూలై" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "ఆగస్ట్" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "సెప్టెంబర్" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "అక్టోబర్" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "నవంబర్" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "డిసెంబర్" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "జన" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "ఫిబ్ర" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "మార్చి" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "ఏప్రి" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "మే" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "జూన్" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "జూలై" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "ఆగ" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "సెప్టె" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "అక్టో" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "నవం" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "డిసెం" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "ఆదివారం" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "సోమవారం" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "మంగళవారం" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "బుధవారం" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "గురువారం" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "శుక్రవారం" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "శనివారం" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2879,183 +2882,183 @@ msgid "Sun" msgstr "ఆది" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "సోమ" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "మంగళ" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "బుధ" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "గురు" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "శుక్ర" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "శని" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "ఆ" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "సో" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "మం" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "బు" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "గు" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "శు" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "శ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "ఏమీలేదు" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "గంట" # మొదటి అనువాదము -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "నిమిషం" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "క్షణం" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" # మొదటి అనువాదము -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Add new field" msgid "Please fix this field" msgstr "క్రొత్త ఫీల్డ్ చేర్చు" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "అన్నీ ఎంచుకో" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "పొరపాటు" @@ -3105,33 +3108,33 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "" # మొదటి అనువాదము -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3149,90 +3152,71 @@ msgstr "" msgid "Database" msgstr "డేటాబేస్" -# Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Search" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "శోధించు" -msgstr[1] "శోధించు" - -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 #, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "శోధించు" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Search" msgid "Bookmark" msgstr "శోధించు" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Show statistics" msgid "Query failed" msgstr "గణాంకాలను చూపించు" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "SQL చరిత్ర" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3250,10 +3234,10 @@ msgstr "SQL చరిత్ర" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 @@ -3261,120 +3245,120 @@ msgid "Options" msgstr "ఎంపికలు" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Search" msgid "Bookmarks" msgstr "శోధించు" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Update Query" msgid "Press Ctrl+Enter to execute query" msgstr "క్వెరీ ని మార్చు" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Update Query" msgid "Press Enter to execute query" msgstr "క్వెరీ ని మార్చు" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "ఆరోహణ" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "అవరోహణ" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" # మొదటి అనువాదము -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "వరుస" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "రంగుని చూపించు" # మొదటి అనువాదము -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide/Show all" msgid "Hide trace" msgstr "అన్నింటిని చూపుము/దాచుము" # మొదటి అనువాదము -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "వరుస" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "మరియు" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Search" msgid "Add bookmark" msgstr "శోధించు" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Data Label" msgid "Label" msgstr "డేటాబేస్" # మొదటి అనువాదము -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy #| msgctxt "short form" #| msgid "Create table" @@ -3382,67 +3366,67 @@ msgid "Target database" msgstr "పట్టికను సృష్టించు" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Search" msgid "Share this bookmark" msgstr "శోధించు" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Leave blank for defaults" msgid "Set default" msgstr "అప్రమేయాలకై ఖాళీగా వదిలివేయండి" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to" msgid "Switch to dark theme" msgstr "దీనికి మారు" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Server configuration" msgid "Failed to set configured collation connection!" msgstr "సేవకి స్వరూపణం" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "వివరాలు…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3816,7 +3800,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3942,15 +3926,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4016,8 +4000,8 @@ msgid "Keyname" msgstr "కీలకపదం" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4067,13 +4051,13 @@ msgstr "" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -4173,7 +4157,7 @@ msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "" @@ -4188,7 +4172,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4608,12 +4592,12 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" # మొదటి అనువాదము -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "తీసుకొనుము" @@ -4885,21 +4869,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "మొత్తం" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "గరిష్ఠం: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4910,40 +4894,40 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" # మొదటి అనువాదము -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Create a page" msgid "Without PHP code" msgstr "పుటని సృష్టించు" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "క్వెరీ ని సమర్పించు" # మొదటి అనువాదము -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create a page" msgid "Create PHP code" msgstr "పుటని సృష్టించు" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Add a new User" msgctxt "Inline edit query" @@ -5036,6 +5020,10 @@ msgstr "గంటకి" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది #: libraries/browse_foreigners.lib.php:133 #, fuzzy @@ -5157,44 +5145,44 @@ msgstr "స్పందనలకు చేర్చు" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Server configuration" msgid "Failed to read configuration file!" msgstr "సేవకి స్వరూపణం" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Security" msgid "Server %d" msgstr "భద్రత" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5202,24 +5190,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5917,13 +5905,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5941,12 +5929,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -6543,7 +6531,7 @@ msgid "Column names in first row" msgstr "వ్యాఖ్యలు" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -8001,7 +7989,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "View %s has been dropped." @@ -8138,8 +8126,8 @@ msgid "No data to display" msgstr "భోగట్టా" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8185,19 +8173,19 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "" @@ -8205,36 +8193,36 @@ msgid "" msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" # మొదటి అనువాదము -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "మార్చుము" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "పూర్తిపాఠ్యం" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -8246,7 +8234,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -9019,56 +9007,56 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Copy database to" msgid "Go to database: %s" msgstr "డేటాబేస్ ను ఇక్కడికి కాపీ చేయి" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "నిర్మాణం మాత్రమే" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9116,56 +9104,56 @@ msgstr "లేదా" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "మరియు తరువాత" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "మునుపటి పుటకు వెళ్ళు" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "ఈ పుటకు తిరిగి వెళ్ళుము" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9177,11 +9165,11 @@ msgstr "" msgid "Value" msgstr "విలువ" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10071,7 +10059,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -10085,32 +10073,32 @@ msgstr "" # మొదటి అనువాదము #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "విశదీకరించు" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10138,37 +10126,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -10343,7 +10331,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10369,21 +10357,21 @@ msgstr "వివరణ" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10485,7 +10473,7 @@ msgstr "డేటాబేస్" # మొదటి అనువాదము #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Database" msgid "Data:" @@ -10600,7 +10588,7 @@ msgid "Data creation options" msgstr "పట్టిక ఎంపికలు" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10669,7 +10657,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10721,56 +10709,56 @@ msgstr "వాడుకలో ఉన్నది" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Use Tables" msgid "Indexes for dumped tables" msgstr "పట్టికల్ని వాడు" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Use Tables" msgid "Indexes for table" msgstr "పట్టికల్ని వాడు" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10802,7 +10790,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10822,33 +10810,33 @@ msgstr "" msgid "Column names: " msgstr "వ్యాఖ్యలు" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10856,28 +10844,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "మీడియావికీ పట్టిక" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document" msgid "Could not parse OpenDocument Spreadsheet!" @@ -10887,23 +10875,23 @@ msgstr "ఓపెన్ డాక్యుమెంట్" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10915,7 +10903,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -13836,15 +13824,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "Table name" @@ -13859,17 +13843,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "Table name" msgid "An alias was expected." @@ -13891,19 +13876,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "Database %s has been dropped." msgid "A rename operation was expected." @@ -13934,18 +13919,18 @@ msgid "Variable name was expected." msgstr "" # మొదటి అనువాదము -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgctxt "short form" #| msgid "Create table" msgid "Unexpected beginning of statement." msgstr "పట్టికను సృష్టించు" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13966,17 +13951,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "Database %s has been dropped." msgid "At least one column definition was expected." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14674,7 +14659,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15748,7 +15733,7 @@ msgid "at beginning of table" msgstr "పట్టికను సృష్టించు" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -15789,7 +15774,7 @@ msgstr "సంబంధాలు" msgid "Edit partitioning" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Add a new User" msgid "Edit view" @@ -15927,11 +15912,11 @@ msgstr "నామధేయమును చూపుము" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Drop the database (DROP)" msgid "Delete the view (DROP)" @@ -17053,6 +17038,14 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +# Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది +#, fuzzy +#~| msgid "Search" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "శోధించు" +#~ msgstr[1] "శోధించు" + #, fuzzy #~| msgid "Display table filter" #~ msgid "Replace table prefix:" diff --git a/po/th.po b/po/th.po index 5d590610aa..b8fdd26017 100644 --- a/po/th.po +++ b/po/th.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:31+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Thai " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "บันทึกเป็นไฟล์" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "ตั้งค่าใหม่" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "เลือกทั้งหมด" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "ค่าในแบบฟอร์มไม่มี !" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "อย่างน้อยหนึ่งคำ" -#: js/messages.php:118 +#: js/messages.php:120 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number!" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:119 +#: js/messages.php:121 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid length!" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "เพิ่มฟิลด์ใหม่" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "แก้ไขดัชนี" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "เพิ่มคอลัมน์ %s ไปยังดัชนี" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "รุ่นของเซิร์ฟเวอร์" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "รุ่นของเซิร์ฟเวอร์" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "คร่อมฟิลด์ด้วย" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %s column(s) to index" msgid "Please select column(s) for the index." msgstr "เพิ่มคอลัมน์ %s ไปยังดัชนี" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "ต้องเลือกให้แสดงอย่างน้อยหนึ่งคอลัมน์" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "ในคำค้น" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "ระเบียนที่มีผล:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "คำค้น SQL" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "ค่า" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "ชื่อโฮสต์ยังว่างอยู่!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "ชื่อผู้ใช้ยังว่างอยู่!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "รหัสผ่านยังว่างอยู่!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "รหัสผ่านไม่ตรงกัน!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "ถอนผู้ใช้ที่เลือก" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "ปิด" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy msgid "Template was created." msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "ปรับปรุงโพรไฟล์เรียบร้อยแล้ว" -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "ลบเรียบร้อยแล้ว" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "อื่นๆ" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "การเชื่อมต่อ" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "การตั้งค่าติดตามภายในเครื่องไม่เข้ากัน" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1223,167 +1226,167 @@ msgstr "" "การตั้งค่าการแสดงผลของเบราเซอร์ของคุณไม่รองรับกับหน้าจอติดตามรุ่นใหม่ " "กรุณารีเซ็ตให้กลับเป็นค่าเริ่มต้นผ่านทาง เมนู Settings" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "ประสิทธิภาพคำสั่ง" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "คำสั่งที่ถูกรันบนหน่วยความจำ" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "คำสั่งที่ถูกรันไปในหน่วยความจำแล้ว" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "การใช้งาน CPU ของระบบ" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "หน่วยความจำของระบบ" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "หน่วยความจำ swap ของระบบ" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "เฉลี่ยการทำงาน" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "จำนวนหน่วยความจำรวม" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "จำนวนหน่วยความจำที่ถูกใช้" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "จำนวนหน่วยความจำที่จอง" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "หน่วยความจำว่าง" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "หน่วยความจำที่ใช้ไป" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "จำนวน Swap" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "จำนวน Swap ที่ถูกใช้" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "จำนวน Swap ที่ใช้ไป" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "จำนวน Swap ที่ว่าง" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Byte ที่ส่ง" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Byte ที่รับ" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "การเชื่อมต่อ" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "โพรเซส" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "ไบต์" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "กิโลไบต์" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "เมกกะไบต์" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "กิกะไบต์" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "เทอราไบต์" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "เพตตะไบต์" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "เอกซะไบต์" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d ตาราง" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "คำถาม" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "การจราจร" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "การตั้งค่า" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "เพิ่มแสดงผลไปในตารางข้อมูล" -#: js/messages.php:218 +#: js/messages.php:220 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "กรุณาเพิ่มค่าตัวแปรอย่างน้อยหนึ่งตัวเข้าไปในลำดับ" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1395,47 +1398,47 @@ msgstr "กรุณาเพิ่มค่าตัวแปรอย่าง msgid "None" msgstr "ไม่มี" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "เรียกคืนการแสดงผล" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "หยุดการแสดงผล" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log และ slow_query_log ถูกเปิดไว้" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log ถูกเปิดไว้" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log ถูกเปิดไว้" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "general_log และ slow_query_log ถูกปิดไว้" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output ไม่ได้ถูกตั้งกับตาราง" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output ถูกตั้งกับตาราง" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1445,101 +1448,101 @@ msgstr "" "slow_query_log ถูกเปิดไว้ แต่ประวัติคำสั่งของเครื่องแม่ข่ายใช้เวลานานกว่า %d วินาที " "ขอแนะนำให้ตั้งค่า long_query_time ไว้ที่ 0-2 วินาที โดยขึ้นอยู่กับระบบของท่าน" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time ถูกตั้งไว้ที่ %d วินาที" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "การตั้งค่านี้ถูกนำไปใช้ทั้งหมด และจะคืนค่ากลับเมื่อเริ่มเครื่องใหม่อีกครั้ง:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "ตั้ง log_output เป็น %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "เปิดใช้ %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "ปิดใช้งาน %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Set long_query_time to %ds" msgid "Set long_query_time to %d seconds." msgstr "ตั้ง long_query_time เป็น %ds" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "คุณไม่สามารถเปลี่ยนแปลงค่านี้ได้ กรุณาเข้าใช้งานเป็น root หรือติดต่อผู้ดูแลระบบ" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "เปลี่ยนการตั้งค่า" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "ค่าที่ถูกตั้งปัจจุบัน" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "นำเข้าไฟล์" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "ค่าที่ต่าง" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "ถูกหารด้วย %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "หน่วย" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "จาก slow log" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "จากประวัติทั่วไป" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "วิเคราะห์ไฟล์บันทึก" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "กำลังวิเคราะห์และตรวจประวัติ อาจจะใช้เวลาพอสมควร" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "ยกเลิกคำร้อง" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1548,7 +1551,7 @@ msgstr "" "สดมส์นี้แสดงจำนวนคำสั่งที่ถูกจัดกลุ่มเดียวกัน อย่างไรก็ดีการจัดกลุ่มจัดเพียงคำสั่ง แต่เวลาเริ่ม " "หรือข้อมูลบางอย่าง อาจแตกต่างกัน" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1557,31 +1560,31 @@ msgstr "" "จากที่กลุ่มคำสั่ง เพิ่มข้อมูล ถูกเลือกหลายอันพร้อมๆกัน คำลังที่เพิ่มข้อมูลไปในตารางเดียวกัน " "จะถูกจับกลุ่มรวมกันโดยไม่สนเรื่องข้อมูลที่จะถูกเพิ่มเข้าไป" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "ประวัติของข้อมูลถูกเรียกขึ้นมา คำสั่งได้ประมวลภายใน:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "ข้ามไปยังตารางเก็บประวัติ" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "ไม่มีข้อมูล" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "ประวัติถูกวิเคราะห์แล้ว แต่ไม่มีข้อมูลในช่วงนั้น" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "กำลังวิเคราะห์…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "อธิบายผลคำสั่ง" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1589,7 +1592,7 @@ msgstr "อธิบายผลคำสั่ง" msgid "Status" msgstr "สถานะ" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1599,58 +1602,58 @@ msgstr "สถานะ" msgid "Time" msgstr "เวลา" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "เวลารวม:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "ผลลัพธ์" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "ตาราง" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "ชุดแสดงผล" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "ตัวเลือกรองประวัติตาราง" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "ตัวกรอง" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "ตัวกรอง โดย คำหรืออักขระ:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "กลุ่มคำสั่ง ไม่สนใจตัวแปรใน WHERE" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "ผลรวมระเบียนต่อหน้า:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "รวม:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "กำลังเรียกดูประวัติ" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "ไม่สามารถรีเฟรซหน้าจอได้" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1659,25 +1662,25 @@ msgstr "" "ในระหว่างที่กำลังแสดงผลข้อมูลนั้นเครื่องแม่ข่ายตอบสนองผิดพลาด " "น่าจะเกิดจากที่หมดเวลาเซสชั่นของท่าน กรุณายืนยันตัวตนใหม่อีกครั้ง" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "รีเฟรซหน้า" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "ระเบียนที่มีผล:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "การ parsing ไฟล์ตั้งค่าล้มเหลว สาเหตุมาจาก JSON" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "การสร้างตารางแสดงผลล้มเหลว เป็นเพราะการตั้งค่า โปรดล้างค่ากลับไปเป็นการตั้งค่าแบบเริ่มแรก…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1686,69 +1689,69 @@ msgstr "" msgid "Import" msgstr "นำเข้า" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "ตั้งค่าการตรวจสอบการนำเข้า" -#: js/messages.php:328 +#: js/messages.php:330 #, fuzzy #| msgid "Please select the file you want to import" msgid "Please select the file you want to import." msgstr "กรุณาเลือกไฟล์ที่คุณต้องการนำเข้า" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "วิเคราะห์คำสั่ง" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "แนะนำระบบ" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "ปัญหาเรื่องสมรรถนะ" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "ปัญหา" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "เอกสารอ้างอิง" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "กฎเกณฑ์ต่างๆ" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "เอกสารอ้างอิง" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "ตัวแปรหรือสูตรที่ถูกใช้" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "ทดสอบ" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "พารามิเตอร์ไม่ถูกต้อง!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1760,73 +1763,73 @@ msgstr "พารามิเตอร์ไม่ถูกต้อง!" msgid "Cancel" msgstr "ยกเลิก" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "เปลี่ยนการตั้งค่า" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy #| msgid "Loading" msgid "Loading…" msgstr "กำลังโหลด" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "กำลังประมวลผล" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy msgid "Request failed!!" msgstr "ชนิดคำค้น" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "โพรเซส" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "รหัสข้อผิดพลาด: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "ข้อความข้อผิดพลาด: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "ไม่มีฐานข้อมูลที่ถูกเลือก" -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "ทิ้งสดมส์" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "เพิ่มคีย์หลัก" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1836,65 +1839,65 @@ msgstr "เพิ่มคีย์หลัก" msgid "OK" msgstr "ตกลง" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "กดเพื่อยกเลิกการเตือนนี้" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "กำลังเปลี่ยนชื่อฐานข้อมูล" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "กำลังคัดลอกฐานข้อมูล" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "กำลังเปลี่ยนชุดตัวอักษร" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Foreign key check:" msgid "Enable foreign key checks" msgstr "ตรวจสอบคีย์ต่างประเทศ:" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "การดึงค่าส่วนหัวไม่สำเร็จ" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "กำลังค้นหา" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "ซ่อนผลคำสั่ง SQL" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "แสดงผลคำค้น SQL" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "กำลังเปิด" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "กำลังลบ %s" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "ฟังก์ชั่นภายในจะต้องมีค่า RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1910,46 +1913,46 @@ msgstr "ฟังก์ชั่นภายในจะต้องมีค่ msgid "Export" msgstr "ส่งออก" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ตัวแก้ไข ENUM/SET" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "ค่าสำหรับคอลัมน์ \"%s\"" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "ค่าสำหรับคอลัมน์ใหม่" -#: js/messages.php:398 +#: js/messages.php:400 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Enter each value in a separate field." msgstr "ป้อนค่าในช่องต่างๆ" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "เพิ่มค่า %d" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "เตือน: ถ้าไฟล์มีหลายตาราง จะถูกรวมเป็นหนึ่ง" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "ซ่อนช่องใส่คำค้น SQL" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "แสดงช่องคำค้น SQL" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1959,7 +1962,7 @@ msgstr "แสดงช่องคำค้น SQL" msgid "Edit" msgstr "แก้ไข" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1970,96 +1973,96 @@ msgstr "แก้ไข" msgid "Delete" msgstr "ลบ" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "ตัวแปร" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "ยังไม่ได้เลือกแถว" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "ค้นหาในฐานข้อมูล" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "หน่วยความจำว่าง" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "สนับสนุน" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "เพิ่มคีย์หลัก" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "ได้เพิ่มไพรมารีคีย์แล้วใน %s" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "รายงานผลการติดตาม" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2067,88 +2070,88 @@ msgstr "" msgid "End of step" msgstr "ท้ายบรรทัด" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "จบ" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "ไม่มีฐานข้อมูลที่ถูกเลือก" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "เพิ่มสิทธิของตารางต่อไปนี้" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "ไม่มีฐานข้อมูลที่ถูกเลือก" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2158,450 +2161,450 @@ msgstr "ไม่มีฐานข้อมูลที่ถูกเลือ msgid "Save" msgstr "บันทึก" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "ซ่อนหลักในการค้นหา" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "แสดงหลักการค้นหา" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "ค้นหา" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "ชื่อคอลัมน์" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "ชื่อคอลัมน์" -#: js/messages.php:477 +#: js/messages.php:479 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "ตารางสูงสุด" -#: js/messages.php:478 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "ตารางสูงสุด" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "ซ่อนหลักในการค้นหา" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "แสดงหลักการค้นหา" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "แต่ละจุดแสดงข้อมูลระเบียน" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "นำตัวชี้วางเพื่อแสดงคำกำกับ" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "เมื่อต้องการย่อ/ขยาย ให้เลือกส่วนของจุดโดยใช้เมาส์" -#: js/messages.php:492 +#: js/messages.php:494 #, 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:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "คลิก จุดข้อมูล เพื่อดูหรือแก้ไขแถวข้อมูล" -#: js/messages.php:496 +#: js/messages.php:498 #, fuzzy msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "จุดสามารถปรับขนาดได้ โดยการลากไปมุมขวาด้านล่าง" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "เพิ่มสองสดมภ์" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "เลือกสองสดมภ์ใดๆ" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "สารบัญ" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "ข้าม" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "คัดลอก" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "จุด" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "แถวข้อความ" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "รูปหลายเหลี่ยม" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "เรขาคณิต" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "ด้านใน" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "ด้านนอก" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "เลือกคีย์อ้างอิง" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "เลือกคีย์นอก" -#: js/messages.php:533 +#: js/messages.php:535 #, 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "เลือกฟิลด์ที่ต้องการแสดง" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "หมายเลขหน้า:" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Open" msgid "Open page" msgstr "เปิด" -#: js/messages.php:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "เลือกทั้งหมด" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "หน่วย" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "เลือกหน้าที่ต้องการแก้ไข" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "แก้ไข หรือส่งออก รีเลชันแนล สกีมา" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "บันทึกการแก้ไขเรียบร้อยแล้ว" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "เพิ่มตัวเลือกสำหรับคอลัมน์ " -#: js/messages.php:555 +#: js/messages.php:557 #, fuzzy, php-format #| msgid "%d object(s) created" msgid "%d object(s) created." msgstr "สร้างวัตถุจำนวน %d เรียบร้อยแล้ว" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "ส่ง" -#: js/messages.php:559 +#: js/messages.php:561 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "กด escape เพื่อยกเลิกการแก้ไข" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "ลากเพื่อเปลี่ยนลำดับ" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "กดเพื่อมาร์ก หรือยกเลิกการมาร์ก" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "ดับเบิลคลิกเพื่อคัดลอกชื่อคอลัมน์" -#: js/messages.php:574 +#: js/messages.php:576 #, 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "แสดงทั้งหมด" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "ตำแหน่งเริ่มแรก" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "ยกเลิก" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "ยกเลิก" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy msgid "Import status" msgstr "นำเข้าไฟล์" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "เลือกตาราง" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "พิมพ์" -#: js/messages.php:606 +#: js/messages.php:608 #, 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:611 +#: js/messages.php:613 #, 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:617 +#: js/messages.php:619 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "ไปที่หน้า" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "คัดลอกชื่อคอลัมน์" -#: js/messages.php:620 +#: js/messages.php:622 #, fuzzy msgid "Right-click the column name to copy it to your clipboard." msgstr "คลิกขวาที่ชื่อคอลัมน์เพื่อคัดลอกข้อมูล" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "สร้างรหัสผ่าน" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "สร้าง" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "เพิ่มเติม" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "แสดงแผง" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "ซ่อนแผง" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Reload navigation frame" msgid "Show hidden navigation tree items." msgstr "โหลดกรอบนำทางใหม่" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Use text field" msgid "Link with main panel" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Use text field" msgid "Unlink from main panel" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "ไม่พบหน้าดังกล่าวในประวัติการเรียกดู อาจเป็นเพราะหน้านั้นไม่มีหรือหมดอายุที่จะแสดงได้แล้ว" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2609,122 +2612,122 @@ msgid "" msgstr "phpMyAdmin มีรุ่นใหม่แล้ว กรุณาพิจารณาอัพเกรดเป็นรุ่นใหม่ %s โดยออกเมื่อ %s" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", รุ่นเสถียรล่าสุด:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "ล่าสุด" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "สร้างมุมมอง" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "พอร์ตของเซิร์ฟเวอร์" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "พอร์ตของเซิร์ฟเวอร์" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "เปลี่ยนการตั้งค่า" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy msgid "Show report details" msgstr "แสดงตาราง" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "ข้าม" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "แสดงคำค้นนี้อีกที" -#: js/messages.php:700 +#: js/messages.php:702 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "คุณแน่ใจที่ต้องการจะ \"%s\"?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "หมายเหตุของตาราง" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "ซ่อนผลคำสั่ง SQL" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2733,385 +2736,385 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "คัดลอกฐานข้อมูลเป็น" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "เพิ่มฟิลด์ใหม่" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "แทนที่คำนำไปยังตาราง" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "คัดลอกคำนำไปยังตาราง" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "ก่อนหน้า" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "ต่อไป" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "วันนี้" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "มกราคม" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "กุมภาพันธ์" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "มีนาคม" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "เมษายน" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "พฤษภาคม" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "มิถุนายน" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "กรกฎาคม" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "สิงหาคม" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "กันยายน" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "ตุลาคม" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "พฤศจิกายน" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "ธันวาคม" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "ม.ค." #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "ก.พ." #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "มี.ค." #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "เม.ย." #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "พ.ค." #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "มิ.ย." #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "ก.ค." #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "ส.ค." #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "ก.ย." #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "ต.ค." #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "พ.ย." #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "ธ.ค." -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "อาทิตย์" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "วันจันทร์" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "วันอังคาร" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "วันพุธ" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "วันพฤหัสบดี" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "วันศุกร์" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "วันเสาร์" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "อ." #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "จ." #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "อ." #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "พ." #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "พฤ." #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "ศ." #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "ส." #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "อา." #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "จ." #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "อ." #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "พ." #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "พฤ." #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "ศ." #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "ส." #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "ปฎิทินแบบ เดือน/ปี" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "ไม่มี" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "ชั่วโมง" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "นาที" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "วินาที" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: js/messages.php:886 +#: js/messages.php:888 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:887 +#: js/messages.php:889 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:925 +#: js/messages.php:927 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:930 +#: js/messages.php:932 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "ผิดพลาด" @@ -3163,34 +3166,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "ไฟล์ตั้งค่า %s ไม่สามารถอ่านได้" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "สิทธิสำหรับไฟล์ตั้งค่าไม่ถูกต้อง ที่ถูกต้องจะต้องแก้ไขได้เฉพาะ root" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "ขนาดตัวอักษร" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "in query" msgid "Requery" msgstr "ในคำค้น" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3209,90 +3212,71 @@ msgid "Database" msgstr "ฐานข้อมูล" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Search" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "ค้นหา" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "ใช้ร่วมกัน" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "ลบคำค้นที่จดไว้เรียบร้อยแล้ว" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "ค้นหา" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "อธิบาย SQL" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "การทำแฟ้มประวัติ" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Search" msgid "Bookmark" msgstr "ค้นหา" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy msgid "Query failed" msgstr "ชนิดคำค้น" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "Query execution time" msgid "Queried time" msgstr "เวลาที่ทำคำสั่ง" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy msgid "SQL Query Console" msgstr "คำค้น SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "ล้าง" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "ประวัติ SQL" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3310,201 +3294,201 @@ msgstr "ประวัติ SQL" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "ตัวเลือก" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Search" msgid "Bookmarks" msgstr "ค้นหา" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "แก้จุดบกพร่อง SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy msgid "Press Ctrl+Enter to execute query" msgstr "คำค้น SQL" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy msgid "Press Enter to execute query" msgstr "คำค้น SQL" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "น้อยไปมาก" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "มากไปน้อย" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Other" msgid "Order:" msgstr "อื่นๆ" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "สดมภ์" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute" msgid "Execution order" msgstr "ดำเนินการ" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Other" msgid "Order by:" msgstr "อื่นๆ" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "แบบสอบถาม SQL" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "แบบสอบถาม SQL" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "แสดงสี" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide Panel" msgid "Hide trace" msgstr "ซ่อนแผง" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "สดมภ์" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "เรียกใหม่" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "และ" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Search" msgid "Add bookmark" msgstr "ค้นหา" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "ป้ายชื่อ" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy msgid "Target database" msgstr "ค้นหาในฐานข้อมูล" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Search" msgid "Share this bookmark" msgstr "ค้นหา" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Export defaults" msgid "Set default" msgstr "ส่งออกค่าเริ่มต้น" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy msgid "Show query history at start" msgstr "คำค้น SQL" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "สลับไปที่ตารางที่ถูกทำสำเนาไว้" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to set configured collation connection!" msgstr "ไม่สามารถอ่านแฟ้มการตั้งค่าได้" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอบสนอง" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3863,7 +3847,7 @@ msgstr "มีข้อผิดพลาดระหว่างการอั #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -3995,17 +3979,17 @@ msgstr "ไม่รองรับไฟล์ประเภทนี้" msgid "Unknown error in file upload." msgstr "ไม่ทราบข้อผิดพลาดของไฟล์ที่จะอัพโหลด" -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "มีข้อผิดพลาดระหว่างการอัพโหลด กรุณาดู [doc@faq1-11]FAQ 1.11[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "ข้อผิดพลาดขณะเคลื่อนย้ายไฟล์อัพโหลด" -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -4075,8 +4059,8 @@ msgid "Keyname" msgstr "ชื่อคีย์" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4126,13 +4110,13 @@ msgstr "โยนดัชนี %s ทิ้งไปเรียบร้อ #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "โยนทิ้ง" @@ -4230,7 +4214,7 @@ msgstr "สิทธิ" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "กระบวนการ" @@ -4245,7 +4229,7 @@ msgstr "การติดตาม" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4658,11 +4642,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "ไม่มีเส้นทางรูปภาพที่ถูกต้องสำหรับชุดรูปแบบ %s ที่พบ" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "ไม่สามารถแสดงตัวอย่างได้" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "ใช้ชุดรูปแบบนี้" @@ -4942,23 +4926,23 @@ msgctxt "spatial types" msgid "Spatial" msgstr "รวม" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "ขนาดใหญ่สุด: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "ข้อมูลคงที่" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4969,38 +4953,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL แสดง: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "อธิบาย SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "ไม่ต้องอธิบาย SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "ไม่เอาโค้ด PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "ประมวลผลคำค้น" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "สร้างโค้ด PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Add new field" msgctxt "Inline edit query" @@ -5095,6 +5079,10 @@ msgstr "ต่อชั่วโมง" msgid "per day" msgstr "ต่อวัน" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "ใช้ร่วมกัน" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5213,44 +5201,44 @@ msgstr "เพิ่มฟิลด์ใหม่" msgid "Attributes" msgstr "แอตทริบิวต์" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Failed to read configuration file" msgid "Failed to read configuration file!" msgstr "ไม่สามารถอ่านแฟ้มการตั้งค่าได้" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "ลำดับเซิฟเวอร์ไม่ถูกต้อง: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Hostname ไม่ถูกต้องสำหรับเซิฟเวอร์ %1$s กรุณาตรวจสอบการตั้งค่าของคุณ" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "เซิร์ฟเวอร์" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5258,24 +5246,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "เกิดข้อผิดพลาด: โทเค็นไม่ตรงกัน" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "ใช้ประโยชน์ได้" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "ตรวจพบคีย์ตัวเลข" @@ -6004,7 +5992,7 @@ msgstr "ใส่ชื่อฟิลด์ที่แถวแรก" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6012,7 +6000,7 @@ msgstr "คร่อมฟิลด์ด้วย" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6034,14 +6022,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "จบแถวด้วย" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6668,7 +6656,7 @@ msgid "Column names in first row" msgstr "ใส่ชื่อฟิลด์ที่แถวแรก" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -8185,7 +8173,7 @@ msgid "Table %s has been emptied." msgstr "ลบข้อมูลในตาราง %s เรียบร้อยแล้ว" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8326,8 +8314,8 @@ msgid "No data to display" msgstr "ไม่มีข้อมูล" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." @@ -8375,56 +8363,56 @@ msgstr[0] "" msgid "No column selected." msgstr "ยังไม่ได้เลือกแถว" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "ชนิดคำค้น" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, fuzzy, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "เปลี่ยน" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "ดัชนี" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "เชิงพื้นที่" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "ข้อความเต็ม (fulltext)" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Session value" msgid "Distinct values" @@ -8436,7 +8424,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "ส่วนขยาย %s ขาดหายไป กรุณาตรวจสอบการกำหนดค่าของ PHP" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "ไม่มีการเปลี่ยนแปลง" @@ -9224,55 +9212,55 @@ msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลั msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "ไม่มีฐานข้อมูล" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "ไม่มีฐานข้อมูล" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "เฉพาะโครงสร้าง" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9323,56 +9311,56 @@ msgstr "หรือ" msgid "web server upload directory:" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "แทรก" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "แทรกเป็นแถวใหม่" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "ส่งกลับ" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "แทรกระเบียนใหม่" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 #, fuzzy msgid "Go back to this page" msgstr "ส่งกลับ" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9384,11 +9372,11 @@ msgstr "" msgid "Value" msgstr "ค่า" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10271,7 +10259,7 @@ msgstr "ซ่อมแซมตาราง" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10287,32 +10275,32 @@ msgid "Delete the table (DROP)" msgstr "ไม่มีฐานข้อมูล" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "วิเคราะห์" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "ตรวจสอบ" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "ซ่อมแซม" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10341,37 +10329,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "ตรวจสอบความสมบูรณ์ของการอ้างถึง:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "ย้ายตารางไปที่เดิมไม่ได้" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "คัดลอกตารางไปที่เดิมไม่ได้" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "ตาราง %s ถูกย้ายไป %s แล้ว" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "คัดลอกตาราง %s ไปเก็บในชื่อ %s เรียบร้อยแล้ว." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "ชื่อตารางยังว่างอยู่!" @@ -10562,7 +10550,7 @@ msgstr "สถิติฐานข้อมูล" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "dump ตาราง" @@ -10588,14 +10576,14 @@ msgstr "รายละเอียด" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "โครงสร้างตาราง" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10603,7 +10591,7 @@ msgstr "เฉพาะโครงสร้าง" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10717,7 +10705,7 @@ msgid "Database:" msgstr "ฐานข้อมูล" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10830,7 +10818,7 @@ msgid "Data creation options" msgstr "ตัวเลือกการแปลง" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10899,7 +10887,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10945,60 +10933,60 @@ msgstr "ใช้อยู่" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for dumped tables" msgstr "ภายในตาราง:" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "ภายในตาราง:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "เพิ่มค่า AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "เพิ่มค่า AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "เฉพาะโครงสร้าง" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11034,7 +11022,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11054,33 +11042,33 @@ msgstr "" msgid "Column names: " msgstr "ชื่อคอลัมน์" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11088,28 +11076,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11119,23 +11107,23 @@ msgstr "เอกสารอ้างอิง" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -11149,7 +11137,7 @@ msgstr "โหมดที่เข้ากันได้กับ SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14127,15 +14115,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14150,17 +14134,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14182,19 +14167,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14223,17 +14208,17 @@ msgstr "โยนตาราง %s ทิ้งไปเรียบร้อ msgid "Variable name was expected." msgstr "รูปแบบของชื่อไฟล์" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "ที่จุดเริ่มต้นของตาราง" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14254,17 +14239,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "ลบเรียบร้อยแล้ว" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14976,7 +14961,7 @@ msgstr "ดูโครงสร้างของตาราง" msgid "Invalid table name" msgstr "ชื่อตารางไม่ถูกต้อง" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16088,7 +16073,7 @@ msgid "at beginning of table" msgstr "ที่จุดเริ่มต้นของตาราง" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16133,7 +16118,7 @@ msgstr "ตำแหน่ง" msgid "Edit partitioning" msgstr "เพิ่มฟิลด์ใหม่" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16269,12 +16254,12 @@ msgstr "" msgid "Column names" msgstr "ชื่อคอลัมน์" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "เปลี่ยนชื่อตารางเป็น" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "ไม่มีฐานข้อมูล" @@ -17472,6 +17457,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ถูกตั้งค่าไว้ที่ 0" +#, fuzzy +#~| msgid "Search" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "ค้นหา" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "ลบคำค้นที่จดไว้เรียบร้อยแล้ว" + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/tk.po b/po/tk.po index ea44b15e0f..2ad28d9224 100644 --- a/po/tk.po +++ b/po/tk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2013-05-07 17:12+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Turkmen " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Use this value" msgid "Reset all" msgstr "Şu bahany ulan" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Use this value" msgid "Y values" msgstr "Şu bahany ulan" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "Database %1$s has been created." msgid "Template was deleted." msgstr "%1$s maglumatlar ulgamy döredildi." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "" -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1102,155 +1105,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1262,47 +1265,47 @@ msgstr "" msgid "None" msgstr "" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1310,136 +1313,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1447,7 +1450,7 @@ msgstr "" msgid "Status" msgstr "" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1457,82 +1460,82 @@ msgstr "" msgid "Time" msgstr "" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1541,63 +1544,63 @@ msgstr "" msgid "Import" msgstr "" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1609,60 +1612,60 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1672,61 +1675,61 @@ msgstr "" msgid "OK" msgstr "" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Use this value" msgid "Renaming databases" msgstr "Şu bahany ulan" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Use this value" msgid "Copying database" msgstr "Şu bahany ulan" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "Başlaryny alyp bolmady" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1742,44 +1745,44 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1789,7 +1792,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1800,166 +1803,166 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Use this value" msgid "Search this list" msgstr "Şu bahany ulan" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -1969,374 +1972,374 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Hemmesini görkez" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Use this value" msgid "Select database first" msgstr "Şu bahany ulan" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "" -#: js/messages.php:631 -#, fuzzy -#| msgid "Show all" -msgid "Show panel" -msgstr "Hemmesini görkez" - -#: js/messages.php:632 -msgid "Hide panel" -msgstr "" - #: js/messages.php:633 #, fuzzy #| msgid "Show all" +msgid "Show panel" +msgstr "Hemmesini görkez" + +#: js/messages.php:634 +msgid "Hide panel" +msgstr "" + +#: js/messages.php:635 +#, fuzzy +#| msgid "Show all" msgid "Show hidden navigation tree items." msgstr "Hemmesini görkez" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2344,109 +2347,109 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "Hemmesini görkez" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Show all" msgid "Show arguments" msgstr "Hemmesini görkez" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2455,353 +2458,353 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Show all" msgid "Copy tables to" msgstr "Hemmesini görkez" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Use this value" msgid "Please enter a valid date" msgstr "Şu bahany ulan" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "" @@ -2851,32 +2854,32 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2896,76 +2899,59 @@ msgstr "" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -2983,161 +2969,161 @@ msgstr "" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show all" msgid "Show trace" msgstr "Hemmesini görkez" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy #| msgid "Use this value" msgid "Target database" msgstr "Şu bahany ulan" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3458,7 +3444,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3577,15 +3563,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3649,8 +3635,8 @@ msgid "Keyname" msgstr "Açarsözi" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3700,13 +3686,13 @@ msgstr "" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -3804,7 +3790,7 @@ msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "" @@ -3819,7 +3805,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4197,11 +4183,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -4464,21 +4450,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4489,32 +4475,32 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" @@ -4602,6 +4588,10 @@ msgstr "" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -4710,41 +4700,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4752,24 +4742,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5428,13 +5418,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5452,12 +5442,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -6016,7 +6006,7 @@ msgid "Column names in first row" msgstr "" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -7420,7 +7410,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "View %s has been dropped." @@ -7552,8 +7542,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7593,52 +7583,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -7650,7 +7640,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8375,54 +8365,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8468,53 +8458,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8526,11 +8516,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9356,7 +9346,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9369,32 +9359,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9420,35 +9410,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9617,7 +9607,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9641,21 +9631,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9745,7 +9735,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9838,7 +9828,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9907,7 +9897,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9949,52 +9939,52 @@ msgstr "" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10024,7 +10014,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10042,33 +10032,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10076,28 +10066,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10105,23 +10095,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10133,7 +10123,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -12849,15 +12839,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "Database %1$s has been created." @@ -12872,17 +12858,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "Database %1$s has been created." msgid "An alias was expected." @@ -12902,19 +12889,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "Database %1$s has been created." msgid "A rename operation was expected." @@ -12942,15 +12929,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12971,17 +12958,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13639,7 +13626,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14552,7 +14539,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14589,7 +14576,7 @@ msgstr "Düşündiriş" msgid "Edit partitioning" msgstr "Düşündiriş" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14706,11 +14693,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/tr.po b/po/tr.po index 77f43b6a0f..3b51ba5ed7 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-02-08 12:25+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" @@ -47,7 +47,7 @@ msgid "Table comments:" msgstr "Tablo yorumları:" #: db_datadict.php:113 libraries/Index.php:697 -#: libraries/insert_edit.lib.php:1570 +#: libraries/insert_edit.lib.php:1577 #: libraries/navigation/nodes/NodeColumn.php:30 #: libraries/plugins/export/ExportHtmlword.php:290 #: libraries/plugins/export/ExportHtmlword.php:386 @@ -101,7 +101,7 @@ msgstr "Türü" #: db_datadict.php:115 libraries/Index.php:700 #: libraries/central_columns.lib.php:705 libraries/central_columns.lib.php:1381 -#: libraries/insert_edit.lib.php:1579 +#: libraries/insert_edit.lib.php:1586 #: libraries/plugins/export/ExportHtmlword.php:296 #: libraries/plugins/export/ExportHtmlword.php:392 #: libraries/plugins/export/ExportLatex.php:525 @@ -163,16 +163,16 @@ msgid "Comments" msgstr "Yorumlar" #: db_datadict.php:155 -#: libraries/controllers/table/TableStructureController.php:1203 -#: libraries/controllers/table/TableStructureController.php:1208 +#: libraries/controllers/table/TableStructureController.php:1181 +#: libraries/controllers/table/TableStructureController.php:1186 #: libraries/tracking.lib.php:935 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:21 -#: templates/table/structure/display_structure.phtml:81 +#: templates/table/structure/display_structure.phtml:61 msgid "Primary" msgstr "Birincil" -#: db_datadict.php:165 js/messages.php:374 libraries/Index.php:565 +#: db_datadict.php:165 js/messages.php:376 libraries/Index.php:565 #: libraries/Index.php:604 libraries/IndexColumn.php:141 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 libraries/mult_submits.lib.php:446 @@ -196,17 +196,17 @@ msgstr "Birincil" msgid "No" msgstr "Hayır" -#: db_datadict.php:165 js/messages.php:519 libraries/Index.php:566 +#: db_datadict.php:165 js/messages.php:521 libraries/Index.php:566 #: libraries/Index.php:603 libraries/IndexColumn.php:143 #: libraries/central_columns.lib.php:963 #: libraries/config/FormDisplay.tpl.php:280 #: libraries/controllers/server/ServerDatabasesController.php:192 -#: libraries/controllers/table/TableStructureController.php:773 -#: libraries/controllers/table/TableStructureController.php:1454 -#: libraries/controllers/table/TableStructureController.php:1463 -#: libraries/controllers/table/TableStructureController.php:1468 -#: libraries/controllers/table/TableStructureController.php:1473 -#: libraries/controllers/table/TableStructureController.php:1478 +#: libraries/controllers/table/TableStructureController.php:752 +#: libraries/controllers/table/TableStructureController.php:1431 +#: libraries/controllers/table/TableStructureController.php:1440 +#: libraries/controllers/table/TableStructureController.php:1445 +#: libraries/controllers/table/TableStructureController.php:1450 +#: libraries/controllers/table/TableStructureController.php:1455 #: libraries/mult_submits.inc.php:85 libraries/mult_submits.inc.php:216 #: libraries/mult_submits.lib.php:355 libraries/mult_submits.lib.php:388 #: libraries/mult_submits.lib.php:417 libraries/mult_submits.lib.php:444 @@ -260,7 +260,7 @@ msgstr "Tablolar" #: libraries/config/user_preferences.forms.php:219 #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:286 -#: libraries/import.lib.php:1301 libraries/navigation/nodes/NodeColumn.php:40 +#: libraries/import.lib.php:1302 libraries/navigation/nodes/NodeColumn.php:40 #: libraries/navigation/nodes/NodeDatabase.php:52 #: libraries/navigation/nodes/NodeTable.php:292 #: libraries/server_privileges.lib.php:1239 libraries/tracking.lib.php:887 @@ -409,23 +409,23 @@ msgid "Point:" msgstr "Nokta:" #: gis_data_editor.php:216 gis_data_editor.php:243 gis_data_editor.php:299 -#: gis_data_editor.php:372 js/messages.php:508 +#: gis_data_editor.php:372 js/messages.php:510 msgid "X" msgstr "X" #: gis_data_editor.php:219 gis_data_editor.php:247 gis_data_editor.php:303 -#: gis_data_editor.php:378 js/messages.php:509 +#: gis_data_editor.php:378 js/messages.php:511 msgid "Y" msgstr "Y" #: gis_data_editor.php:241 gis_data_editor.php:297 gis_data_editor.php:370 -#: js/messages.php:511 +#: js/messages.php:513 #, php-format msgid "Point %d" msgstr "Nokta %d" #: gis_data_editor.php:254 gis_data_editor.php:310 gis_data_editor.php:388 -#: js/messages.php:517 +#: js/messages.php:519 msgid "Add a point" msgstr "Nokta ekle" @@ -447,7 +447,7 @@ msgstr "İç halka %d:" msgid "Add a linestring" msgstr "Satır dizgisi ekle" -#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:518 +#: gis_data_editor.php:314 gis_data_editor.php:393 js/messages.php:520 msgid "Add an inner ring" msgstr "İç halka ekle" @@ -464,12 +464,12 @@ msgstr "Poligon ekle" msgid "Add geometry" msgstr "Geometri ekle" -#: gis_data_editor.php:411 js/messages.php:349 libraries/DbSearch.php:463 +#: gis_data_editor.php:411 js/messages.php:351 libraries/DbSearch.php:463 #: libraries/DisplayResults.php:1790 libraries/browse_foreigners.lib.php:139 #: libraries/display_change_password.lib.php:147 #: libraries/display_export.lib.php:400 libraries/display_export.lib.php:406 #: libraries/display_import.lib.php:396 libraries/index.lib.php:41 -#: libraries/insert_edit.lib.php:1549 libraries/insert_edit.lib.php:1586 +#: libraries/insert_edit.lib.php:1556 libraries/insert_edit.lib.php:1593 #: libraries/normalization.lib.php:162 libraries/normalization.lib.php:819 #: libraries/operations.lib.php:41 libraries/operations.lib.php:106 #: libraries/operations.lib.php:256 libraries/operations.lib.php:299 @@ -499,7 +499,7 @@ msgstr "Geometri ekle" #: templates/table/index_form.phtml:243 #: templates/table/search/selection_form.phtml:78 #: templates/table/structure/add_column.phtml:25 view_create.php:280 -#: view_operations.php:107 +#: view_operations.php:116 msgid "Go" msgstr "Git" @@ -519,7 +519,7 @@ msgstr "" msgid "Succeeded" msgstr "Başarılı oldu" -#: import.php:58 js/messages.php:592 +#: import.php:58 js/messages.php:594 msgid "Failed" msgstr "Başarısız oldu" @@ -527,7 +527,7 @@ msgstr "Başarısız oldu" msgid "Incomplete params" msgstr "Tamamlanmamış parametreler" -#: import.php:184 +#: import.php:185 #, php-format msgid "" "You probably tried to upload a file that is too large. Please refer to " @@ -536,15 +536,15 @@ msgstr "" "Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınır için çözüm " "yolu olarak %sbelgeden%s yararlanın." -#: import.php:360 import.php:665 +#: import.php:361 import.php:666 msgid "Showing bookmark" msgstr "Gösterilen yer imi" -#: import.php:376 import.php:661 +#: import.php:377 import.php:662 msgid "The bookmark has been deleted." msgstr "Yer imi silindi." -#: import.php:474 +#: import.php:475 #, php-format msgid "" "Uploaded file cannot be moved, because the server has open_basedir enabled " @@ -553,12 +553,12 @@ msgstr "" "Gönderilen dosya açılamaz çünkü sunucu %s dizinine (geçici dosyalar için) " "erişmeden open_basedir etkinleştirildi." -#: import.php:490 import.php:567 libraries/File.php:424 libraries/File.php:520 +#: import.php:491 import.php:568 libraries/File.php:424 libraries/File.php:517 msgid "File could not be read!" msgstr "Dosya okunamadı!" -#: import.php:501 import.php:516 import.php:541 import.php:556 -#: libraries/File.php:587 +#: import.php:502 import.php:517 import.php:542 import.php:557 +#: libraries/File.php:584 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -567,7 +567,7 @@ msgstr "" "Desteklenmeyen sıkıştırmayla (%s) dosya yüklemeyi denediniz. Ya bunun için " "destek henüz tamamlanmadı ya da yapılandırmanız tarafından etkisizleştirildi." -#: import.php:574 +#: import.php:575 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -577,21 +577,24 @@ msgstr "" "boyutu PHP yapılandırmanız tarafından izin verilen en fazla boyutu aştı. " "[doc@faq1-16]SSS 1.16[/doc]'ya bakın." -#: import.php:626 libraries/display_import.lib.php:662 +#: import.php:627 libraries/display_import.lib.php:662 msgid "Could not load import plugins, please check your installation!" msgstr "İçe aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!" -#: import.php:668 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 +#: import.php:669 libraries/sql.lib.php:781 libraries/sql.lib.php:1561 #, php-format msgid "Bookmark %s has been created." msgstr "Yer imi %s oluşturuldu." -#: import.php:677 -#, php-format -msgid "Import has been successfully finished, %d queries executed." -msgstr "İçe aktarma başarılı olarak bitti, %d sorgu çalıştırıldı." +#: import.php:679 +#, fuzzy, php-format +#| msgid "Import has been successfully finished, %d queries executed." +msgid "Import has been successfully finished, %d query executed." +msgid_plural "Import has been successfully finished, %d queries executed." +msgstr[0] "İçe aktarma başarılı olarak bitti, %d sorgu çalıştırıldı." +msgstr[1] "İçe aktarma başarılı olarak bitti, %d sorgu çalıştırıldı." -#: import.php:705 +#: import.php:710 #, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " @@ -600,7 +603,7 @@ msgstr "" "Betik zaman aşımı geçti, eğer içe aktarmayı bitirmek istiyorsanız, lütfen " "%saynı dosyayı yeniden gönderin%s ve içe aktarma devam edecektir." -#: import.php:715 +#: import.php:720 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -613,8 +616,8 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "İçe aktarma işleminin ilerleme durumu yüklenemedi." -#: import_status.php:116 js/messages.php:448 js/messages.php:600 -#: libraries/Util.php:796 libraries/export.lib.php:516 +#: import_status.php:116 js/messages.php:450 js/messages.php:602 +#: libraries/Util.php:795 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:293 msgid "Back" msgstr "Geri" @@ -638,7 +641,7 @@ msgstr "" msgid "General settings" msgstr "Genel ayarlar" -#: index.php:191 js/messages.php:625 +#: index.php:191 js/messages.php:627 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:287 msgid "Change password" @@ -710,10 +713,11 @@ msgstr "PHP bilgisini göster" msgid "Version information:" msgstr "Sürüm bilgisi:" -#: index.php:390 libraries/Util.php:445 libraries/Util.php:511 +#: index.php:390 libraries/Util.php:442 libraries/Util.php:509 #: libraries/config/FormDisplay.tpl.php:163 #: libraries/display_export.lib.php:575 libraries/engines/Pbxt.php:166 #: libraries/navigation/NavigationHeader.php:196 +#: libraries/sanitizing.lib.php:135 #: templates/server/variables/link_template.phtml:9 msgid "Documentation" msgstr "Belgeler" @@ -844,96 +848,96 @@ msgstr "" "Sunucu Suhosin ile çalışıyor. Lütfen olası sorunlar için %sbelgeden%s " "yararlanın." -#: js/messages.php:39 libraries/import.lib.php:207 sql.php:161 +#: js/messages.php:41 libraries/import.lib.php:207 sql.php:161 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi." -#: js/messages.php:45 +#: js/messages.php:47 msgid "Confirm" msgstr "Onayla" -#: js/messages.php:46 +#: js/messages.php:48 #, php-format msgid "Do you really want to execute \"%s\"?" msgstr "\"%s\" sorgusunu çalıştırmak istediğinize emin misiniz?" -#: js/messages.php:48 libraries/mult_submits.lib.php:440 +#: js/messages.php:50 libraries/mult_submits.lib.php:440 msgid "You are about to DESTROY a complete database!" msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!" -#: js/messages.php:50 +#: js/messages.php:52 msgid "You are about to DESTROY a complete table!" msgstr "Bütün bir tabloyu YOK ETMEK üzeresiniz!" -#: js/messages.php:52 +#: js/messages.php:54 msgid "You are about to TRUNCATE a complete table!" msgstr "Bütün bir tabloyu KESMEK üzeresiniz!" -#: js/messages.php:53 +#: js/messages.php:55 msgid "Delete tracking data for this table?" msgstr "Bu tablo için izleme verisi silinsin mi?" -#: js/messages.php:55 +#: js/messages.php:57 msgid "Delete tracking data for these tables?" msgstr "Bu tablolar için izleme verisi silinsin mi?" -#: js/messages.php:57 +#: js/messages.php:59 msgid "Delete tracking data for this version?" msgstr "Bu sürüm için izleme verisi silinsin mi?" -#: js/messages.php:59 +#: js/messages.php:61 msgid "Delete tracking data for these versions?" msgstr "Bu sürümler için izleme verisi silinsin mi?" -#: js/messages.php:60 +#: js/messages.php:62 msgid "Delete entry from tracking report?" msgstr "İzleme raporundan giriş silinsin mi?" -#: js/messages.php:61 +#: js/messages.php:63 msgid "Deleting tracking data" msgstr "İzleme verisi siliniyor" -#: js/messages.php:62 +#: js/messages.php:64 msgid "Dropping Primary Key/Index" msgstr "Birincil Anahtar/İndeks kaldırılıyor" -#: js/messages.php:63 +#: js/messages.php:65 msgid "Dropping Foreign key." msgstr "Dış anahtar kaldırılıyor." -#: js/messages.php:65 +#: js/messages.php:67 msgid "This operation could take a long time. Proceed anyway?" msgstr "Bu işlem uzun zaman alabilir. Yine de ilerlensin mi?" -#: js/messages.php:67 +#: js/messages.php:69 #, php-format msgid "Do you really want to delete user group \"%s\"?" msgstr "\"%s\" kullanıcı grubunu silmek istediğinize emin misiniz?" -#: js/messages.php:69 +#: js/messages.php:71 #, php-format msgid "Do you really want to delete the search \"%s\"?" msgstr "\"%s\" aramasını silmek istediğinize emin misiniz?" -#: js/messages.php:71 +#: js/messages.php:73 msgid "You have unsaved changes; are you sure you want to leave this page?" msgstr "" "Kaydedilmemiş değişiklikleriniz var; bu sayfadan ayrılmak istediğinize emin " "misiniz?" -#: js/messages.php:73 +#: js/messages.php:75 msgid "Do you really want to revoke the selected user(s) ?" msgstr "Seçilen kullanıcı(ları)yı geri almak istediğinize emin misiniz?" -#: js/messages.php:75 +#: js/messages.php:77 msgid "Do you really want to delete this central column?" msgstr "Bu merkezi sütunu silmek istediğinize emin misiniz?" -#: js/messages.php:77 +#: js/messages.php:79 msgid "Do you really want to delete the selected items?" msgstr "Seçilen öğeleri silmek istediğinize emin misiniz?" -#: js/messages.php:79 +#: js/messages.php:81 msgid "" "Do you really want to DROP the selected partition(s)? This will also DELETE " "the data related to the selected partition(s)!" @@ -941,19 +945,19 @@ msgstr "" "Seçilen bölüm(leri)ü KALDIRMAK istediğinize emin misiniz? Bu aynı zamanda " "seçilen bölüm(ler) ile ilgili veriyi SİLECEK!" -#: js/messages.php:83 +#: js/messages.php:85 msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "Seçilen bölüm(leri)ü KESMEK istediğinize emin misiniz?" -#: js/messages.php:85 +#: js/messages.php:87 msgid "Do you really want to remove partitioning?" msgstr "Bölümlemeyi gerçekten kaldırmak istiyor musunuz?" -#: js/messages.php:86 +#: js/messages.php:88 msgid "Do you really want to RESET SLAVE?" msgstr "SLAVE'i SIFIRLAMAK istediğinize emin misiniz?" -#: js/messages.php:88 +#: js/messages.php:90 msgid "" "This operation will attempt to convert your data to the new collation. In " "rare cases, especially where a character doesn't exist in the new collation, " @@ -967,17 +971,17 @@ msgstr "" "durumda size orijinal karşılaştırmayı geri almanızı öneririz ve şuradaki " "ipuçlarına bakınız " -#: js/messages.php:94 +#: js/messages.php:96 msgid "Garbled Data" msgstr "Karışık Veri" -#: js/messages.php:96 +#: js/messages.php:98 msgid "Are you sure you wish to change the collation and convert the data?" msgstr "" "Karşılaştırmayı değiştirmek ve verileri dönüştürmek istediğinizden emin " "misiniz?" -#: js/messages.php:98 +#: js/messages.php:100 msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -993,7 +997,7 @@ msgstr "" "sayfasındaki sütun(ları)u düzenleme özelliğinin (\"Değiştir\" Bağlantısı) " "kullanılması önerilir." -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1001,160 +1005,160 @@ msgstr "" "Tüm sütun karşılaştırmalarını değiştirmek ve verileri dönüştürmek " "istediğinizden emin misiniz?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Kaydet ve kapat" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Sıfırla" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Tümünü sıfırla" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Formda eksik değer!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Seçeneklerin en az birini seçin!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Lütfen geçerli bir numara girin!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Lütfen geçerli bir uzunluk girin!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "İndeks ekle" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "İndeksi düzenle" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "İndekse %s sütun ekle" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Tek sütun indeks oluştur" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Bileşik indeks oluştur" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Şununla bileşik:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "İndeks için lütfen sütun(ları) seçin." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "En az bir sütun eklemek zorundasınız." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "SQL Önizle" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Sorguyu benzeştir" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Eşleşen satırlar:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL sorgusu:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Y değerleri" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Anamakine adı boş!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Kullanıcı adı boş!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Parola boş!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Parolalar birbiriyle aynı değil!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Seçilen Kullanıcılar Kaldırılıyor" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Kapat" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Şablon oluşturuldu." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Şablon yüklendi." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Şablon güncellendi." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Şablon silindi." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Diğer" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Bağlantılar / İşlemler" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Yerel izleme yapılandırması uyumsuz!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1166,155 +1170,155 @@ msgstr "" "büyük olasılıkla bundan sonra çalışmayacak. Lütfen Ayarlar menüsünden " "yapılandırmanızı varsayılana sıfırlayın." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Sorgu önbelleği verimi" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Sorgu önbelleği kullanımı" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Kullanılan sorgu önbelleği" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Sistem İşlemcisi kullanımı" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Sistem belleği" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Sistem takası" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Ortalama yükleme" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Toplam bellek" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Önbelleklenen bellek" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Arabelleklenen bellek" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Boş bellek" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Kullanılan bellek" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Toplam takas" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Önbelleklenen takas" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Kullanılan takas" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Serbest takas" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Gönderilmiş bayt" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Alınmış bayt" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Bağlantılar" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "İşlemler" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d tablo" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Sorular" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Ayarlar" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Çizelgeyi kılavuza ekle" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Lütfen diziye en az bir değişken ekleyin!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1326,47 +1330,47 @@ msgstr "Lütfen diziye en az bir değişken ekleyin!" msgid "None" msgstr "Yok" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "İzlemeye devam et" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "İzlemeyi duraklat" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Otomatik yenilemeyi başlat" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Otomatik yenilemeyi durdur" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log ve slow_query_log etkinleştirildi." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log etkinleştirildi." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log etkinleştirildi." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log ve general_log etkisizleştirildi." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output, TABLE olarak ayarlı değil." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output, TABLE olarak ayarlı." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1377,12 +1381,12 @@ msgstr "" "süren sorguları günlükler. Bu long_query_time'ın, sisteminize bağlı olarak " "0-2 saniyeye ayarlanması tavsiye edilir." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time %d saniyeye ayarlı." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1391,30 +1395,30 @@ msgstr "" "varsayılana sıfırlanacak:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "log_output'u %s'a ayarla" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "%s etkinleştir" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "%s etkisizleştir" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "long_query_time'ı %d saniyeye ayarlayın." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1422,57 +1426,57 @@ msgstr "" "Bu değişkenleri değiştiremezsiniz. Lütfen root olarak oturum açın veya " "veritabanı yöneticinizle temasa geçin." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Değiştirme ayarları" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Şu anki ayarlar" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Çizelge başlığı" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Ayırdedici" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "%s tarafından bölen" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Birim" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Yavaş günlükten" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Genel günlükten" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "Sunucunun günlüklerindeki bu sorgu için veritabanı adı bilinmiyor." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Günlükler çözümleniyor" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Günlükler çözümleniyor ve yükleniyor. Bu biraz zaman alabilir." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "İsteği iptal et" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1482,7 +1486,7 @@ msgstr "" "sadece SQL Metnin kendisi gruplama kriteri olarak kullanılır, böylece " "başlama zamanı gibi, sorguların diğer öznitelikleri farklı olabilir." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1492,31 +1496,31 @@ msgstr "" "INSERT sorguları, eklenen verinin hiçe sayılması, aynı zamanda birlikte " "gruplanır." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "Günlük verisi yüklendi. Sorgular bu zaman aralığında çalıştırıldı:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Günlük tablosuna atla" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Bulunan veri yok" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "Günlük çözümlendi, ama bu zaman aralığı içinde bulunan veri yok." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Çözümleniyor…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Çıktıyı açıkla" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1524,7 +1528,7 @@ msgstr "Çıktıyı açıkla" msgid "Status" msgstr "Durum" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1534,58 +1538,58 @@ msgstr "Durum" msgid "Time" msgstr "Süre" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Toplam süre:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Sonuçların profili çıkarılıyor" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Tablo" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Çizelge" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Günlük tablosu süzgeci seçenekleri" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Süzgeç" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Kelime/düzenli ifadeye göre sorguları süz:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Grup sorguları, WHERE cümleciklerindeki değişken veri yoksayılıyor" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Gruplanmış satırların toplamı:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Toplam:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Günlükler yükleniyor" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "İzleyici yenileme başarısız oldu" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1595,28 +1599,28 @@ msgstr "" "ihtimalle oturumunuzun süresi dolduğundandır. Sayfanın yeniden yüklenmesi ve " "kimlik bilgilerinizin yeniden girilmesi yardımcı olmalıdır." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Sayfayı yeniden yükle" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Etkilenen satırlar:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Yapılandırma dosyasının ayrıştırılması başarısız. Bu geçerli JSON kodu " "görünmüyor." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "İçe aktarılan yapılandırma ile çizelge kılavuzunun yapılması başarısız oldu. " "Varsayılan yapılandırmaya sıfırlanıyor…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1625,63 +1629,63 @@ msgstr "" msgid "Import" msgstr "İçe aktar" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "İzleme yapılandırmasını içe aktar" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Lütfen içe aktarmak istediğiniz dosyayı seçin." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "İçe aktarmak için sunucuda mevcut dosyalar yok!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Sorguyu çözümle" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Danışman sistemi" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Olası performans sorunları" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Sorun" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Tavsiye" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Kural ayrıntıları" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Gerekçe" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Kullanılan değişken / formül" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Deneme" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "SQL biçimlendiriliyor…" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "Hiç parametre bulunamadı!" -#: js/messages.php:350 +#: js/messages.php:352 #: 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,60 +1697,60 @@ msgstr "Hiç parametre bulunamadı!" msgid "Cancel" msgstr "İptal" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Sayfa ile ilgili ayarlar" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Uygula" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Yükleniyor…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "İstek iptal edildi!!!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "İstek işleniyor" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "İstek başarısız oldu!!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "İstek işlemede hata" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Hata kodu: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Hata metni: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Seçilen veritabanları yok." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Sütun kaldırılıyor" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Birincil anahtar ekleniyor" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1756,55 +1760,55 @@ msgstr "Birincil anahtar ekleniyor" msgid "OK" msgstr "TAMAM" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Bu bildiriyi reddetmek için tıklayın" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Veritabanları yeniden adlandırılıyor" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Veritabanı kopyalanıyor" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Karakter grubu değiştiriliyor" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Dış anahtar kontrollerini etkinleştir" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Gerçek satır sayısını alma başarısız." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Aranıyor" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Arama sonuçlarını gizle" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Arama sonuçlarını göster" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Gözatılıyor" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Siliniyor" -#: js/messages.php:391 +#: js/messages.php:393 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:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1820,46 +1824,46 @@ msgstr "Depolanan işlevin tanımı RETURN ifadesi içermek zorunda!" msgid "Export" msgstr "Dışa aktar" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET düzenleyicisi" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "%s sütunu için değerler" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Yeni bir sütun için değerler" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Her bir değeri ayrı alana girin." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "%d değer ekle" -#: js/messages.php:403 +#: js/messages.php:405 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:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Sorgu kutusunu gizle" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Sorgu kutusunu göster" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1869,7 +1873,7 @@ msgstr "Sorgu kutusunu göster" msgid "Edit" msgstr "Düzenle" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1880,41 +1884,41 @@ msgstr "Düzenle" msgid "Delete" msgstr "Sil" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 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:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Dış değerlere gözat" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Otomatik kaydedilmiş sorgu yok" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Değişken %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Seç" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Sütun seçici" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Bu listede ara" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1923,15 +1927,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:424 +#: js/messages.php:426 msgid "See more" msgstr "Daha fazlasına bakın" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Emin misiniz?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1939,51 +1943,51 @@ msgstr "" "Bu eylem bazı sütunların tanımını değiştirebilir.
Devam etmek " "istediğinize emin misiniz?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Devam" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Birincil anahtar ekle" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Birincil anahtar eklendi." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Sizi sonraki adıma götürüyor…" -#: js/messages.php:437 +#: js/messages.php:439 #, 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:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Adım sonu" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Normalleştirmenin ikinci adımı (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Bitti" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Kısmi bağımlılıkları doğrula" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Seçilen kısmi bağımlılıkları aşağıdaki gibidir:" -#: js/messages.php:444 +#: js/messages.php:446 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 +1996,19 @@ msgstr "" "belirleyebilen a ve b sütunlarının beraber birleştirilmiş değerlerini ifade " "eder." -#: js/messages.php:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Seçilen kısmi bağımlılıklar yok!" -#: js/messages.php:450 +#: js/messages.php:452 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:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Kısmi bağımlılıklar listesini gizle" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2012,41 +2016,41 @@ msgstr "" "Sıkı durun! Tablonun veri boyutuna ve sütun sayısına bağlı olarak birkaç " "saniye sürebilir." -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Adım" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Aşağıdaki eylemler gerçekleştirilecektir:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "%s sütunlarını %s tablosundan KALDIR" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Aşağıdaki tabloyu oluştur" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Normalleştirmenin üçüncü adımı (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Karşılıklı bağımlılıkları onayla" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Seçilen bağımlılıklar aşağıdaki gibidir:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Seçilen bağımlılıklar yok!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2056,127 +2060,127 @@ msgstr "Seçilen bağımlılıklar yok!" msgid "Save" msgstr "Kaydet" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Arama kriterini gizle" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Arama kriterini göster" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Aralığı arama" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "En fazla sütun:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "En az sütun:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "En az değer:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "En fazla değer:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Bul ve değiştir kriterini gizle" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Bul ve değiştir kriterini göster" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Her nokta bir veri satırını temsil eder." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Noktanın üzerinde durmak etiketini gösterecektir." -#: js/messages.php:490 +#: js/messages.php:492 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:492 +#: js/messages.php:494 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:494 +#: js/messages.php:496 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:496 +#: js/messages.php:498 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:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "İki sütun seçin" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "İki farklı sütun seçin" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Veri imleci içeriği" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Yoksay" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Kopyala" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Nokta" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Satır dizgisi" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "İç halka" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Dış halka" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Şifreleme anahtarını kopyalamak istiyor musunuz?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Şifreleme anahtarı" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2184,24 +2188,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:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Kaynak gösterilen anahtarı seç" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Dış Anahtarı seç" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Lütfen birincil anahtarı veya benzersiz anahtarı seçin!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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?" @@ -2209,76 +2213,76 @@ msgstr "" "Değişiklikleri yerleşime kaydetmediniz. Eğer bunları kaydetmezseniz, " "kaybolacaklardır. Devam etmek istiyor musunuz?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Sayfa adı" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Sayfayı kaydet" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Sayfayı aç" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Sayfayı sil" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Başlıksız" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Lütfen devam etmek için bir sayfa seçin" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Lütfen geçerli bir sayfa adı girin" -#: js/messages.php:548 +#: js/messages.php:550 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:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Sayfa başarılı olarak silindi" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Bağlantılı şemayı dışa aktar" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Değişiklikler kaydedildi" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "\"%s\" sütunu için bir seçenek ekleyin." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d nesne oluşturuldu." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Gönder" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Düzenlemeyi iptal etmek için Esc tuşuna basın." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2286,15 +2290,15 @@ msgstr "" "Bazı verileri düzenlediniz ve kaydedilmediler. Veriyi kaydetmeden önce bu " "sayfadan ayrılmak istediğinize emin misiniz?" -#: js/messages.php:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Yen.düzenleme için sürükleyin." -#: js/messages.php:565 +#: js/messages.php:567 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:567 +#: js/messages.php:569 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 " @@ -2304,27 +2308,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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "İşaretlemek/işareti kaldırmak için tıklayın." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Sütun adını kopyalamak için çift tıklayın." -#: js/messages.php:574 +#: js/messages.php:576 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:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Tümünü göster" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2333,12 +2337,12 @@ msgstr "" "Düzenle, Kopyala ve Sil bağlantıları ile ilgili özellikler kaydedildikten " "sonra çalışmayabilir." -#: js/messages.php:582 +#: js/messages.php:584 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:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2346,103 +2350,103 @@ 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:587 +#: js/messages.php:589 msgid "Original length" msgstr "Orijinal uzunluk" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "iptal" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "İptal edilen" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Başarılı" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "İçe aktarma durumu" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Dosyaları buraya bırakın" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Önce veritabanını seçin" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Yazdır" -#: js/messages.php:606 +#: js/messages.php:608 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:611 +#: js/messages.php:613 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:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Bağlantıya git:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Sütun adını kopyala." -#: js/messages.php:620 +#: js/messages.php:622 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:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Parola üret" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Üret" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Daha fazla" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Paneli göster" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Paneli gizle" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Gizli gezinti ağacı öğelerini göster." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Ana panel ile bağla" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Ana panel ile bağlantıyı kopar" -#: js/messages.php:639 +#: js/messages.php:641 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2452,27 +2456,27 @@ msgstr "" "%s, %s tarihinde yayınlandı." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", son sağlam sürüm:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "güncel" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Görünüm oluştur" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Hata raporu gönder" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Hata raporu gönder" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2480,15 +2484,15 @@ msgstr "" "Önemli bir JavaScript hatası meydana geldi. Bir hata raporu göndermek ister " "misiniz?" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Rapor ayarlarını değiştir" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Rapor ayrıntılarını göster" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2496,7 +2500,7 @@ msgstr "" "Dışa aktarmanız PHP seviyesindeki düşük çalıştırma süresinden dolayı " "tamamlanmadı!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2505,58 +2509,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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Sunucu üzerinde bazı hatalar algılandı!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Lütfen bu pencerenin altına bakın." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Tümünü Yoksay" -#: js/messages.php:688 +#: js/messages.php:690 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:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Bu sorgu tekrar çalıştırılsın mı?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Bu yer imini silmek istediğinize emin misiniz?" -#: js/messages.php:702 +#: js/messages.php:704 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:704 +#: js/messages.php:706 #, 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:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "%s bağımsız değişken(ler)i geçti" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Bağımsız değişkenleri göster" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Bağımsız değişkenleri gizle" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Aldığı süre:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2571,349 +2575,349 @@ msgstr "" "olabilir. Safari'de, genellikle böyle bir soruna \"Özel Kipte Tarama\" neden " "olur." -#: js/messages.php:711 +#: js/messages.php:713 msgid "Copy tables to" msgstr "Tabloları şuraya kopyala" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "Tablo ön eki ekle" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "Tabloyu ön ek ile değiştir" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Tabloyu ön ek ile kopyala" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Önceki" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Sonraki" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Bugün" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Ocak" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Şubat" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Mart" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Nisan" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Mayıs" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Haziran" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Temmuz" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Ağustos" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Eylül" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Ekim" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Kasım" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Aralık" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Oca" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Şub" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Nis" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Haz" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Tem" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Ağu" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Eyl" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Eki" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Ara" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Pazar" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Pazartesi" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Salı" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Çarşamba" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Perşembe" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Cuma" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Cumartesi" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Paz" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Ptesi" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Sal" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Çar" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Per" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Cum" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Ctesi" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Pz" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Pt" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Ça" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Cu" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Ct" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Saat" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Dakika" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Saniye" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Bu alan gereklidir" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Lütfen bu alanı düzeltin" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Lütfen geçerli bir eposta adresi girin" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Lütfen geçerli bir URL girin" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Lütfen geçerli bir tarih girin" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Lütfen geçerli bir tarih (ISO) girin" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Lütfen geçerli bir sayı girin" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Lütfen geçerli bir kredi kartı numarası girin" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Lütfen sadece rakam girin" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Lütfen aynı değeri tekrar girin" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Lütfen {0} karakterden daha fazla girmeyin" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Lütfen en az {0} karakter girin" -#: js/messages.php:915 +#: js/messages.php:917 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:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Lütfen {0} ve {1} arasında bir değer girin" -#: js/messages.php:925 +#: js/messages.php:927 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:930 +#: js/messages.php:932 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:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Lütfen geçerli bir tarih veya saat girin" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Lütfen geçerli bir ONALTILIK girdi değeri girin" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Hata" @@ -2965,33 +2969,33 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" "%1$s. satırda beklenmedik karakter. Beklenen sekme, ama bulunan \"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Mevcut yapılandırma dosyası (%s) okunabilir değil." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Yapılandırma dosyasında yanlış izinler, herkesçe yazılabilir olmamalıdır!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Yazı tipi boyutu" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Daralt" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Genişlet" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Yeniden sorgula" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3011,76 +3015,59 @@ msgstr "Veritabanı" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Toplam %d yer imi" -msgstr[1] "Toplam %d yer imi" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "özel" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "paylaşılmış" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s ve %3$s yer imleri dahil edildi" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Yer imleri yok" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Şu anki oturum sırasında" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Açıkla" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profil çıkart" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Yer imi" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Sorgu başarısız oldu" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Sorgu süresi" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "SQL Sorgu Konsolu" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Konsol" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Temizle" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Geçmiş" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3098,125 +3085,125 @@ msgstr "Geçmiş" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Seçenekler" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Yer imleri" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "SQL Hata Ayıklama" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Sorguyu çalıştırmak için Ctrl+Enter tuşlarına basın" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Sorguyu çalıştırmak için Enter tuşuna basın" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "küçükten büyüğe" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "büyükten küçüğe" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Sıra:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Sayı" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Çalıştırma sırası" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Aldığı süre" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Sıralama:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Sorguları grupla" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Sorguların grubunu kaldır" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "İzi göster" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "İzi gizle" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Sayı:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Yenile" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Ekle" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Yer imi ekle" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Etiket" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Hedef veritabanı" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Bu yer imini paylaş" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Varsayılana ayarla" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Her zaman sorgu mesajlarını genişlet" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Başlangıçta sorgu geçmişini göster" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Şu anki gözatılan sorguyu göster" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3224,16 +3211,15 @@ msgstr "" "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.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Koyu temaya değiştir" -#: libraries/DatabaseInterface.php:1528 -#| msgid "Failed to read configuration file!" +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "Yapılandırılmış karşılaştırma bağlantısı ayarlama başarısız!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3241,19 +3227,19 @@ msgstr "" "Sunucu yanıt vermiyor (ya da yerel MySQL sunucusunun soketi doğru olarak " "yapılandırılmadı)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Sunucu yanıt vermiyor." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Lütfen veritabanını içeren dizinin yetkilerini kontrol edin." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Ayrıntılar…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 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ı " @@ -3566,7 +3552,7 @@ msgstr "Yaklaşık olabilir. [doc@faq3-11]SSS 3.11[/doc]'e bakın." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "SQL sorgunuz başarılı olarak çalıştırıldı." @@ -3687,15 +3673,15 @@ msgstr "Dosya gönderme uzantısından dolayı durduruldu." msgid "Unknown error in file upload." msgstr "Dosya göndermede bilinmeyen hata oldu." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Gönderilen dosyayı taşıma hatası, [doc@faq1-11]SSS 1.11[/doc]'e bakın." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Gönderilmiş dosya taşınırken hata oldu." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Gönderilen dosya okunamıyor." @@ -3759,8 +3745,8 @@ msgid "Keyname" msgstr "Anahtar adı" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3810,13 +3796,13 @@ msgstr "%s indeksi kaldırıldı." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Kaldır" @@ -3916,7 +3902,7 @@ msgstr "Yetkiler" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "İşlemler" @@ -3931,7 +3917,7 @@ msgstr "İzleme" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4308,11 +4294,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "%s teması için geçerli resim yolu bulunamadı!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Önizleme mevcut değil." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "Al" @@ -4634,21 +4620,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Uzaysal" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "En fazla: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Sabit çözümleme:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "Çözümleme sırasında %d hata bulundu." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4659,32 +4645,32 @@ msgstr "Çözümleme sırasında %d hata bulundu." msgid "MySQL said: " msgstr "MySQL çıktısı: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL'i açıkla" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "SQL Açıklamasını atla" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "%s sitesinde Açıklamayı Çözümle" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "PHP kodsuz" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "Sorguyu gönder" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "PHP kodu oluştur" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Satır içi düzenle" @@ -4772,6 +4758,10 @@ msgstr "saat başına" msgid "per day" msgstr "gün başına" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "paylaşılmış" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Arama:" @@ -4879,11 +4869,11 @@ msgstr "Yeni sütun ekle" msgid "Attributes" msgstr "Öznitelikler" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Yapılandırma dosyasını okuma başarısız!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4891,33 +4881,33 @@ msgstr "" "Bu genellikle bir sözdizimi hatası var anlamına gelir, lütfen aşağıda " "gösterilen her hatayı kontrol edin." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Varsayılan yapılandırma bundan yüklenemedi: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Geçersiz sunucu indeksi: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s sunucusu için geçersiz anamakine. Lütfen yapılandırma dosyanızı gözden " "geçirin." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Sunucu %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Yapılandırma içinde geçersiz kimlik doğrulaması yöntemi ayarı:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4929,24 +4919,24 @@ msgstr "" "phpMyAdmin, veritabanı sunucusunun şu anki varsayılan saat dilimini " "kullanıyor." -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s veya sonrasına yükseltmelisiniz." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Hata: Belirteç uyuşmazlığı" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS üzerine yazma girişimi" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "olası kötüye kullanma" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "sayısal tuş algılandı" @@ -5688,13 +5678,13 @@ msgstr "İlk satır içine sütun adlarını koy" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Sütunlar şununla kapatılsın" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Sütunlar şununla atlatılsın" @@ -5712,12 +5702,12 @@ msgstr "Sütunlardaki CRLF karakterlerini kaldır" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Sütunlar şununla sonlandırılsın" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Satırlar şununla sonlandırılsın" @@ -6302,7 +6292,7 @@ msgid "Column names in first row" msgstr "İlk satır içindeki sütun adları" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Boş satırları içe aktarma" @@ -7869,7 +7859,7 @@ msgid "Table %s has been emptied." msgstr "%s tablosu boşaltıldı." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "%s görünümü kaldırıldı." @@ -8002,8 +7992,8 @@ 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:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8041,52 +8031,52 @@ msgstr[1] "'%s' adları MySQL'e ayrılmış anahtar kelimelerdir." msgid "No column selected." msgstr "Seçilen sütun yok." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Sütunlar başarılı olarak taşındı." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Sorgu hatası" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Değiştir" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Index" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Uzaysal" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Tam metin" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Belirgin değerler" @@ -8096,7 +8086,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s uzantısı eksik. Lütfen PHP yapılandırmanızı kontrol edin." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Değişiklik yok" @@ -8891,56 +8881,56 @@ msgstr "MySQL boş bir sonuç kümesi döndürdü (yani sıfır satır)." msgid "[ROLLBACK occurred.]" msgstr "[ROLLBACK meydana geldi.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 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:1261 +#: libraries/import.lib.php:1262 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:1263 +#: libraries/import.lib.php:1264 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:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Şu veritabanına git: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "%s için ayarları düzenle" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Şu tabloya git: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s yapısı" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Şu görünüme git: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Sadece tek tablo UPDATE ve DELETE sorguları benzetilebilir." -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8988,55 +8978,55 @@ msgstr "Veya" msgid "web server upload directory:" msgstr "web sunucusu gönderme dizini:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Düzenle/Ekle" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "%s satırla eklemeye devam et" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "ve ondan sonra" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Yeni satır olarak ekle" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Yeni satır olarak ekle ve hataları yoksay" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Ekleme sorgusunu göster" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Önceki sayfaya geri dön" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Yeni başka bir satır ekle" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Bu sayfaya geri dön" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Sonraki satırı düzenle" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9048,11 +9038,11 @@ msgstr "" msgid "Value" msgstr "Değer" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "SQL sorgusu gösteriliyor" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Eklenen satır id: %1$d" @@ -9920,7 +9910,7 @@ msgstr "Tabloyu onar" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Tabloyu veya veriyi sil" @@ -9933,32 +9923,32 @@ msgid "Delete the table (DROP)" msgstr "Tabloyu sil (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Çözümle" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Seç" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Uyarla" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Yeniden Oluştur" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Onar" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Kes" @@ -9984,35 +9974,35 @@ msgstr "Bölümlemeyi kaldır" msgid "Check referential integrity:" msgstr "İlgili bütünlük kontrolü:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Tablo aynısına taşınamıyor!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Tablo aynısına kopyalanamıyor!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "%s tablosu %s üzerine taşındı." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "%s tablosu %s üzerine kopyalandı." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Tablo adı boş!" @@ -10191,7 +10181,7 @@ msgstr "Veri dökümü seçenekleri" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Tablo döküm verisi" @@ -10215,21 +10205,21 @@ msgstr "Tanım" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tablo için tablo yapısı" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Görünüm yapısı" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Görünüm yapısı durumu" @@ -10319,7 +10309,7 @@ msgid "Database:" msgstr "Veritabanı:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Veri:" @@ -10420,7 +10410,7 @@ msgid "Data creation options" msgstr "Veri oluşturma seçenekleri" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Eklemeden önce tabloyu kes" @@ -10504,7 +10494,7 @@ msgstr "Görünüşe göre veritabanınız yordamları kullanmakta;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" "kodadını dışa aktarma, her durumda güvenilir bir şekilde çalışmayabilir." @@ -10547,52 +10537,52 @@ msgstr "kullanımda" 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:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Dökümü yapılmış tablolar için kısıtlamalar" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Tablo kısıtlamaları" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Dökümü yapılmış tablolar için indeksler" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Tablo için indeksler" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "Dökümü yapılmış tablolar için AUTO_INCREMENT değeri" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "Tablo için AUTO_INCREMENT değeri" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "TABLO MIME TÜRLERİ" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "TABLO BAĞLANTILARI" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Görünüşe göre tablonuz tetikleyicileri kullanmakta;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "(Asıl görünüm için aşağıya bakın)" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Veri okunması hatası:" @@ -10624,7 +10614,7 @@ msgstr "" "KEY UPDATE ekle)" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10647,15 +10637,15 @@ msgstr "" msgid "Column names: " msgstr "Sütun adları: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV içe aktarma için geçersiz parametre: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10664,18 +10654,18 @@ msgstr "" "Geçersiz sütun (%s) belirtilmiş! Sütun adlarının doğru olarak hecelenmesini, " "virgüllerle ayrılmasını ve tırnaklarla kapanmamasını sağlayın." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "%d. satırda CSV girdisinin geçersiz biçimi." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "CSV girdisinde %d. satırda geçersiz sütun sayısı." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Bu eklenti sıkıştırılmış içe aktarım dosyalarını desteklemez!" @@ -10683,22 +10673,22 @@ msgstr "Bu eklenti sıkıştırılmış içe aktarım dosyalarını desteklemez! msgid "MediaWiki Table" msgstr "MedyaViki Tablosu" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Medyaviki girdisinin biçimi geçersiz olan satır:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "Yüzdeleri doğru ondalık olarak içe aktar (örn. %12.00'ı .12'ye)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Parasalları içe aktar (örn. $5.00'ı 5.00'a)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10706,7 +10696,7 @@ msgstr "" "Belirlenmiş XML dosyası ya kusurlu ya da tamamlanmamış. Lütfen sorunu " "düzeltin ve tekrar deneyin." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "OpenDocument Hesap Tablosu ayrıştırılamadı!" @@ -10714,12 +10704,12 @@ msgstr "OpenDocument Hesap Tablosu ayrıştırılamadı!" msgid "ESRI Shape File" msgstr "ESRI Şekil Dosyası" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "ESRI şekil dosyasının içe aktarılmasında hata var: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10727,12 +10717,12 @@ msgstr "" "Geçersiz bir dosyayı içe aktarmayı deniyorsunuz ya da içe aktarılan dosya " "geçersiz veri içeriyor!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Uzaysal Uzantısı ESRI türü \"%s\" desteklemiyor." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "İçe aktarılan dosya herhangi bir veri içermiyor!" @@ -10744,7 +10734,7 @@ msgstr "SQL uyumluluk kipi:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Sıfır değerleri için AUTO_INCREMENT değeri kullanma" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13741,15 +13731,11 @@ msgstr "%1$d değer beklenmekte, ancak %2$d bulundu." 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 beklenmekte." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." 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 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 beklenmekte." @@ -13762,17 +13748,18 @@ msgstr "Kapalı bir köşeli parantez beklenmekte." msgid "Unrecognized data type." msgstr "Tanınmayan veri türü." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Bir kodadı daha önce bulundu." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Beklenmedik nokta." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Bir kodadı beklenmekte." @@ -13790,19 +13777,19 @@ msgstr "Bir karşılık beklenmekte." msgid "This option conflicts with \"%1$s\"." msgstr "Bu seçenek \"%1$s\" ile çakışıyor." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Tablonun eski adı beklenmekte." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "\"TO\" anahtar kelimesi beklenmekte." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Tablonun yeni adı beklenmekte." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Yeniden adlandırma işlemi beklenmekte." @@ -13828,15 +13815,15 @@ 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:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Beklenmedik ifade başlangıcı." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Tanınmayan ifade türü." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Daha önce hiç işlem başlatılmadı." @@ -13858,15 +13845,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Tanınmayan anahtar kelime." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Varlığın adı beklenmekte." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "En az bir sütun tanımı beklenmekte." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "\"RETURNS\" anahtar kelimesi beklenmekte." @@ -14559,7 +14546,7 @@ msgstr "Tablonun dökümünü (şemasını) göster" msgid "Invalid table name" msgstr "Geçersiz tablo adı" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Satır: %1$s, Sütun: %2$s, Hata: %3$s" @@ -15478,7 +15465,7 @@ msgid "at beginning of table" msgstr "tablonun başı" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Bölümler" @@ -15511,7 +15498,7 @@ msgstr "Bölüm tablosu" msgid "Edit partitioning" msgstr "Bölümlemeyi düzenle" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Düzenleme görünümü" @@ -15626,11 +15613,11 @@ msgstr "GÖRÜNÜM adı" msgid "Column names" msgstr "Sütun adları" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Görünümü yeniden şuna adlandır" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Görünümü sil (DROP)" @@ -16885,6 +16872,20 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 0'a ayarlı" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Toplam %d yer imi" +#~ msgstr[1] "Toplam %d yer imi" + +#~ msgid "private" +#~ msgstr "özel" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s ve %3$s yer imleri dahil edildi" + +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Bir virgül ya da kapalı bir köşeli parantez beklenmekte" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/tt.po b/po/tt.po index 6c309f19c6..096e003558 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tatar " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Biremgä saqlıysı" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Awdar" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Saylap Beter" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Bu formıda bäyä kertelmi qalğan!" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "berärse bulsa" -#: js/messages.php:118 +#: js/messages.php:120 #, 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:119 +#: js/messages.php:121 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid length!" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Index" msgid "Add index" msgstr "Tezeş" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit next row" msgid "Edit index" msgstr "Kiläse yazma üzgärtü" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" msgstr "%s alan östäw" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Server söreme" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Server söreme" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Alan yaptıruçı bilge" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %s field(s)" msgid "Please select column(s) for the index." msgstr "%s alan östäw" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Kimendä berär alan kertäse." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "sorawda" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Latched pages" msgid "Matched rows:" msgstr "Berketelgän bit" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL-soraw" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Bäyä" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Host adı buş!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Atama buş!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Sersüzeñ buş!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Sersüzlär berbersenä kileşmi!" -#: js/messages.php:148 +#: js/messages.php:150 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Saylanğan qullanuçı beterü" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Yaratılğan bit sanı bu." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Bu yazma salınğan buldı" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Totaşular" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Local monitor configuration incompatible!" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1244,179 +1246,179 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Soraw alxätere" -#: js/messages.php:177 +#: js/messages.php:179 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Soraw alxätere" -#: js/messages.php:178 +#: js/messages.php:180 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Soraw alxätere" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "Totılu" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "Tulayım" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Bufer Pulı" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Tulayım" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Totılğan Alan" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "Buş bit sanı" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Alındı" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Totaşular" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Proseslar" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "Bayt" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s tüşämä" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 #, fuzzy msgid "Questions" msgstr "Farsíça" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Taşım" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Bäyläneşlär buyınça töp mömkinleklär" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1428,47 +1430,47 @@ msgstr "" msgid "None" msgstr "Buş" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1476,154 +1478,154 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Biremgä saqlıysı" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Açıq" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Sünek" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "Soraw eşkärtü %01.4f sek aldı" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Bäyläneşlär buyınça töp mömkinleklär" -#: js/messages.php:254 +#: js/messages.php:256 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Bäyläneşlär buyınça töp mömkinleklär" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Yomğaq başlığı" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 #, fuzzy msgid "Analysing logs" msgstr "Cirle" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Uquğa soraw" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 #, fuzzy msgid "Jump to Log table" msgstr "Biremleklär yuq" -#: js/messages.php:285 +#: js/messages.php:287 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Biremleklär yuq" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "SQL Centekläw" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1631,7 +1633,7 @@ msgstr "SQL Centekläw" msgid "Status" msgstr "Torış" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1641,98 +1643,98 @@ msgstr "Torış" msgid "Time" msgstr "Waqıt" -#: js/messages.php:293 +#: js/messages.php:295 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Tulayım" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "Query results operations" msgid "Profiling results" msgstr "Soraw qaytarmasın eşkärtü" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tüşämä" -#: js/messages.php:296 +#: js/messages.php:298 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Bilgelämä" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 #, fuzzy msgid "Log table filter options" msgstr "Biremlek saqlaw köyläneşe" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 #, fuzzy msgid "Filter" msgstr "Alan" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 #, fuzzy msgid "Sum of grouped rows:" msgstr "Tezelgän yazma sanı bu." -#: js/messages.php:306 +#: js/messages.php:308 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Tulayım" -#: js/messages.php:308 +#: js/messages.php:310 #, fuzzy msgid "Loading logs" msgstr "Cirle" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 #, fuzzy #| msgid "Rename database to" msgid "Reload page" msgstr "Biremlekne bolay atap quy" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1741,73 +1743,73 @@ msgstr "" msgid "Import" msgstr "Yökläw" -#: js/messages.php:326 +#: js/messages.php:328 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Sorawnı Yañart" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 -msgid "Issue" -msgstr "" - -#: js/messages.php:338 -#, fuzzy -#| msgid "Documentation" -msgid "Recommendation" -msgstr "Qullanma" - #: js/messages.php:339 -msgid "Rule details" +msgid "Issue" msgstr "" #: js/messages.php:340 #, fuzzy #| msgid "Documentation" -msgid "Justification" +msgid "Recommendation" msgstr "Qullanma" #: js/messages.php:341 -msgid "Used variable / formula" +msgid "Rule details" msgstr "" #: js/messages.php:342 +#, fuzzy +#| msgid "Documentation" +msgid "Justification" +msgstr "Qullanma" + +#: js/messages.php:343 +msgid "Used variable / formula" +msgstr "" + +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Rename database to" msgid "No parameters found!" msgstr "Biremlekne bolay atap quy" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1819,73 +1821,73 @@ msgstr "Biremlekne bolay atap quy" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Bäyläneşlär buyınça töp mömkinleklär" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy msgid "Loading…" msgstr "Cirle" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Proseslar" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Soraw alxätere" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Proseslar" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Biremlek saylanmağan." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Procedure" msgid "Dropping column" msgstr "Proseslar" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "%s alan östäw" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1895,71 +1897,71 @@ msgstr "%s alan östäw" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Biremlekne bolay atap quy" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Biremlekne boña kübäyt" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Bilgelämä" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Yat tezeş tikşerüen sünderep" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Ezläw" -#: js/messages.php:384 +#: js/messages.php:386 #, fuzzy msgid "Hide search results" msgstr "SQL-soraw" -#: js/messages.php:385 +#: js/messages.php:387 #, fuzzy msgid "Show search results" msgstr "SQL-soraw" -#: js/messages.php:386 +#: js/messages.php:388 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Küzätü" -#: js/messages.php:387 +#: js/messages.php:389 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "\"%s\" Beterü" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1975,47 +1977,47 @@ msgstr "" msgid "Export" msgstr "Export" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Alannar sanı" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Yaña qullanuçı östäw" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 #, fuzzy msgid "Hide query box" msgstr "SQL-soraw" -#: js/messages.php:408 +#: js/messages.php:410 #, fuzzy msgid "Show query box" msgstr "SQL-soraw" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -2025,7 +2027,7 @@ msgstr "SQL-soraw" msgid "Edit" msgstr "Tözätü" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -2036,94 +2038,94 @@ msgstr "Tözätü" msgid "Delete" msgstr "Sal" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Üzgärmä" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Kertemnär sayladı" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Biremlektä ezläw" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Üzençälek" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 #, 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:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Üzgärt" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2131,89 +2133,89 @@ msgstr "" msgid "End of step" msgstr "Tüşämä azağına" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 #, fuzzy msgid "Done" msgstr "Eçtälek" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Biremlek saylanmağan." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, 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:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Biremlek saylanmağan." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2223,432 +2225,432 @@ msgstr "Biremlek saylanmağan." msgid "Save" msgstr "Saqla" -#: js/messages.php:472 +#: js/messages.php:474 #, fuzzy msgid "Hide search criteria" msgstr "SQL-soraw" -#: js/messages.php:473 +#: js/messages.php:475 #, fuzzy msgid "Show search criteria" msgstr "SQL-soraw" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Ezläw" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Alan iseme" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Alan iseme" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 #, fuzzy msgid "Maximum value:" msgstr "Biremleklär yuq" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL-soraw" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL-soraw" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Add/Delete Field Columns" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Data pointer olılığı" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Qarama" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Yul ara bilgese" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Yaña qullanuçı östäw" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Yul ara bilgese" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Bitneñ sanı:" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Tüşämä Saylaw" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 #, 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:546 +#: js/messages.php:548 #, 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:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Bäyläneşlär sxeme" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Üzgärtülär saqlandı" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Number of fields" msgid "Add an option for column \"%s\"." msgstr "Alannar sanı" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Künder" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Alan iseme" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Barısın kürsät" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Tärtip buyınça urın" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Özderelde" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy msgid "Import status" msgstr "Biremdän alu" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Tüşämä Saylaw" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Bastır" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy msgid "Go to link:" msgstr "Biremleklär yuq" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Alan iseme" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Sersüz Ürçetü" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Ürçet" -#: js/messages.php:628 +#: js/messages.php:630 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Dşm" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Barısın kürsät" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Tezeşlär" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Sırlı kürsät" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy msgid "Link with main panel" msgstr "Biremlek saqlaw köyläneşe" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy msgid "Unlink from main panel" msgstr "Biremlek saqlaw köyläneşe" -#: js/messages.php:639 +#: js/messages.php:641 #, 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2656,123 +2658,123 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 #, fuzzy msgid ", latest stable version:" msgstr "Server söreme" -#: js/messages.php:648 +#: js/messages.php:650 #, fuzzy msgid "up to date" msgstr "Biremleklär yuq" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy msgid "Create view" msgstr "Server söreme" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy msgid "Send error report" msgstr "Server ID'e" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy msgid "Submit error report" msgstr "Server ID'e" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, 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:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Açıq tüşämä tezmäse" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Qarama" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Bu sorawnı qabat kürsätäse" -#: js/messages.php:700 +#: js/messages.php:702 #, 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:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL-soraw" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Tüşämä açıqlaması" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy msgid "Hide arguments" msgstr "SQL-soraw" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2781,38 +2783,38 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Biremlekne boña kübäyt" -#: js/messages.php:712 +#: js/messages.php:714 #, 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ı" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 #, 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ı" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Uzğan" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2820,96 +2822,96 @@ msgid "Next" msgstr "Kiläse" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Tulayım" -#: js/messages.php:755 +#: js/messages.php:757 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binar" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:758 +#: js/messages.php:760 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Äpr" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "May" -#: js/messages.php:760 +#: js/messages.php:762 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Yün" -#: js/messages.php:761 +#: js/messages.php:763 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Yül" -#: js/messages.php:762 +#: js/messages.php:764 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Ökt" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Ğın" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Äpr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2917,78 +2919,78 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Yün" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Yül" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Ökt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Nöy" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Dek" -#: js/messages.php:801 +#: js/messages.php:803 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ykş" -#: js/messages.php:802 +#: js/messages.php:804 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dşm" -#: js/messages.php:803 +#: js/messages.php:805 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sşm" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Cmğ" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2996,225 +2998,225 @@ msgid "Sun" msgstr "Ykş" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Dşm" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Sşm" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Çrş" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Pnc" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Cmğ" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Şmb" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ykş" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dşm" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sşm" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Çrş" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Pnc" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Cmğ" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Şmb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Buş" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "totıla" -#: js/messages.php:873 +#: js/messages.php:875 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekund sayın" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Bu mätennän" -#: js/messages.php:886 +#: js/messages.php:888 #, 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:889 #, 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:890 #, 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:891 +#: js/messages.php:893 #, 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:893 +#: js/messages.php:895 #, 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:896 +#: js/messages.php:898 #, 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:898 +#: js/messages.php:900 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, 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:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, 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:925 +#: js/messages.php:927 #, 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:930 +#: js/messages.php:932 #, 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:936 +#: js/messages.php:938 #, 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:941 +#: js/messages.php:943 #, 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:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Xata" @@ -3265,34 +3267,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "in query" msgid "Requery" msgstr "sorawda" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3311,90 +3313,71 @@ msgid "Database" msgstr "Biremlek" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Search" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Ezläw" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "Tamğa beterelde." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "Ezläw" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "SQL Centekläw" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Search" msgid "Bookmark" msgstr "Ezläw" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query cache" msgid "Query failed" msgstr "Soraw alxätere" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy msgid "SQL Query Console" msgstr "SQL-soraw" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 #, fuzzy msgid "Clear" msgstr "Täqwim" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "SQL-taríxı" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3412,10 +3395,10 @@ msgstr "SQL-taríxı" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 @@ -3423,167 +3406,167 @@ msgstr "SQL-taríxı" msgid "Options" msgstr "Eşkärtü" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Search" msgid "Bookmarks" msgstr "Ezläw" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Ctrl+Enter to execute query" msgstr "Tamğalanğan soraw cibärü" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Enter to execute query" msgstr "Tamğalanğan soraw cibärü" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Artıp" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Kimep" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column names" msgid "Count" msgstr "Alan iseme" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execution order" msgstr "Tamğalanğan soraw cibärü" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy msgid "Group queries" msgstr "SQL-soraw" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy msgid "Ungroup queries" msgstr "SQL-soraw" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Tösle kürsät" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Indexes" msgid "Hide trace" msgstr "Tezeşlär" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column names" msgid "Count:" msgstr "Alan iseme" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Yañart" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "Wä" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Search" msgid "Add bookmark" msgstr "Ezläw" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "Yarlıq" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy msgid "Target database" msgstr "Biremlektä ezläw: " -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Search" msgid "Share this bookmark" msgstr "Ezläw" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy msgid "Set default" msgstr "Biremdän alu" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "Flush query cache" msgid "Show query history at start" msgstr "Soraw alxäteren awdar" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Kübäytelgän tüşämägä küçäse" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to set configured collation connection!" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3591,21 +3574,21 @@ msgid "" "configured)." msgstr "(yä cirle MySQL-server soketı döres köylänmägän ide)" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Bu server endäşmi" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3982,7 +3965,7 @@ msgstr "Törle buluı bar. [doc@faq3-11]YBS 3.11[/doc] qarísı" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4114,16 +4097,16 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Törle buluı bar. YBS 3.11 qarísı" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4189,8 +4172,8 @@ msgid "Keyname" msgstr "Tezeş adı" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4241,13 +4224,13 @@ msgstr "\"%s\" digän tezeş salındı." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Beter" @@ -4345,7 +4328,7 @@ msgstr "Xoquqlar" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Eşkärtü" @@ -4360,7 +4343,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4772,11 +4755,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "%s digän tışlaw sürätläre urınlaşqan yul tabılmadı!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "bonı sayla" @@ -5048,21 +5031,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Tulayım" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5073,38 +5056,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL qaytarışı: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL Centekläw" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "SQL Centeklämäskä" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP Kodısız" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Sorawnı Yulla" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP-Kod yasa" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5198,6 +5181,10 @@ msgstr "säğät sayın" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5318,46 +5305,46 @@ msgstr "%s alan östäw" msgid "Attributes" msgstr "Üzençälek" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file!" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Server" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5365,24 +5352,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6092,7 +6079,7 @@ msgstr "Berençe yulda alannarnıñ iseme çığarası" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6100,7 +6087,7 @@ msgstr "Alan yaptıruçı bilge" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6122,14 +6109,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Yul ara bilgese" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6755,7 +6742,7 @@ msgid "Column names in first row" msgstr "Berençe yulda alannarnıñ iseme çığarası" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -8266,7 +8253,7 @@ msgid "Table %s has been emptied." msgstr "\"%s\" atlı tüşämä buşatıldı." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8406,8 +8393,8 @@ msgid "No data to display" msgstr "Biremleklär yuq" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." @@ -8454,56 +8441,56 @@ msgstr[0] "" msgid "No column selected." msgstr "Kertemnär sayladı" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Soraw töre" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Üzgärt" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Tezeş" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Tulımäten" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy msgid "Distinct values" msgstr "Browse foreign values" @@ -8514,7 +8501,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Üzgäreşsez" @@ -9331,56 +9318,56 @@ msgstr "MySQL sorawğa buş cawap, yäğni nül kertem qaytarttı." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Biremleklär yuq" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Biremleklär yuq" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tözeleşen genä" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Çığaru ısulı" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9431,50 +9418,50 @@ msgstr "Yä" msgid "web server upload directory:" msgstr "web-server'neñ yökläw törgäge" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Östäw" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr ", şunnan soñ" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Yaña yazma kert tä" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Aldağı bitkä qaytu" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Tağın ber yazma östäw" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Bu bitkä kire qaytası" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Kiläse yazma üzgärtü" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9484,7 +9471,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9496,12 +9483,12 @@ msgstr "" msgid "Value" msgstr "Bäyä" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 #, fuzzy msgid "Showing SQL query" msgstr "Tulı Sorawlar Kürsät" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10387,7 +10374,7 @@ msgstr "Tüşämä tözätü" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" @@ -10403,34 +10390,34 @@ msgid "Delete the table (DROP)" msgstr "Biremleklär yuq" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 #, fuzzy msgid "Check" msgstr "Çexçä" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 #, fuzzy msgid "Repair" msgstr "Tüşämä tözätü" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10458,37 +10445,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "Bäyläneşlärne döreslekkä tikşerü:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Ber ük at belän tüşämä küçerep bulmí!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "\"%s\" atlı tüşämä \"%s\" kebek ataldı." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Tüşämä adı kertelmi qaldı!" @@ -10680,7 +10667,7 @@ msgstr "Biremlek saqlaw köyläneşe" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Tüşämä eçtälegen çığaru" @@ -10707,14 +10694,14 @@ msgstr "Açıqlama" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Tüşämä tözeleşe" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 #, fuzzy msgid "Structure for view" @@ -10722,7 +10709,7 @@ msgstr "Tözeleşen genä" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 #, fuzzy msgid "Stand-in structure for view" @@ -10837,7 +10824,7 @@ msgid "Database:" msgstr "Biremlek" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10953,7 +10940,7 @@ msgid "Data creation options" msgstr "Transformation options" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11022,7 +11009,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11074,60 +11061,60 @@ msgstr "totıla" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "Kiläse tüşämä eçendä:" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Kiläse tüşämä eçendä:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Tözeleşen genä" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -11164,7 +11151,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11184,33 +11171,33 @@ msgstr "" msgid "Column names: " msgstr "Alan iseme" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV yökläweneñ yaraqsız köyläneşe: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11218,28 +11205,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Documentation" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11249,23 +11236,23 @@ msgstr "Qullanma" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -11279,7 +11266,7 @@ msgstr "SQL, kileşterü ısulı" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14339,15 +14326,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -14362,17 +14345,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -14394,23 +14378,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Açıq toruçı tüşämä sanı." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Açıq toruçı tüşämä sanı." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14439,17 +14423,17 @@ msgstr "\"%s\" atlı tüşämä beterelde" msgid "Variable name was expected." msgstr "Birem adınıñ tözeleşe" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Tüşämä Başına" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14470,19 +14454,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15197,7 +15181,7 @@ msgstr "Tüşämä eçtälegen (tözeleşen) çığaru" msgid "Invalid table name" msgstr "Tüşämä adı yaraqsız" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16320,7 +16304,7 @@ msgid "at beginning of table" msgstr "Tüşämä Başına" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Position" msgid "Partitions" @@ -16365,7 +16349,7 @@ msgstr "Urın" msgid "Edit partitioning" msgstr "Bastıru küreneşe" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16500,12 +16484,12 @@ msgstr "" msgid "Column names" msgstr "Alan iseme" -#: view_operations.php:97 +#: view_operations.php:106 #, fuzzy msgid "Rename view to" msgstr "Tüşämä adın üzgärtü" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy msgid "Delete the view (DROP)" msgstr "Biremleklär yuq" @@ -17672,6 +17656,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Search" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Ezläw" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "Tamğa beterelde." + #, fuzzy #~| msgid "Replace table data with file" #~ msgid "Replace table prefix:" diff --git a/po/ug.po b/po/ug.po index ef47c0ba58..87ad8e9166 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uighur " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "ھۆججەتنى باشقا ساقلاش" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "ھەممىنى تاللاش" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "بۇ ئورۇننىڭ قىممىتى تولدۇرۇلمىغان !" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "سۆزلەردىن ئەڭ ئازدىن بىرى" -#: js/messages.php:118 +#: js/messages.php:120 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number!" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:119 +#: js/messages.php:121 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid length!" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Indexes" msgid "Add index" msgstr "تېزىسلار" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Insert" msgid "Edit index" msgstr "قىستۇرۇش" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format #| msgid "Add/Delete columns" msgid "Add %s column(s) to index" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "نەشىرنى قۇىماق" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "نەشىرنى قۇىماق" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Columns enclosed by" msgid "Composite with:" msgstr "مەزمۇن ئايرىش بەلگىسى" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add/Delete columns" msgid "Please select column(s) for the index." msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "Update Query" msgid "Simulate query" msgstr "يېڭلاش" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Latched pages" msgid "Matched rows:" msgstr "قۇلۇپلانغان بەت" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL سورىقى" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Use this value" msgid "Y values" msgstr "مۇشۇ قىممەتنى ئىشلىتىش" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "مۇلازىمىتېر ئىسمى بوشكەن!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "قوللانغۇچى ئىسمى بوشكەن!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "پارول بوشكەن!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "كىرگۈزگەن پارولار ئوخشاش ئەمەس!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template was created." msgstr "%s جەدۋەل" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The bookmark has been deleted." msgid "Template was deleted." msgstr "خەتكۈچ ئۆچۈرۈلدى." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Could not load default configuration from: %1$s" msgid "Local monitor configuration incompatible!" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1233,138 +1236,138 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 #, fuzzy #| msgid "Tracking is not active." msgid "Query cache efficiency" msgstr "ئىزلاش ئاكتىپ ئەمەس" -#: js/messages.php:177 +#: js/messages.php:179 #, fuzzy #| msgid "Latched pages" msgid "Query cache usage" msgstr "قۇلۇپلانغان بەت" -#: js/messages.php:178 +#: js/messages.php:180 #, fuzzy #| msgid "Latched pages" msgid "Query cache used" msgstr "قۇلۇپلانغان بەت" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "كۈندىلىك ھۆججەت ئۇمۇمىي سانى" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "يىغىندىسى" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "ئاق(قۇرۇق)بەت" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "بايت" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1372,34 +1375,34 @@ msgid "%d table(s)" msgstr "%s جەدۋەل" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 #, fuzzy #| msgid "Versions" msgid "Questions" msgstr "نەشىر" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1411,47 +1414,47 @@ msgstr "" msgid "None" msgstr "يوق" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1459,155 +1462,155 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "ھۆججەتنى باشقا ساقلاش" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, fuzzy, php-format #| msgid "Disabled" msgid "Disable %s" msgstr "تاقالدى" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: js/messages.php:254 +#: js/messages.php:256 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "دوكلات تېمىسى" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 #, fuzzy #| msgid "No Privileges" msgid "Analysing logs" msgstr "ھوقۇقسىز" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "ئۇقۇش تەلىپى" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Jump to Log table" msgstr "%s جەدۋەل" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 #, fuzzy #| msgid "Authenticating…" msgid "Analyzing…" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…" -#: js/messages.php:290 +#: js/messages.php:292 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "SQL ئىزاھى" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1615,7 +1618,7 @@ msgstr "SQL ئىزاھى" msgid "Status" msgstr "ھالەت" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1625,98 +1628,98 @@ msgstr "ھالەت" msgid "Time" msgstr "ۋاقىت" -#: js/messages.php:293 +#: js/messages.php:295 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "يىغىندىسى" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "ئاساسىي مەزمۇن" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "جەدۋەل" -#: js/messages.php:296 +#: js/messages.php:298 #, fuzzy #| msgid "Report title" msgid "Chart" msgstr "دوكلات تېمىسى" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 #, fuzzy #| msgid "Number of columns" msgid "Sum of grouped rows:" msgstr "سۆزلەم سانى" -#: js/messages.php:306 +#: js/messages.php:308 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "يىغىندىسى" -#: js/messages.php:308 +#: js/messages.php:310 #, fuzzy #| msgid "No Privileges" msgid "Loading logs" msgstr "ھوقۇقسىز" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 #, fuzzy #| msgid "Remove database" msgid "Reload page" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1725,77 +1728,77 @@ msgstr "" msgid "Import" msgstr "كىرگۈزۈش" -#: js/messages.php:326 +#: js/messages.php:328 #, fuzzy #| msgid "Could not load default configuration from: %1$s" msgid "Import monitor configuration" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: js/messages.php:328 +#: js/messages.php:330 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import." msgstr "ئاساسىي قىممەت ياكى بىردىنبىر قىمەتنى تاللاڭ" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "يېڭلاش" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "قوللانما" -#: js/messages.php:339 +#: js/messages.php:341 #, fuzzy #| msgid "Details…" msgid "Rule details" msgstr "تەپسىلاتلار…" -#: js/messages.php:340 +#: js/messages.php:342 #, fuzzy #| msgid "Authenticating…" msgid "Justification" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Routines" msgid "No parameters found!" msgstr "دائىملىق" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1807,72 +1810,72 @@ msgstr "دائىملىق" msgid "Cancel" msgstr "بىكار قىلىش" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy #| msgid "No Privileges" msgid "Loading…" msgstr "ھوقۇقسىز" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Profiling" msgid "Processing request" msgstr "ئاساسىي مەزمۇن" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Query" msgid "Request failed!!" msgstr "تەكشۈرۈش" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Inside column:" msgid "Dropping column" msgstr "ئىچىدىكى سۆزلەم:" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add/Delete columns" msgid "Adding primary key" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1882,71 +1885,71 @@ msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" msgid "OK" msgstr "" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "كۆچۈرۈلگەن ساندان" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Select Foreign Key" msgid "Enable foreign key checks" msgstr "تاشقى ئاچقۇق قىممىتى" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "ھۆججەتنى دېسكىغا يىزىشتا خاتالىق كۆرۈلدى." -#: js/messages.php:383 +#: js/messages.php:385 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "ئىزدەش" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "" -#: js/messages.php:385 +#: js/messages.php:387 #, fuzzy #| msgid "SQL query" msgid "Show search results" msgstr "SQL سورىقى" -#: js/messages.php:386 +#: js/messages.php:388 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "كۆزەت" -#: js/messages.php:387 +#: js/messages.php:389 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "ئۆچۈرۈش" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1962,47 +1965,47 @@ msgstr "" msgid "Export" msgstr "چىقىرىش" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, fuzzy, php-format #| msgid "Number of columns" msgid "Values for column %s" msgstr "سۆزلەم سانى" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "" -#: js/messages.php:408 +#: js/messages.php:410 #, fuzzy #| msgid "SQL query" msgid "Show query box" msgstr "SQL سورىقى" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -2012,7 +2015,7 @@ msgstr "SQL سورىقى" msgid "Edit" msgstr "تەھىرلەش" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -2023,175 +2026,175 @@ msgstr "تەھىرلەش" msgid "Delete" msgstr "ئۆچۈرۈش" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Disabled" msgid "Variable %d:" msgstr "تاقالدى" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "Click to unselect" msgid "Column selector" msgstr "بىر چىكىپ بىكار قىلىڭ" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "سانداندىن ئىزدەش" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "(continued)" msgid "Continue" msgstr "داۋاملاشتۇرلىدىغان" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "The primary key has been dropped." msgid "Primary key added." msgstr "ئاساسىي قىممەت ئۆچۈرۈلدى" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "ئىزلاش خاتىرىسى" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "تامام" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2201,430 +2204,430 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "" -#: js/messages.php:473 +#: js/messages.php:475 #, fuzzy #| msgid "SQL query" msgid "Show search criteria" msgstr "SQL سورىقى" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "ئىزدەش" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Columns terminated by" msgid "Column maximum:" msgstr "خەت ئايرىش بەلگىسى" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Columns terminated by" msgid "Column minimum:" msgstr "خەت ئايرىش بەلگىسى" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy #| msgid "SQL query" msgid "Hide find and replace criteria" msgstr "SQL سورىقى" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy #| msgid "SQL query" msgid "Show find and replace criteria" msgstr "SQL سورىقى" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "سانلىق مەلۇمات قوللانمىسىنىڭ چوڭ كىچىكلىكى" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "قۇر ئالماشۇرۇش بەلگىسى" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Lines terminated by" msgid "Inner ring" msgstr "قۇر ئالماشۇرۇش بەلگىسى" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "قۇر ئالماشۇرۇش بەلگىسى" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "سېرتقى ئۇلىنىشنى تاللاش" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "تاشقى ئاچقۇق قىممىتى" -#: js/messages.php:533 +#: js/messages.php:535 #, 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "سۆزلەمنى كۆرسەتمەسلىك" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "ھەممىنى تاللاش" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select a page to continue" msgstr "ئاساسىي قىممەت ياكى بىردىنبىر قىمەتنى تاللاڭ" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Display PDF schema" msgid "Export relational schema" msgstr "PDF تىزىىسىنى كۆرسىتىش" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "ئۆزگەرتىشلەر ساقلاندى" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Number of columns" msgid "Add an option for column \"%s\"." msgstr "سۆزلەم سانى" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Columns terminated by" msgid "Double-click to copy column name." msgstr "خەت ئايرىش بەلگىسى" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "ھەممىسىنى كۆرسىتىش" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Lines terminated by" msgid "Original length" msgstr "قۇر ئالماشۇرۇش بەلگىسى" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "بىكار قىلىش" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import" msgid "Import status" msgstr "كىرگۈزۈش" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "ھەممىنى تاللاش" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "يازدۇر" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Columns terminated by" msgid "Copy column name." msgstr "خەت ئايرىش بەلگىسى" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "پارول ھاسىللاش" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "ھاسىللاش" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "تېخىمۇ كۆپ" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "ھەممىسىنى كۆرسىتىش" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "تېزىسلار" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Indexes" msgid "Show hidden navigation tree items." msgstr "تېزىسلار" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Indexes" msgid "Link with main panel" msgstr "تېزىسلار" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Indexes" msgid "Unlink from main panel" msgstr "تېزىسلار" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2632,122 +2635,122 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 #, fuzzy #| msgid "Last version" msgid ", latest stable version:" msgstr "ېيڭى نەشىر" -#: js/messages.php:648 +#: js/messages.php:650 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "up to date" msgstr "%s جەدۋەل" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "نەشىرنى قۇىماق" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Report title" msgid "Show report details" msgstr "دوكلات تېمىسى" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Select All" msgid "Execute this query again?" msgstr "ھەممىنى تاللاش" -#: js/messages.php:700 +#: js/messages.php:702 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "راستىنلا ئجرا قىلىمسىز" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "جەدۋەل ئىزاھى" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2756,36 +2759,36 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "كۆچۈرۈلگەن ساندان" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Repair table" msgid "Add table prefix" msgstr "جەدۋەلنى ئوڭشاش" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Repair table" msgid "Replace table with prefix" msgstr "جەدۋەلنى ئوڭشاش" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "ئالدىنقى ئاي" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2793,149 +2796,149 @@ msgid "Next" msgstr "كىيىنكى ئاي" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "بۈگۈن" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "قەھرىتان" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "ھۇت" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "نورۇز" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "ئۈمىد" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "باھار" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "6-ئاي" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "7-ئاي" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "8-ئاي" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "9-ئاي" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "10-ئاي" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "11-ئاي" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "12-ئاي" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "1-ئاي" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "2-ئاي" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "3-ئاي" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "4-ئاي" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "5-ئاي" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "6-ئاي" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "چىللە" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "تومۇز" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "مىزان" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "ئوغۇز" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "ئوغلاق" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "كۆنەك" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "يەكشەنبە" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "دۈشەنبە" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "سەيشەنبە" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "چارشەنبە" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "پەيشەنبە" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "جۈمە" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "شەنبە" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2943,205 +2946,205 @@ msgid "Sun" msgstr "يەكشەنبە" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "دۈشەنبە" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "سەيشەنبە" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "چارشەنبە" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "پەيشەنبە" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "جۈمە" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "شەنبە" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "يەكشەنبە" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "دۈشەنبە" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "سەيشەنبە" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "چارشەنبە" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "پەيشەنبە" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "جۈمە" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "شەنبە" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "يوق" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "سائەت" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "مىنۇت" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "سېكنۇت" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:888 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:887 +#: js/messages.php:889 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:925 +#: js/messages.php:927 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:930 +#: js/messages.php:932 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "خاتالىق" @@ -3192,34 +3195,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "خەتنىڭ چوڭ-كىچىكلىكى" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "Query" msgid "Requery" msgstr "تەكشۈرۈش" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3238,90 +3241,71 @@ msgid "Database" msgstr "ساندان" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Search" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "ئىزدەش" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "خەتكۈچ ئۆچۈرۈلدى." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "ئىزدەش" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "SQL ئىزاھى" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "ئاساسىي مەزمۇن" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Search" msgid "Bookmark" msgstr "ئىزدەش" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query" msgid "Query failed" msgstr "تەكشۈرۈش" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy #| msgid "SQL query" msgid "SQL Query Console" msgstr "SQL سورىقى" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "Skip Validate SQL" msgid "History" msgstr "SQL دەلىللەشتىن ئاتلاش" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3339,177 +3323,177 @@ msgstr "SQL دەلىللەشتىن ئاتلاش" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Search" msgid "Bookmarks" msgstr "ئىزدەش" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Select All" msgid "Press Ctrl+Enter to execute query" msgstr "ھەممىنى تاللاش" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Select All" msgid "Press Enter to execute query" msgstr "ھەممىنى تاللاش" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "ئارتىش" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "كېمىيىش" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "سۆزلەم" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL query" msgid "Ungroup queries" msgstr "SQL سورىقى" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "رەڭنى كۆرسىتىش" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Indexes" msgid "Hide trace" msgstr "تېزىسلار" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "سۆزلەم" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "يېڭلاش" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "ۋە" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Search" msgid "Add bookmark" msgstr "ئىزدەش" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label key" msgid "Label" msgstr "ئاچقۇچلۇق ئېمزا" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy #| msgid "Create new database" msgid "Target database" msgstr "ساندان قۇرۇش" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Search" msgid "Share this bookmark" msgstr "ئىزدەش" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Default" msgid "Set default" msgstr "ئەندىز" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "SQL query" msgid "Show query history at start" msgstr "SQL سورىقى" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied database" msgid "Switch to dark theme" msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Could not load default configuration from: %1$s" msgid "Failed to set configured collation connection!" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3517,21 +3501,21 @@ msgid "" "configured)." msgstr "(يەرلىك MySQL مۇلازىمىتېرى توغرا تەڭشەلمىگەن)" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "مۇلازىمىتېردا ئىنكاس يوق" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "تەپسىلاتلار…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "تەڭشەك ھۆججىتى ئىچىدىكى ئىشلەنكۈچى ئۇلۈنما كونتىرولى مەغلۇب بولدى." @@ -3897,7 +3881,7 @@ msgstr "ئېنىقسىزلىك بولۇشى مۇمكىن. [doc@faq3-11]FAQ 3.11[ #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4027,17 +4011,17 @@ msgstr "كېڭەيتىلمە ئىسمى بۇنداق ھۆججەتلەرنى يو msgid "Unknown error in file upload." msgstr "ھۆججەت يۈكلەشتە ئېنىقسىز خاتالىق كۆرۈلدى." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "ئېنىقسىزلىك بولۇشى مۇمكىن. [doc@faq3-11]FAQ 3.11[/doc] غا قاراڭ." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4103,8 +4087,8 @@ msgid "Keyname" msgstr "قىممەت ئىسمى" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4154,13 +4138,13 @@ msgstr "ئۆچۈرۈلگەن تېزىسلار %s." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "ئۆچۈرۈش" @@ -4258,7 +4242,7 @@ msgstr "ھۇقۇقى" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "ئىشلەملەر" @@ -4273,7 +4257,7 @@ msgstr "ئىز قۇغلاش" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4675,11 +4659,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "ئالدىن كۆرگىنى بولمايدۇ." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "ئېلىش" @@ -4950,21 +4934,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "كۈندىلىك ھۆججەت ئۇمۇمىي سانى" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "ئەڭ چوڭ:%s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4975,38 +4959,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL جاۋابى: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL ئىزاھى" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "SQL ئىزاھىىدىن ئاتلاش" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP كودى يوق" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "تاپشۇرۇش" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP كودى قۇرۇش" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Print view" msgctxt "Inline edit query" @@ -5103,6 +5087,10 @@ msgstr "" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5219,44 +5207,44 @@ msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Could not load default configuration from: %1$s" msgid "Failed to read configuration file!" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "ئۈنۈمسىز مۇلازىمىتېر :%s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "مۇلازىمىتېر %1$s ئۈنۈمسىز. تەڭشەك ھۆجقىتىنى تەشۈرۈڭ." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "مۇلازىمىتېر" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "تەڭشەك ھۆجىتى ئىچىدىكى دەلىللەش ئۇسۇلى ئۈنۈمسىز:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5264,24 +5252,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s ياكى ئۇنىڭدىنمۇ يۇقىرى نەشىرگە كۆتۈتىڭ." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5973,7 +5961,7 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Columns enclosed by" msgid "Columns enclosed with" @@ -5981,7 +5969,7 @@ msgstr "مەزمۇن ئايرىش بەلگىسى" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Columns escaped by" msgid "Columns escaped with" @@ -6003,14 +5991,14 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "خەت ئايرىش بەلگىسى" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6614,7 +6602,7 @@ msgid "Column names in first row" msgstr "خەت ئايرىش بەلگىسى" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -8076,7 +8064,7 @@ msgid "Table %s has been emptied." msgstr "%s جەدۋەل تازىلاندى" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8213,8 +8201,8 @@ msgid "No data to display" msgstr "سۆزلەمنى كۆرسەتمەسلىك" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8259,57 +8247,57 @@ msgstr[0] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "ساندان %s ئۆچۈرۈلدى." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Query" msgid "Query error" msgstr "تەكشۈرۈش" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "ئۆزگەرتتىش" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -8321,7 +8309,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "%s كېڭەيتىلمە كەمكەن، PHP تەڭشەك ھۆججىتىنى تەكشۈرۈپ چىقىڭ." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -9124,56 +9112,56 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Go to database: %s" msgstr "ساندان %s غا جەدىۋەل قۇرۇش" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "تۈزىلىشىنىلا" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9221,55 +9209,55 @@ msgstr "ياكى" msgid "web server upload directory:" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "قىستۇرۇش" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "كېيىن" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9281,11 +9269,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10159,7 +10147,7 @@ msgstr "جەدۋەلنى ئوڭشاش" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" @@ -10176,32 +10164,32 @@ msgid "Delete the table (DROP)" msgstr "كۆچۈرۈلگەن ساندان" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10227,37 +10215,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -10444,7 +10432,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "ئايلاندۇرۇپ ساقلاش جەدىۋېلىدىكى سانلىق مەلۇمات" @@ -10470,21 +10458,21 @@ msgstr "ئىزاھات" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "جەدېۋەلنىڭ تۈزىلىشى" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -10596,7 +10584,7 @@ msgid "Database:" msgstr "ساندان" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10711,7 +10699,7 @@ msgid "Data creation options" msgstr "ئامال" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10780,7 +10768,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10832,60 +10820,60 @@ msgstr "ئىشلىتىلمەكتە" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "تۆۋەندىكى جەدۋەل(لەر): " -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "تۆۋەندىكى جەدۋەل(لەر): " -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT قوشۇش" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT قوشۇش" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -10919,7 +10907,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10939,33 +10927,33 @@ msgstr "" msgid "Column names: " msgstr "خەت ئايرىش بەلگىسى" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -10973,28 +10961,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "MediaWikiكۈرۈنىشى" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11004,23 +10992,23 @@ msgstr "OpenOffice جەدىۋېلى" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -11036,7 +11024,7 @@ msgstr "SQLئۆز ئىچىگە ئالغان شەكلى" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -13951,15 +13939,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "With selected:" @@ -13974,17 +13958,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "With selected:" msgid "An alias was expected." @@ -14006,19 +13991,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The bookmark has been deleted." msgid "A rename operation was expected." @@ -14047,17 +14032,17 @@ msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "Show dimension of tables" msgid "Unexpected beginning of statement." msgstr "جەدېۋەلنىڭ چوڭ-كىچىكلىكىنى كۆرسىتىش" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14078,17 +14063,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The bookmark has been deleted." msgid "At least one column definition was expected." msgstr "خەتكۈچ ئۆچۈرۈلدى." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14785,7 +14770,7 @@ msgstr "" msgid "Invalid table name" msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15861,7 +15846,7 @@ msgid "at beginning of table" msgstr "جەدېۋەلنىڭ چوڭ-كىچىكلىكىنى كۆرسىتىش" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -15906,7 +15891,7 @@ msgstr "مۇناسىۋىتى" msgid "Edit partitioning" msgstr "بېسىپ كۆرسىتىش" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16035,11 +16020,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Drop the database (DROP)" msgid "Delete the view (DROP)" @@ -17192,6 +17177,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Search" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "ئىزدەش" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "خەتكۈچ ئۆچۈرۈلدى." + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/uk.po b/po/uk.po index 5ca8f3e187..c6fe9df01d 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:19+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Ukrainian " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save & Close" msgid "Save & close" msgstr "Зберегти та закрити" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Перевстановити" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Reset All" msgid "Reset all" msgstr "Скинути всі" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Не задано значення для форми!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Виберіть принаймні один із варіантів!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Введіть вірний номер!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Введіть вірну довжину!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Додати індекс" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Редагувати Індекс" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Додати до індексу %s стовпчик(ів)" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Створити індекс з одного стовпчика" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Створити складений індекс" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Будь ласка, виберіть стовпець(і) для індексу." -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Необхідно додати принаймні один стовпчик." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Попередній перегляд SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Імітувати запит" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Підібрані рядки:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL-запит:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Значення Y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Порожнє ім'я хоста!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Порожнє і'мя користувача!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Порожній пароль!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Паролі не однакові!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Видалення відмічених користувачів" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Закрити" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Кількість створених сторінок." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Профіль було поновлено." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Рядок видалено." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Інше" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "З'єднань / Процесів" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Несумісна конфігурація локального монітору!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1183,165 +1188,165 @@ msgstr "" "імовірно, що ваша поточна конфігурація більше не буде працювати. Будь ласка, " "встановіть вашу конфігурацію за замовчанням в меню Установки." -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Ефективність кешу запитів" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Використання кешу запитів" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Використано кеш запитів" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Використання CPU системою" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Пам'ять системи" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "SWAP системи" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Середнє навантаження" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Загальна пам'ять" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Пам'яті кешовано" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Пам'яті буферизовано" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Пам'яті вільно" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "Пам'яті використано" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Загальний Swap" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Кешований Swap" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Використаний Swap" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Вільний Swap" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Байтів надіслано" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Байтів отримано" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "З'єднань" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Процесів" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "Б" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "КБ" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "ЕБ" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d таблиця(таблиць)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Питання" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Трафік" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Налаштування" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Додати графік до сітки" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Будь ласка додайте щонайменше одну змінну до ряду!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1353,47 +1358,47 @@ msgstr "Будь ласка додайте щонайменше одну змі msgid "None" msgstr "Жодного" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Відновити монітор" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Призупинити монітор" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Почати автоматичне оновлення" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Припинити автоматичне оновлення" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log та slow_query_log ввімкнені." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log ввімкнений." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log ввімкнений." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "general_log та slow_query_log вимкнені." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output не встановлений для TABLE." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output встановлений для TABLE." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1404,12 +1409,12 @@ msgstr "" "%d секунди. Рекомендовано встановити long_query_time 0-2 секунди, в " "залежності від вашої системи." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time встановлено на %d секунди(секунд)." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1418,30 +1423,30 @@ msgstr "" "будуть встановлені за замовчуванням:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Встановити log_output в %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Увімкнено %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Вимкнено %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Встановити long_query_time у %d секунд." -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1449,57 +1454,57 @@ msgstr "" "Ви не можете змінити ці змінні. Будь ласка увійдіть як root або зв'яжіться з " "вашим адміністратором БД." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Змінити налаштування" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Поточні налаштування" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Назва графіку" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Диференціальний" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Розділено на %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Модуль" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "З журналу повільних запитів (slow log)" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Із загального журналу" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "Ім'я бази даних для цього запиту не присутнє в журналі сервера." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Аналіз журналів" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Аналіз та завантаження журналів. Це може зайняти деякий час." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Скасувати запит" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1509,7 +1514,7 @@ msgstr "" "тільки сам SQL запит був використаний в якості критеріїв класифікації, так " "що інші атрибути запиту, такі як час початку, можуть відрізнятися." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1518,31 +1523,31 @@ msgstr "" "Оскільки було обрано груповання запитів INSERT, INSERT запити в тій же " "таблиці також групуються разом, незважаючи на вставлені дані." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "Журнальні дані завантажені. Запити виконані в цей проміжок часу:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Перейти до таблиці Log" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Даних не знайдено" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "Журнал проаналізований, але даних в цей проміжок часу не знайдено." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Аналізується…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Тлумачити вихідні дані" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1550,7 +1555,7 @@ msgstr "Тлумачити вихідні дані" msgid "Status" msgstr "Стан" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1560,58 +1565,58 @@ msgstr "Стан" msgid "Time" msgstr "Час" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Загальний час:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Результати профілювання" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Таблиця" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Діаграма" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "опції фільтрів таблиці Log" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Фільтр" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Фільтрувати запити по слову/регулярному_виразу:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Групувати запити, ігноруючи змінні в операторі WHERE" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Число згрупованих рядків:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Разом:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Журнал завантаження" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Оновлення монітору не вдалося" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1621,27 +1626,27 @@ msgstr "" "швидше за все, тому що ваша сесія закінчилася. Перезавантаження сторінки і " "повторного введення облікових даних повинно допомогти." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Перезавантажити сторінку" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Рядки що зазнали змін:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Невдале зчитування файлу конфігурації. Схоже на неприпустимий JSON код." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Неможливо побудувати сітку даних з імпортованою конфігурацією. Відновлення " "конфігурації за замовчуванням…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1650,67 +1655,67 @@ msgstr "" msgid "Import" msgstr "Імпорт" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Імпорт налаштувань монітору" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Будь ласка, оберіть файл, який ви бажаєте імпортувати." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "На сервері немає файлів для імпорту!" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "Аналізувати запит" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Система порад" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Можливі проблеми з продуктивністю" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Пропозиція" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Рекомендація" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Деталі правила" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Правомірність" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Використана змінна / формула" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Тест" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Помилкові параметри!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1722,74 +1727,74 @@ msgstr "Помилкові параметри!" msgid "Cancel" msgstr "Скасувати" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Змінити налаштування" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Застосувати" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Завантаження…" -#: js/messages.php:358 +#: js/messages.php:360 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "Запит скасовано!" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Обробка запиту" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Request Aborted!!" msgid "Request failed!!" msgstr "Запит скасовано!" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Error in processing request:" msgid "Error in processing request" msgstr "Помилка при обробці запиту:" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Код помилки: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Текст помилки: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Жодної бази даних не вибрано." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Видалення стовпчика" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Додати первинний ключ" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1799,63 +1804,63 @@ msgstr "Додати первинний ключ" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Клікніть для пропуску цьго повідомлення" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Перейменування баз даних" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Копіювання бази даних" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Зміна Кодування" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Відключити перевірки зовнішніх ключів" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Не вдалося отримати реальну кількість рядків." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Пошук" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Сховати результати пошуку" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Показати результати пошуку" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Перегляд" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Видалення" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Визначення збереженої функції має містити оператор RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1871,45 +1876,45 @@ msgstr "Визначення збереженої функції має міст msgid "Export" msgstr "Експортувати" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET редактор" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Значення для колонки %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Значення для нового стовпчика" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Введіть кожне значення в окреме поле." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Додати %d значення(ь)" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Примітка: Якщо файл містить кілька таблиць, то вони будуть об'єднані в одну." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Сховати блок запиту" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Показати блок запиту" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1919,7 +1924,7 @@ msgstr "Показати блок запиту" msgid "Edit" msgstr "Редагувати" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1930,57 +1935,57 @@ msgstr "Редагувати" msgid "Delete" msgstr "Видалити" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d неправильний номер рядка." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Огляд зовнішніх значень" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Змінна" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Вибір стопчиків" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Шукати в цьому списку" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "Дивитись більше" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Ви впевнені?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1988,70 +1993,70 @@ msgstr "" "Ця дія може змінити визначення деяких стовпців.
Ви впевнені, що бажаєте " "продовжувати?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Продовжити" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Додати первинний ключ" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Було додано первинний ключ." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Перехід до наступного кроку…" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Перший крок нормалізації для таблиці '%s' завершений." -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Кінець кроку" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Другий крок нормалізації (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Готово" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Підтвердіть часткові залежності" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Обрані часткові залежності такі:" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Немає обраних часткових залежностей!" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Покажіть мені можливі часткові залежності, що ґрунтуються на даних у таблиці" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Приховати список часткових залежностей" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2059,41 +2064,41 @@ msgstr "" "Всім залишатись на місцях! Це може зайняти деякий час, залежно від розміру " "даних та кількості стовпців у таблиці." -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Крок" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Будуть виконані наступні дії:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "СКИНУТИ стовпці %s для таблиці %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Створити наступну таблицю" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Третій крок нормалізації (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "Підтвердіть перехресні залежності" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "Обрані залежності такі:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Жодної залежності не обрано!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2103,151 +2108,151 @@ msgstr "Жодної залежності не обрано!" msgid "Save" msgstr "Зберегти" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Сховати критерії пошуку" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Показати критерії пошуку" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Діапазон пошуку" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Максимум стовпчика:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Мінімум стовпчика:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Мінімальне значення:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Максимальне значення:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Сховати критерії пошуку та заміни" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Показати критерії пошуку та заміни" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Кожна точка являє собою рядок даних." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Наведення курсора над крапкою відобразить, її назву." -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Щоб збільшити масштаб, виберіть ділянку діаграми за допомогою миші." -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" "Натисніть кнопку Скидання масштабу, щоб повернутися до початкового стану." -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "Клікніть на дані щоб переглянути та можливо редагувати дані рядка." -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Розмір графіка може бути змінений шляхом перетягування нижнього правого кута." -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Виділити дві колонки" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Виділити дві різні колонки" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "Вміст точки даних" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Ігнорувати" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Копіювати" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Точка" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Відрізок" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Полігон" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Геометрія" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Внутрішнє кільце" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Зовнішнє кільце:" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Ви хочете скопіювати ключ шифрування?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Ключ шифрування" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Обрати ключі посилання" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Обрати зовнішній ключ" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Будь ласка, оберіть первинний ключ або унікальний ключ!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Виберіть колонку для відображення" -#: js/messages.php:536 +#: js/messages.php:538 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2255,78 +2260,78 @@ msgstr "" "Ви не зберегли зміни в макет. Вони будуть втрачені, якщо ви не збережете їх. " "Бажаєте продовжити?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Назва сторінки" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Зберегти сторінку" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Відкрити сторінку" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Видалити сторінку" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Без назви" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Будь ласка, оберіть сторінку для продовження" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "Ви хочете зберегти зміни до поточної сторінки?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Сторінка успішно видалена" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Експортувати схему зв'язків" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Модифікації було збережено" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Додати опцію для колонки \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "Створено %d об'єкт(ів)." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Виконати" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Натисніть Escape для відміни редагування." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2334,15 +2339,15 @@ msgstr "" "Ви змінили деякі дані, і вони не були збережені. Ви впевнені, що хочете " "залишити цю сторінку перед збереженням даних?" -#: js/messages.php:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Перетягніть для зміни порядку." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Клацніть для сортування за цим стовпчиком." -#: js/messages.php:567 +#: js/messages.php:569 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 " @@ -2352,28 +2357,28 @@ msgstr "" "ASC/DESC.
- Ctrl+клік чи Alt+клік (для Mac: Shift+Option+клік) для " "видалення стовпчика із списку ORDER BY" -#: js/messages.php:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Клацніть для встановлення/зняття позначки." -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Клацніть двічі, щоб скопіювати назву стовпчика." -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Клацніть на стрілку випадаючого меню
для перемикання видимості " "стовпчика." -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Показати все" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2382,13 +2387,13 @@ msgstr "" "редагування, прапорцем, посиланнями Редагувати, Копіювати та Видаляти можуть " "не працювати після збереження." -#: js/messages.php:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Будь-ласка введіть допустимий шістнадцятковий рядок. Допустимі символи: 0-9, " "A-F." -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2396,111 +2401,111 @@ msgstr "" "Ви дійсно хочете побачити усі рядки? Для великих таблиць це може призвести " "до зависання браузеру." -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Початковий рядок" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "скасувати" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Перервано" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Успішно" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Стан імпорту" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Скинути файли сюди" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Спочатку оберіть базу даних" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Друк" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Ви також можете редагувати більшість значень
двіччі клацнувши прямо " "по них." -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Ви також можете редагувати більшість колонок
клацнувши безпосередньо " "на них." -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Перейти за посиланням:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Копіювати назву стовпчик(ів)." -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Клацніть правою кнопкою назву стовпчика, щоб скопіювати його в буфер обміну." -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Згенерувати пароль" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Згенерувати" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Більше" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Показати панель" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Приховати панель" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Показати приховані пункти дерева навігації." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Зв'язати з головною панеллю" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Видалити зв'язок з головною панеллю" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Запитану сторінку не знайдено в історії, можливо минув її термін зберігання." -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2510,50 +2515,50 @@ msgstr "" "Найновіша версія %s, випущена %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", остання стабільна версія:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "оновлено" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Створити подання" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Надіслати звіти про помилку" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Надіслати звіт про помилку" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Трапилася фатальна помилка JavaScript. Ви хочете відіслати звіт про неї?" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Змінити налаштування звіту" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Показати подробиці звіту" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2561,7 +2566,7 @@ msgstr "" "Ваш експорт є неповним у зв'язку з низьким часовим лімітом для виконання на " "рівні PHP!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2571,63 +2576,63 @@ msgstr "" "надсилання деякі поля може бути проігноровано через значення РНР " "max_input_vars." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "На сервері були виявлені деякі помилки!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Будь-ласка зверніть увагу на нижню частину цього вікна." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Ігнорувати все" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Згідно ваших налаштувань, що наразі вносяться, будьте терплячими." -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Виконати цей запит ще раз?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Ви дійсно бажаєте видалити цю закладку?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format #| msgid "Execute" msgid "%s queries executed %s times in %s seconds." msgstr "Виконати" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Коментарі таблиці" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Сховати результати пошуку" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2636,385 +2641,385 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Копіювати базу даних в" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Додати префікс таблиці:" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Замінити префікс таблиці" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Копіювати таблицю з префіксом" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Попередня" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Наступна" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Сьогодні" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Січень" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Лютий" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Березень" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Квітень" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Травень" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Червень" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Липень" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Серпень" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Вересень" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Жовтень" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Листопад" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Грудень" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Січ" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Бер" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Квт" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Трв" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Чрв" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Лип" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Сер" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Жов" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Лис" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Гру" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Неділя" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Понеділок" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Вівторок" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Середа" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Четвер" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "П'ятниця" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Субота" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Сб" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "Нд" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "Пн" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "Вт" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "Чт" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "Пт" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "Сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "календар-місяць-рік" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "немає" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Година" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Хвилина" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Секунда" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Використовувати текстове поле" -#: js/messages.php:886 +#: js/messages.php:888 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid email address" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:887 +#: js/messages.php:889 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Введіть вірний номер!" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date ( ISO )" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Введіть вірний номер!" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Введіть вірний номер!" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "Введіть вірну довжину!" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter the same value again" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter at least {0} characters" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value between {0} and {1}" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:925 +#: js/messages.php:927 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "Введіть вірну довжину!" -#: js/messages.php:930 +#: js/messages.php:932 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value greater than or equal to {0}" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date or time" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Введіть вірний номер!" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Помилка" @@ -3067,34 +3072,34 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" "Неочікуваний символ в рядку %1$s. Очікувався tab, але не знайдено \"%2$s\"." -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Існуючий файл конфігурації (%s) не читабельний." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Невірні права доступу до конфігураційного файлу, він не повинен бути " "доступним для всіх!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Розмір шрифту" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Згорнути" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Розгорнути" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Повторити запит" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3114,77 +3119,60 @@ msgstr "База даних" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Всього %d закладка" -msgstr[1] "Всього %d закладки" -msgstr[2] "Всього %d закладок" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "закритий" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "загальні" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s та %3$s закладки включено" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Немає закладок" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Під час поточного сеансу" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Тлумачити" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Профілювання" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Закласти" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "Консоль SQL запиту" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Очистити" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Історія" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3202,165 +3190,165 @@ msgstr "Історія" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Параметри" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Закладки" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Відлагодити SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Натисніть Ctrl+Enter для виконання запиту" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Press Ctrl+Enter to execute query" msgid "Press Enter to execute query" msgstr "Натисніть Ctrl+Enter для виконання запиту" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Зростаючий" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Спадаючий" -#: libraries/Console.php:286 +#: libraries/Console.php:268 #, fuzzy #| msgid "Order" msgid "Order:" msgstr "Порядок" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Відлік" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute every" msgid "Execution order" msgstr "Виконати кожні" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 #, fuzzy #| msgid "Order" msgid "Order by:" msgstr "Порядок" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "SQL запити" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "SQL запити" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Показати колір" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Hide Panel" msgid "Hide trace" msgstr "Приховати панель" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Count" msgid "Count:" msgstr "Відлік" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Оновити" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Додати" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Додати закладку" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Мітка" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Цільова база даних" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Поділитися цією закладкою" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Скинути за замовчуванням" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Завжди розгортати повідомлення запиту" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Показати історію на початку" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Перейти до скопійованої таблиці" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Не вдалося прочитати файл конфігурації!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3368,19 +3356,19 @@ msgstr "" "Сервер не відповідає (або локальний сокет сервера MySQL невірно " "налаштований)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Сервер не відповідає." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Будь ласка, перевірте привілеї каталогу містить базу даних." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Деталі…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "Помилка при вказуванні з'єднання для controluser в конфігурації." @@ -3699,7 +3687,7 @@ msgstr "Може бути приблизним. Дивіться [doc@faq3-11]FA #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Ваш SQL запит було виконано вдало." @@ -3823,15 +3811,15 @@ msgstr "Завантаження файла зупинено розширенн msgid "Unknown error in file upload." msgstr "Невідома помилка під час завантаження файла." -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "Помилка під час переміщення файла, дивись [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Помилка під час переміщення завантаженого файла." -#: libraries/File.php:495 +#: libraries/File.php:492 #, fuzzy #| msgid "Cannot read (moved) upload file." msgid "Cannot read uploaded file." @@ -3897,8 +3885,8 @@ msgid "Keyname" msgstr "Назва ключа" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3948,13 +3936,13 @@ msgstr "Індекс %s було знищено." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Знищити" @@ -4053,7 +4041,7 @@ msgstr "Привілеї" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Операції" @@ -4068,7 +4056,7 @@ msgstr "Відстеження" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4451,11 +4439,11 @@ msgstr "Помилка при створенні зовнішнього ключ msgid "No valid image path for theme %s found!" msgstr "Не знайдено правильного шляху до зображення для теми %s!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Намає доступного перегляду." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "прийняти його" @@ -4754,23 +4742,23 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Просторове" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Максимум: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 #, fuzzy #| msgid "Static data" msgid "Static analysis:" msgstr "Статичні дані" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4781,38 +4769,38 @@ msgstr "" msgid "MySQL said: " msgstr "Відповідь MySQL: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Тлумачити SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Не тлумачити SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "без PHP коду" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "Виконати запит" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "Створити PHP код" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit index" msgctxt "Inline edit query" @@ -4902,6 +4890,10 @@ msgstr "за годину" msgid "per day" msgstr "за день" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "загальні" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Пошук:" @@ -5008,11 +5000,11 @@ msgstr "Додати стовпчик" msgid "Attributes" msgstr "Атрибути" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Не вдалося прочитати файл конфігурації!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -5020,32 +5012,32 @@ msgstr "" "Як правило, це означає, що в ньому є синтаксичні помилки, будь ласка, " "перевірте будь-які помилки що показано нижче." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Неможливо завантажити стандартну функціональність із: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Невірний індекс сервера: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Невірна назва хоста для сервера %1$s. Будь ласка, перевірте конфігурацію." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Сервер %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Невірний метод аутентифікації встановленний в налаштуваннях:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5053,24 +5045,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Вам необхідно оновити до %s %s або пізнішої." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Помилка: невідповідний токен" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "спроба перезапису GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "можливе використання" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "виявлено цифровий ключ" @@ -5839,13 +5831,13 @@ msgstr "Помістити імена колонок в перший рядок" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Стовпчики взято в" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Символ екранування" @@ -5863,12 +5855,12 @@ msgstr "Вилучити CRLF символи у стовбцях" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Колонки завершуються з" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Рядки закінчуються з" @@ -6467,7 +6459,7 @@ msgid "Column names in first row" msgstr "Імена колонок у першому рядку" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Не імпортувати пусті рядки" @@ -8067,7 +8059,7 @@ msgid "Table %s has been emptied." msgstr "Таблицю %s було очищено." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "Перегляд %s було знищено." @@ -8203,8 +8195,8 @@ msgid "No data to display" msgstr "Немає даних для відображення" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8253,53 +8245,53 @@ msgstr[2] "" msgid "No column selected." msgstr "Жодного стовпчика не вибрано." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Стовпці успішно переміщено." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Помилка запиту" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Змінити" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Індекс" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Просторовий" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "ПовнТекст" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Окремі значення" @@ -8310,7 +8302,7 @@ msgstr "" "Розширення %s не знайдено. Будь ласка, перевірте ваші налаштування PHP." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Змін немає" @@ -9131,56 +9123,56 @@ msgstr "MySQL повернула пустий результат (тобто н msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Наступні структури були створені, або змінені. Ви можете:" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "Переглянути деталі структури клацанням по її імені." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Змінити будь-яке налаштування клацанням по відповідному посиланню \"Параметри" "\"." -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Відредагувати структуру за посиланням \"Структура\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Перейти до бази даних: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Редагувати налаштування для %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Перейти до таблиці: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Структура %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Перейти до подання: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9226,48 +9218,48 @@ msgstr "Або" msgid "web server upload directory:" msgstr "каталог веб-сервера для відвантаження файлів:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Редагувати/Вставити" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Продовжити вставку з %s рядка" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "і потім" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Вставити як новий рядок" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Вставити як новий рядок і ігнорувати помилки" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Відображати запит вставлення" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Повернутись" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Вставити новий запис" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Повернутися на цю сторінку" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Редагувати наступний рядок" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -9277,7 +9269,7 @@ msgstr "" "Для переходу від значення до значення використовуйте TAB, або CTRL+стрілки - " "для переміщення куди завгодно" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9289,11 +9281,11 @@ msgstr "" msgid "Value" msgstr "Значення" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Показ SQL-запиту" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Ідентифікатор доданого рядка: %1$d" @@ -10147,7 +10139,7 @@ msgstr "Ремонтувати таблицю" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Видалити дані або таблицю" @@ -10160,32 +10152,32 @@ msgid "Delete the table (DROP)" msgstr "Видалити таблицю (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Аналізувати" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Перевірити" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Оптимізувати" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Перебудувати" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Відремонтувати" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10213,37 +10205,37 @@ msgstr "Видалити розділи" msgid "Check referential integrity:" msgstr "Перевір цілісність даних на рівні посилань:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Не можу перенести таблицю саму в себе!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Не можу скопіювати таблицю саму в себе!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Таблицю %s було перенесено в %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Таблицю %s було скопійовано в %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Порожня назва таблиці!" @@ -10421,7 +10413,7 @@ msgstr "Параметри дампу даних" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Дамп даних таблиці" @@ -10445,21 +10437,21 @@ msgstr "Визначення" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Структура таблиці" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Структура для представлення" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Дублююча структура для представлення" @@ -10549,7 +10541,7 @@ msgid "Database:" msgstr "База даних:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Дані:" @@ -10657,7 +10649,7 @@ msgid "Data creation options" msgstr "Параметри створення даних" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -10746,7 +10738,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10792,52 +10784,52 @@ msgstr "використовується" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Обмеження зовнішнього ключа збережених таблиць" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Обмеження зовнішнього ключа таблиці" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Індекси збережених таблиць" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Індекси таблиці" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT для збережених таблиць" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT для таблиці" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME-ТИПИ ТАБЛИЦІ" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "ЗВ'ЯЗКИ ТАБЛИЦІ" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "Структура для подання %s, експортованого як таблиця" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Помилка читання даних:" @@ -10869,7 +10861,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10892,15 +10884,15 @@ msgstr "" msgid "Column names: " msgstr "Назви стовпців: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Неправильний параметр імпорту CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10909,18 +10901,18 @@ msgstr "" "Зазначено помилкове ім'я стовпця (%s)! Переконайтеся, що назви стовпців " "вказані вірно, розділені комами, і не вкладені в лапки." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Неправильний формат вхідних CSV-даних в рядку %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Невідповідність кількості стовпців в CSV даних на рядку %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Цей модуль не підтримує імпорт стиснених даних!" @@ -10928,23 +10920,23 @@ msgstr "Цей модуль не підтримує імпорт стиснен msgid "MediaWiki Table" msgstr "Таблиця MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" "Імпортувати відсотки у вигляді десяткових значень (напр. 12.00% в .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Імпортувати грошові одиниці (напр. $ 5.00 в 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10952,7 +10944,7 @@ msgstr "" "Обраний XML файл некоректний, або неповний. Перевірте можливі помилки і " "спробуйте ще раз." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Неможливо прочитати електронну таблицю OpenDocument!" @@ -10960,12 +10952,12 @@ msgstr "Неможливо прочитати електронну таблиц msgid "ESRI Shape File" msgstr "Файл ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "При імпорті файлу ESRI сталася помилка: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10973,12 +10965,12 @@ msgstr "" "Ви спробували імпортувати некоректний файл або цей файл містить некоректні " "дані!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "Просторове розширення MySQL не підтримує тип ESRI \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Імпортований файл не містить даних!" @@ -10990,7 +10982,7 @@ msgstr "Режим сумісності SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Не використовувати AUTO_INCREMENT для нульових значень" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -14094,15 +14086,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No tables selected." @@ -14117,17 +14105,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No tables selected." msgid "An alias was expected." @@ -14149,23 +14138,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Кількість відкритих таблиць." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Кількість відкритих таблиць." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -14198,17 +14187,17 @@ msgstr "Подія %1$s була створена." msgid "Variable name was expected." msgstr "Шаблон імені таблиці" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "На початку таблиці" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14231,19 +14220,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Рядок видалено." -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14942,7 +14931,7 @@ msgstr "Переглянути дамп (схему) таблиці" msgid "Invalid table name" msgstr "Неправильна назва таблиці" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15968,7 +15957,7 @@ msgid "at beginning of table" msgstr "На початку таблиці" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16017,7 +16006,7 @@ msgstr "розділений" msgid "Edit partitioning" msgstr "Видалити розділи" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Редагувати подання" @@ -16144,11 +16133,11 @@ msgstr "Назва подання" msgid "Column names" msgstr "Назви колонок" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Перейменувати подання на" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Видалити подання (DROP)" @@ -17432,6 +17421,18 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert встановлено у 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Всього %d закладка" +#~ msgstr[1] "Всього %d закладки" +#~ msgstr[2] "Всього %d закладок" + +#~ msgid "private" +#~ msgstr "закритий" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s та %3$s закладки включено" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/ur.po b/po/ur.po index 08ad349e1e..8d73474262 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Urdu " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "بطور مسل محفوظ کریں" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "دوبارہ سیٹ کریں" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "تمام منتخب کریں" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "فارم میں قدر موجود نہیں!" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "کم از کم لفظوں میں سے ایک" -#: js/messages.php:118 +#: js/messages.php:120 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid number!" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:119 +#: js/messages.php:121 #, fuzzy #| msgid "Please enter a valid length" msgid "Please enter a valid length!" msgstr "برائے مہربانی درست لمبائی داخل کیجیئے" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Add Index" msgid "Add index" msgstr "اشاریے کا اضافہ" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "تدوینِ اشاریہ" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "%s کا فیلڈ کالمز میں اضافہ کیجیئے" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "تخلیق کیا گیا" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "تخلیق کیا گیا" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Columns terminated by" msgid "Composite with:" msgstr "کالم کا خاتمہ" -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add %s column(s) to index" msgid "Please select column(s) for the index." msgstr "%s کا فیلڈ کالمز میں اضافہ کیجیئے" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "آپ کو کم از کم ایک کالم چننا ہو گا ڈسپے کیلئے۔" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "Update Query" msgid "Simulate query" msgstr "طلب تازہ کریں" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Startup" msgid "Matched rows:" msgstr "ابتدائیہ" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL طلب" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y قدریں" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "ہوسٹ نام خالی ہے!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "صارف کا نام خالی ہے!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "خفیہ لفظ خالی ہے!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "خفیہ الفاظ مشترک نہیں ہیں!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "منتخب صارفین حذف کیے جا رہے ہیں" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "بند" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template was created." msgstr "%s جدول" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The bookmark has been deleted." msgid "Template was deleted." msgstr "نشانی حذف ہو چکی ہے۔" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "علاوہ" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "تعلقات / عوامل" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "مقامی تنصیبات مطابقت نہیں رکھتیں" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1226,136 +1230,136 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "درخواست کیشے کی کارکردگی" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "درخواست کیشے کا استعمال" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "درخواست کیشے کا استعمال" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "CPU نظام کا استعمال" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "نظام کی یاداشت" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "تبدیل ھو نے والے نظام" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "اوسطاً بار" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "کُل یاداشت" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "ذخیرہ شدہ یاداشت" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "گئ یاداشت" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "بقیہ یاداشت" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "استعمال شدہ یاداشت" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "کل تبدادل" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "ذخیرہ شدہ تبادلہ" -#: js/messages.php:193 +#: js/messages.php:195 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "استعمال شدہ تبادلہ" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "بقیہ مبادلہ" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "بھیجے گئے بائٹس" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "موصول شدہ بائٹس" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "تعلقات" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "عموامل" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "بائٹ" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "کلو بائٹ" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "میگا بائٹ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "گیگا بائٹ" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "ٹیرا بائٹ" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "پیٹا بائٹ" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "ایگزا بائٹ" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1363,32 +1367,32 @@ msgid "%d table(s)" msgstr "%s جدول" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "سوالات" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "آمدورفت" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "ترتیبات" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "فلو چارٹ گرڈ میں اضافہ" -#: js/messages.php:218 +#: js/messages.php:220 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "براہ کرم سیریز کے باب میں کم از کم ایک متخیر کا اضافہ کریں" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1400,47 +1404,47 @@ msgstr "براہ کرم سیریز کے باب میں کم از کم ایک مت msgid "None" msgstr "کوئی بھی نہیں" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "پڑتال بحال کریں" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "پڑتال ٹھہرائیں" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log اور slow_query_log فعال ہیں۔" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log فعال ہے۔" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log فعال ہے۔" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log اور general_log غیر فعال ہیں۔" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output جدول کے لحاظ سے موزوں نہیں کیا ہوا۔" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output جدول کے لحاظ سے موزوں ہے۔" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1451,156 +1455,156 @@ msgstr "" "ہمارا مشورہ ہے کہ آپ long_query_time کا وقت صفر سے 2 ساعتیں رکھیں، یہ ترتیب " "آپ کے نظام پر مشتمل ہے۔" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, fuzzy, php-format #| msgid "Enable Ajax" msgid "Enable %s" msgstr "AJAX فعال کریں" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, fuzzy, php-format #| msgid "Disabled" msgid "Disable %s" msgstr "غیر فعال" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "جنرل ریلیشن فیچرز" -#: js/messages.php:254 +#: js/messages.php:256 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "جنرل ریلیشن فیچرز" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Default" msgid "Chart title" msgstr "ڈیفالٹ" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 #, fuzzy #| msgid "Loading" msgid "Analysing logs" msgstr "لوڈ کررہا ہے" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 #, fuzzy #| msgid "Cancel" msgid "Cancel request" msgstr "منسوخ کریں" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 #, fuzzy #| msgid "Jump to database" msgid "Jump to Log table" msgstr "کوائفیہ جائیں" -#: js/messages.php:285 +#: js/messages.php:287 #, fuzzy #| msgid "data" msgid "No data found" msgstr "کوائف" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 #, fuzzy #| msgid "Authenticating…" msgid "Analyzing…" msgstr "توثیق کررہا ہے…" -#: js/messages.php:290 +#: js/messages.php:292 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "SQL کی تفصیل بتائیں" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1608,7 +1612,7 @@ msgstr "SQL کی تفصیل بتائیں" msgid "Status" msgstr "حالت" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1618,100 +1622,100 @@ msgstr "حالت" msgid "Time" msgstr "وقت" -#: js/messages.php:293 +#: js/messages.php:295 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "میزان" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "تفصیلات" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "جدول" -#: js/messages.php:296 +#: js/messages.php:298 #, fuzzy #| msgid "Default" msgid "Chart" msgstr "ڈیفالٹ" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 #, fuzzy #| msgid "Tables display options" msgid "Log table filter options" msgstr "جداول دکھانے کے اختیارات" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 #, fuzzy #| msgid "Number of inserted rows" msgid "Sum of grouped rows:" msgstr "داخل شدہ صفوں کی تعداد" -#: js/messages.php:306 +#: js/messages.php:308 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "میزان" -#: js/messages.php:308 +#: js/messages.php:310 #, fuzzy #| msgid "Loading" msgid "Loading logs" msgstr "لوڈ کررہا ہے" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 #, fuzzy #| msgid "Reload Database" msgid "Reload page" msgstr "کوائفیہ پھر لوڈ کریں" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1720,75 +1724,75 @@ msgstr "" msgid "Import" msgstr "درآمد" -#: js/messages.php:326 +#: js/messages.php:328 #, fuzzy #| msgid "Configuration file" msgid "Import monitor configuration" msgstr "تشکیلی مسل" -#: js/messages.php:328 +#: js/messages.php:330 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import." msgstr "ایک بنیادی یا منفرد کلید منتخب کریں" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "طلب تازہ کریں" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "دستاویزات" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "" -#: js/messages.php:340 +#: js/messages.php:342 #, fuzzy #| msgid "Authentication" msgid "Justification" msgstr "توثیق" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "خراب کوائف!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1800,74 +1804,74 @@ msgstr "خراب کوائف!" msgid "Cancel" msgstr "منسوخ کریں" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "جنرل ریلیشن فیچرز" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy #| msgid "Loading" msgid "Loading…" msgstr "لوڈ کررہا ہے" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "فرمایش عمل کرتے ہوئے" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Gather errors" msgid "Request failed!!" msgstr "نقائص اکھٹی کریں" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "فرمایش عمل کرتے ہوئے نقص ہے" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "کالم چھوڑا جارہا ہے" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Adding Primary Key" msgid "Adding primary key" msgstr "بنیادی کلید شامل کررہا ہے" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1877,73 +1881,73 @@ msgstr "بنیادی کلید شامل کررہا ہے" msgid "OK" msgstr "ٹھیک ہے" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "کوائفیہ نام بدلا جارہا ہے" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "کوائفیہ نقل کیا جارہا ہے" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "کریکٹر سیٹ تبدیل کیا جارہا ہے" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "فارن کلید پڑتال غیر فعال کریں" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "سر تحریر حاصل کرنے میں ناکام ہوا" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "تلاش کر رہا ہے" -#: js/messages.php:384 +#: js/messages.php:386 #, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" msgstr "تلاش کسوٹی چھپائیں" -#: js/messages.php:385 +#: js/messages.php:387 #, fuzzy #| msgid "Show search criteria" msgid "Show search results" msgstr "تلاش کسوٹی دکھائیں" -#: js/messages.php:386 +#: js/messages.php:388 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "براؤز" -#: js/messages.php:387 +#: js/messages.php:389 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "حذف" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1959,49 +1963,49 @@ msgstr "" msgid "Export" msgstr "برآمد" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, fuzzy, php-format #| msgid "Values for the column \"%s\"" msgid "Values for column %s" msgstr "کالم کی قدریں\"%s\"" -#: js/messages.php:397 +#: js/messages.php:399 #, fuzzy #| msgid "Values for the column \"%s\"" msgid "Values for a new column" msgstr "کالم کی قدریں\"%s\"" -#: js/messages.php:398 +#: js/messages.php:400 #, fuzzy #| msgid "Enter each value in a separate field." msgid "Enter each value in a separate field." msgstr "ہر قدر جدا قطعہ میں داخل کریں۔" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "طلب خانہ چھپائیں" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "طلب خانہ دکھائیں" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -2011,7 +2015,7 @@ msgstr "طلب خانہ دکھائیں" msgid "Edit" msgstr "تدوین" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -2022,179 +2026,179 @@ msgstr "تدوین" msgid "Delete" msgstr "حذف" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Disabled" msgid "Variable %d:" msgstr "غیر فعال" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "Comments" msgid "Column selector" msgstr "آراء-رائے" -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "کوائفیہ میں تلاش کریں" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "بقیہ یاداشت" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "تعاون کریں" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "The primary key has been dropped." msgid "Primary key added." msgstr "بنیادی کلید چھوڑ دیا گیا ہے" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "کھوج رپورٹ" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "ہوچکا" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Check privileges for database \"%s\"." msgid "Create the following table" msgstr "کوائفیہ استحقاق کی پڑتال کریں \"%s\"." -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2204,433 +2208,433 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "تلاش کسوٹی چھپائیں" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "تلاش کسوٹی دکھائیں" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "تلاش" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Comments" msgid "Column maximum:" msgstr "آراء-رائے" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Comments" msgid "Column minimum:" msgstr "آراء-رائے" -#: js/messages.php:477 +#: js/messages.php:479 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "زیادہ سے زیادہ جداول" -#: js/messages.php:478 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "زیادہ سے زیادہ جداول" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "تلاش کسوٹی چھپائیں" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "تلاش کسوٹی دکھائیں" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "کالم اضافہ/حذف کریں" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "نظر انداز کریں" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "سطریں کے آخر میں" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Inner ring %d:" msgid "Inner ring" msgstr "اندرونی حد %d:" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "بیرونی حد:" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "محولہ کلید منتخب کریں" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "فارن کلید منتخب کریں" -#: js/messages.php:533 +#: js/messages.php:535 #, 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "کالم دکھانے کے لیے انتخاب کریں" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "صفحہ نمبر" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Open" msgid "Open page" msgstr "کھولیں" -#: js/messages.php:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "سارا منتخب کریں" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select a page to continue" msgstr "ایک بنیادی یا منفرد کلید منتخب کریں" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid page name" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "تعلق دار شجرہ کی تدوین یا برآمد کریں" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "تبدیلیاں محفوظ ہو چکی ہیں" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "کالم کے لیے ایک اختیار اضافہ کریں " -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Comments" msgid "Double-click to copy column name." msgstr "آراء-رائے" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "تمام دکھائیں" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Lines terminated by" msgid "Original length" msgstr "سطریں کے آخر میں" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "منسوخ کریں" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "طے شدہ درآمد" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "سارا منتخب کریں" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "چھاپیں" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy #| msgid "Logo link URL" msgid "Go to link:" msgstr "علامت ربط URL" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Comments" msgid "Copy column name." msgstr "آراء-رائے" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "پاس ورڈ بنائیں" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "بنائیں" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "مزید" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "تمام دکھائیں" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "اشاریے" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "بائیں جھروکہ میں علامت دکھائیں" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "مرکزی چوکھٹے کی تخصیص کریں" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "مرکزی چوکھٹے کی تخصیص کریں" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2640,122 +2644,122 @@ msgstr "" "%s, جاری کیا گیا %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", حالیہ مستحکم نسخہ:" -#: js/messages.php:648 +#: js/messages.php:650 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "کوائفیہ جائیں" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy #| msgid "Created" msgid "Create view" msgstr "تخلیق کیا گیا" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "جنرل ریلیشن فیچرز" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show color" msgid "Show report details" msgstr "کلر دکھائیں" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "نظر انداز کریں" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy msgid "Execute this query again?" msgstr "SQL طلب" -#: js/messages.php:700 +#: js/messages.php:702 #, 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:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "جدول تبصرے" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "Hide search criteria" msgid "Hide arguments" msgstr "تلاش کسوٹی چھپائیں" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2764,38 +2768,38 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "کوائفیہ نقل کریں بطرف" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Replace table data with file" msgid "Add table prefix" msgstr "جدول کوائف کو مسل سے بدلیں" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "جدول کوائف کو مسل سے بدلیں" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "جدول کوائف کو مسل سے بدلیں" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "پچھلا" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2803,149 +2807,149 @@ msgid "Next" msgstr "اگلا" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "آج" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "جنوری" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "فروری" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "مارچ" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "اپریل" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "مئی" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "جون" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "جولائی" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "اگست" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "ستمبر" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "اکتوبر" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "نومبر" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "دسمبر" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "جنوری" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "فروری" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "مارچ" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "اپریل" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "مئی" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "جون" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "جولائی" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "اگست" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "ستمبر" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "اکتوبر" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "نومبر" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "دسمبر" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "اتوار" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "پیر" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "منگل" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "بدھ" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "جمعرات" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "جمعہ" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "ہفتہ" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2953,207 +2957,207 @@ msgid "Sun" msgstr "اتوار" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "پیر" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "منگل" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "بدھ" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "جمعرات" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "جمعہ" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "ہفتہ" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "اتوار" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "پیر" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "منگل" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "بدھ" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "جمعرات" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "جمعہ" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "ہفتہ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "Done" msgctxt "Year suffix" msgid "none" msgstr "ہوچکا" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "گھنٹہ" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "منٹ" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "سیکنڈ" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Text fields" msgid "Please fix this field" msgstr "متن قطعے" -#: js/messages.php:886 +#: js/messages.php:888 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid email address" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:887 +#: js/messages.php:889 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid URL" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date ( ISO )" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid number" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid credit card number" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "Please enter a valid length" msgid "Please enter only digits" msgstr "برائے مہربانی درست لمبائی داخل کیجیئے" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter the same value again" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter at least {0} characters" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a value between {0} and {1}" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:925 +#: js/messages.php:927 #, fuzzy #| msgid "Please enter a valid length" msgid "Please enter a value less than or equal to {0}" msgstr "برائے مہربانی درست لمبائی داخل کیجیئے" -#: js/messages.php:930 +#: js/messages.php:932 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a value greater than or equal to {0}" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date or time" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid HEX input" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "نقص" @@ -3204,34 +3208,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "فانٹ سائز" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "Submit Query" msgid "Requery" msgstr "Submit Query" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3250,93 +3254,74 @@ msgid "Database" msgstr "کوائفیہ" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Search" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "تلاش" -msgstr[1] "تلاش" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "حصہ دارانہ" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "نشانی حذف ہو چکی ہے۔" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Search" msgid "No bookmarks" msgstr "تلاش" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "SQL کی تفصیل بتائیں" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "تفصیلات" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Bookmark table" msgid "Bookmark" msgstr "جدول نشان کریں" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Gather errors" msgid "Query failed" msgstr "نقائص اکھٹی کریں" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "Maximum execution time" msgid "Queried time" msgstr "چلنے کی حد اوقات" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "SQL طلب خانہ" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL Validator" msgid "History" msgstr "SQL جواز دھندہ" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3354,197 +3339,197 @@ msgstr "SQL جواز دھندہ" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Bookmark table" msgid "Bookmarks" msgstr "جدول نشان کریں" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "SQL ٹھیک کریں" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy msgid "Press Ctrl+Enter to execute query" msgstr "SQL طلب" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy msgid "Press Enter to execute query" msgstr "SQL طلب" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "صعودی" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "نزولی" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Command" msgid "Count" msgstr "کالم" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Default sorting order" msgid "Execution order" msgstr "طے شدہ چھانٹی ترتیب" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "SQL طلب" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "SQL طلب" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "کلر دکھائیں" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Indexes" msgid "Hide trace" msgstr "اشاریے" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Command" msgid "Count:" msgstr "کالم" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "تازہ کریں" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "اور" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Search" msgid "Add bookmark" msgstr "تلاش" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label key" msgid "Label" msgstr "سرنامہ کلید" -#: libraries/Console.php:357 +#: libraries/Console.php:339 #, fuzzy #| msgid "Create Table" msgid "Target database" msgstr "جدول بنائیں" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Search" msgid "Share this bookmark" msgstr "تلاش" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Restore default value" msgid "Set default" msgstr "طے شدہ قدر بحال کریں" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "SQL query history table" msgid "Show query history at start" msgstr "SQL طلب لاگ جدول" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied database" msgid "Switch to dark theme" msgstr "نقل شدہ کوائفیہ پر جائیں" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Configuration file" msgid "Failed to set configured collation connection!" msgstr "تشکیلی مسل" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3910,7 +3895,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4041,18 +4026,18 @@ msgstr "مسل قسم کی وجہ سے اپ لوڈ روکا گیا۔" msgid "Unknown error in file upload." msgstr "اپ لوڈ مسل میں نامعلوم نقص ہے۔" -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "اپ لوڈ مسل کو بڑھاتے ہوئے نقص ہے, دیکھیں [doc@faq1-11]عمومی سوالات 1.11[/doc]" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4118,8 +4103,8 @@ msgid "Keyname" msgstr "کلید نام" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4169,13 +4154,13 @@ msgstr "اشاریہ %s چھوڑ دیا گیا ہے۔" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "گرائیں" @@ -4275,7 +4260,7 @@ msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "عملیات" @@ -4290,7 +4275,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4699,11 +4684,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "اس خیالیہ %s کے لیے درست راہ نہیں ملا!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "کوئی پیش منظر دستیاب نہیں ہے۔" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "اسے لیں" @@ -4976,21 +4961,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "میزان" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "زیادہ سے زیادہ: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5001,38 +4986,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL نے کہا: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL کی تفصیل بتائیں" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "SQL وضاحت کو چھوڑیں" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP کوڈ کے بغیر" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "طلب بھیجیں" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP کوڈ بنائیں" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5126,6 +5111,10 @@ msgstr "" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "حصہ دارانہ" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "تلاش کريں:" @@ -5244,44 +5233,44 @@ msgstr "فیلڈ کالمز شامل یا ختم کریں" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Configuration file" msgid "Failed to read configuration file!" msgstr "تشکیلی مسل" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "طے شدہ تشکیلات کو لوڈ نہیں کرسکا: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "غلط سرور اشاریہ: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "سرور کے لیے ہوسٹ نام غلط ہے %1$s. اپنے تشکیل کا جائزہ لیں۔" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "سرور" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "غلط توثیقی طریقہ تشکیل میں دیا گیا ہے:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5289,24 +5278,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "آپ اس سے درجہ فزوں کریں %s %s یا بعد۔" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6073,7 +6062,7 @@ msgstr "کالم نام پہلے صف میں ڈالیں" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Columns enclosed by" msgid "Columns enclosed with" @@ -6081,7 +6070,7 @@ msgstr "کالم بند کیا گئے ہیں" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Columns escaped by" msgid "Columns escaped with" @@ -6103,14 +6092,14 @@ msgstr "کالم کے اندر CRLF حروف ہٹائیں" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Columns terminated by" msgid "Columns terminated with" msgstr "کالم کا خاتمہ" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -6795,7 +6784,7 @@ msgid "Column names in first row" msgstr "کالم نام پہلے صف میں ہوں" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "خالی صفیں درآمد مت کریں" @@ -8521,7 +8510,7 @@ msgid "Table %s has been emptied." msgstr "جدول %s خالی ہوچکا ہے" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -8658,8 +8647,8 @@ msgid "No data to display" msgstr "کوائف" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -8705,57 +8694,57 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "کوائفیہ %s چھوڑ دیا گیا ہے۔" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Gather errors" msgid "Query error" msgstr "نقائص اکھٹی کریں" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -8767,7 +8756,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -9550,58 +9539,58 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Jump to database" msgid "Go to database: %s" msgstr "کوائفیہ جائیں" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "کوائف نہیں ملا برائے %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "Count tables" msgid "Go to table: %s" msgstr "حداول کی گنتی کریں" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "صرف ساخت" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -9649,55 +9638,55 @@ msgstr "یا" msgid "web server upload directory:" msgstr "ویب سرور اپ لوڈ پوشہ سے منتخب کریں %s:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "داخل کریں" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "اور پھر" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -9709,11 +9698,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -10594,7 +10583,7 @@ msgstr "جدول مرمت کریں" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" @@ -10611,32 +10600,32 @@ msgid "Delete the table (DROP)" msgstr "ڈیٹا بیس کاپی کریں" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -10664,37 +10653,37 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -10872,7 +10861,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -10898,21 +10887,21 @@ msgstr "وضاحت" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -11020,7 +11009,7 @@ msgid "Database:" msgstr "کوائفیہ" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11133,7 +11122,7 @@ msgid "Data creation options" msgstr "عمل" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11202,7 +11191,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11250,60 +11239,60 @@ msgstr "استعمال میں ہے" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for dumped tables" msgstr "جدول میں:" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "جدول میں:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "صفر قدروں کے لیے AUTO_INCREMENT استعمال مت کریں" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT قدر اضافہ کریں" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -11337,7 +11326,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -11357,33 +11346,33 @@ msgstr "" msgid "Column names: " msgstr "آراء-رائے" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -11391,28 +11380,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document" msgid "Could not parse OpenDocument Spreadsheet!" @@ -11422,23 +11411,23 @@ msgstr "اوپن دستاویز" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -11452,7 +11441,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "" @@ -14393,15 +14382,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "Removing Selected Users" @@ -14416,17 +14401,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "Removing Selected Users" msgid "An alias was expected." @@ -14448,19 +14434,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The bookmark has been deleted." msgid "A rename operation was expected." @@ -14491,17 +14477,17 @@ msgstr "کوائفیہ $1%s بن گئی ہے۔" msgid "Variable name was expected." msgstr "جدول نام سانچا" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "Show dimension of tables" msgid "Unexpected beginning of statement." msgstr "ٹیبلز کی جسامت دیکھیں" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -14522,17 +14508,17 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The bookmark has been deleted." msgid "At least one column definition was expected." msgstr "نشانی حذف ہو چکی ہے۔" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -15230,7 +15216,7 @@ msgstr "" msgid "Invalid table name" msgstr "غلط جدول نام" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -16327,7 +16313,7 @@ msgid "at beginning of table" msgstr "ٹیبلز کی جسامت دیکھیں" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Relations" msgid "Partitions" @@ -16372,7 +16358,7 @@ msgstr "تعلقات" msgid "Edit partitioning" msgstr "تدوین موڈ" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -16504,11 +16490,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Copy database to" msgid "Delete the view (DROP)" @@ -17666,6 +17652,18 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Search" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "تلاش" +#~ msgstr[1] "تلاش" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "نشانی حذف ہو چکی ہے۔" + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/uz.po b/po/uz.po index f585703657..539d1b6251 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-10-15 11:39+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Файл каби сақлаш" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Тозалаш" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Барчасини белгилаш" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Форманинг керакли майдонлари тўлдирилмаган!" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "сўзлардан бири" -#: js/messages.php:118 +#: js/messages.php:120 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number!" msgstr "Нотўғри порт номери" -#: js/messages.php:119 +#: js/messages.php:121 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid length!" msgstr "Нотўғри порт номери" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Apply index(s)" msgid "Add index" msgstr "Индекс(лар)ни сақлаш" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "Таҳрирлаш усули" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s) to index" msgstr "Устун(лар) қўшиш" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Боғлиқлик ўрнатиш" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Боғлиқлик ўрнатиш" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Майдон қийматлари қуйидаги белги ичига олинган " -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add column(s)" msgid "Please select column(s) for the index." msgstr "Устун(лар) қўшиш" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Ҳеч бўлмаганда битта майдон киритиш шарт." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "сўров бўйича" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Latched pages" msgid "Matched rows:" msgstr "Блокировка қилинган саҳифалар сони" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL сўрови" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Қиймати" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Хост номи бўш!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Фойдаланувчи номи белгиланмаган!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Парол белгиланмаган!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Киритилган пароллар бир хил эмас!" -#: js/messages.php:148 +#: js/messages.php:150 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Белгиланган фойдаланувчиларни ўчириш" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Ёпиш" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Тузилган саҳифалар сони." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Профил янгиланди." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Ёзув ўчирилди" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "," -#: js/messages.php:164 +#: js/messages.php:166 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Уланишлар" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Local monitor configuration incompatible!" msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1312,182 +1316,182 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Сўровлар кеши" -#: js/messages.php:177 +#: js/messages.php:179 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Сўровлар кеши" -#: js/messages.php:178 +#: js/messages.php:180 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Сўровлар кеши" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "Ишлатилиш" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "Журнал файллари сони" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Буфер пули" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Жами" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Фойдаланилаётган жой" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "Бўш саҳифалар сони " -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Қабул қилинди" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Уланишлар" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Жараёнлар" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "Байт" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "КБ" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "ЭБ" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "Жадваллар сони: \"%s\"" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 #, fuzzy #| msgid "Versions" msgid "Questions" msgstr "Версиялар" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "settings" msgid "Settings" msgstr "танловлар" -#: js/messages.php:215 +#: js/messages.php:217 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Тўрга боғлаб қўйиш" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1499,47 +1503,47 @@ msgstr "" msgid "None" msgstr "Йўқ" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1547,160 +1551,160 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Файл каби сақлаш" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Фаоллаштирилган" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Фаолсизлантириш" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "Сўров %01.4f секунд вақт олди" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 #, fuzzy #| msgid "Other core settings" msgid "Change settings" msgstr "Бошқа созланишлар" -#: js/messages.php:254 +#: js/messages.php:256 #, fuzzy #| msgid "settings" msgid "Current settings" msgstr "танловлар" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Ҳисобот сарлавҳаси" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 #, fuzzy #| msgid "Difference" msgid "Differential" msgstr "Фарқ" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 #, fuzzy #| msgid "Load" msgid "Analysing logs" msgstr "Юклаш" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Ўқишга рухсат сўраш" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 #, fuzzy #| msgid "Go to database" msgid "Jump to Log table" msgstr "Ушбу базага ўтиш" -#: js/messages.php:285 +#: js/messages.php:287 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Маълумотлар базаси мавжуд эмас" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Таҳлил" -#: js/messages.php:290 +#: js/messages.php:292 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Сўров таҳлили" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1708,7 +1712,7 @@ msgstr "Сўров таҳлили" msgid "Status" msgstr "Ҳолат" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1718,100 +1722,100 @@ msgstr "Ҳолат" msgid "Time" msgstr "Вақт" -#: js/messages.php:293 +#: js/messages.php:295 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Жами" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Профиллаштириш" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Жадвал " -#: js/messages.php:296 +#: js/messages.php:298 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Кодировка" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 #, fuzzy #| msgid "Tables display options" msgid "Log table filter options" msgstr "Жадваллар кўринишини созлаш" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Фильтр" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 #, fuzzy #| msgid "Number of inserted rows" msgid "Sum of grouped rows:" msgstr "Қўйилган қаторлар сони" -#: js/messages.php:306 +#: js/messages.php:308 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Жами" -#: js/messages.php:308 +#: js/messages.php:310 #, fuzzy #| msgid "Load" msgid "Loading logs" msgstr "Юклаш" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Қайта юклаш" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1820,77 +1824,77 @@ msgstr "" msgid "Import" msgstr "Импорт" -#: js/messages.php:326 +#: js/messages.php:328 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "\"%1$s\" файлидан андоза конфигурацияни юклаб бўлмади." -#: js/messages.php:328 +#: js/messages.php:330 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import." msgstr "Бирламчи (PRIMARY) ёки уникал (UNIQUE) индекс бўлган майдонни танланг!" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Сўровни янгилаш" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Документация" -#: js/messages.php:339 +#: js/messages.php:341 #, fuzzy #| msgid "Details…" msgid "Rule details" msgstr "Тафсилотлар…" -#: js/messages.php:340 +#: js/messages.php:342 #, fuzzy #| msgid "Customization" msgid "Justification" msgstr "Мослашлар" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "Параметрлар нотугри!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1902,74 +1906,74 @@ msgstr "Параметрлар нотугри!" msgid "Cancel" msgstr "Бекор қилиш" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Other core settings" msgid "Page-related settings" msgstr "Бошқа созланишлар" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy #| msgid "Load" msgid "Loading…" msgstr "Юклаш" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Жараёнлар" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Сўровлар кеши" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Жараёнлар" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Биронта ҳам маълумотлар базаси танланмаган." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Procedure" msgid "Dropping column" msgstr "Муолажалар" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add column(s)" msgid "Adding primary key" msgstr "Устун(лар) қўшиш" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1979,74 +1983,74 @@ msgstr "Устун(лар) қўшиш" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Маълумотлар базасидан қуйидагига нусха олиш" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Кодировка" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Ташқи калитларни текширишни ўчириш" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy msgid "Failed to get real row count." msgstr "Файлни дискка ёзишдахатолик юз берди." -#: js/messages.php:383 +#: js/messages.php:385 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Қидириш" -#: js/messages.php:384 +#: js/messages.php:386 #, fuzzy #| msgid "SQL Query box" msgid "Hide search results" msgstr "SQL сўровлари қутиси" -#: js/messages.php:385 +#: js/messages.php:387 #, fuzzy #| msgid "SQL Query box" msgid "Show search results" msgstr "SQL сўровлари қутиси" -#: js/messages.php:386 +#: js/messages.php:388 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Кўриб чиқиш" -#: js/messages.php:387 +#: js/messages.php:389 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "\"%s\" ўчирилмоқда" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -2062,49 +2066,49 @@ msgstr "" msgid "Export" msgstr "Экспорт" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "%s устуни учун қийматлар" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, fuzzy, php-format #| msgid "Add a new server" msgid "Add %d value(s)" msgstr "Янги фойдаланувчи қўшиш" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 #, fuzzy #| msgid "SQL Query box" msgid "Hide query box" msgstr "SQL сўровлари қутиси" -#: js/messages.php:408 +#: js/messages.php:410 #, fuzzy #| msgid "SQL Query box" msgid "Show query box" msgstr "SQL сўровлари қутиси" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -2114,7 +2118,7 @@ msgstr "SQL сўровлари қутиси" msgid "Edit" msgstr "Таҳрирлаш" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -2125,94 +2129,94 @@ msgstr "Таҳрирлаш" msgid "Delete" msgstr "Ўчириш" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d сони тўғри қатор рақами эмас." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Ташқи қийматларни кўриб чиқиш" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Ўзгарувчи" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак." -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Маълумотлар базасида қидириш" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Атрибутлар" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "\"%s\" га бирламчи калит қўшилди" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Кузатиш ҳисоботи" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2220,92 +2224,92 @@ msgstr "" msgid "End of step" msgstr "Сатр охири" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Садақа" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Биронта ҳам маълумотлар базаси танланмаган." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "Қуйидаги сўровлар бажарилди:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Қуйидаги жадвалга привилегия қўшиш" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Биронта ҳам маълумотлар базаси танланмаган." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2315,449 +2319,449 @@ msgstr "Биронта ҳам маълумотлар базаси танланм msgid "Save" msgstr "Сақлаш" -#: js/messages.php:472 +#: js/messages.php:474 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "SQL сўровлари қутиси" -#: js/messages.php:473 +#: js/messages.php:475 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "SQL сўровлари қутиси" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Қидириш" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Майдон номлари" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Майдон номлари" -#: js/messages.php:477 +#: js/messages.php:479 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "Максимал жадваллар сони" -#: js/messages.php:478 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "Максимал жадваллар сони" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy #| msgid "SQL Query box" msgid "Hide find and replace criteria" msgstr "SQL сўровлари қутиси" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy #| msgid "SQL Query box" msgid "Show find and replace criteria" msgstr "SQL сўровлари қутиси" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Устун қўшиш/ўчириш" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Маълумотлар файли кўрсатгичи ҳажми" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Эътибор бермаслик" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Қаторлар бўлувчиси" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Янги фойдаланувчи қўшиш" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Қаторлар бўлувчиси" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Боғлиқ калитни танланг" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Ташқи калитни танланг" -#: js/messages.php:533 +#: js/messages.php:535 #, 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Саҳифа рақами: " -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Жадвалларни танланг" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Таҳрирлаш лозим бўлган саҳифани танлаш" -#: js/messages.php:546 +#: js/messages.php:548 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Нотўғри порт номери" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Алоқалар схемасини тахрирлаш ёки экспорт қилиш" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Ўзгариришлар сақланди" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Values for column %s" msgid "Add an option for column \"%s\"." msgstr "%s устуни учун қийматлар" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Бажариш" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Майдон номлари" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Барчасини кўрсатиш" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Асл позиция" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Бекор қилиш" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Узилди" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Импорт" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Журнал файли остонаси" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Жадвалларни танланг" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Чоп этиш" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy #| msgid "Go to view" msgid "Go to link:" msgstr "Ушбу кўринишга ўтиш" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Майдон номлари" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Парол ўрнатиш" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Генерация қилиш" -#: js/messages.php:628 +#: js/messages.php:630 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Душ" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Барчасини кўрсатиш" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Apply index(s)" msgid "Hide panel" msgstr "Индекс(лар)ни сақлаш" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Чап рамкада логотипни кўрсатиш" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Асосий рамкани мослаштириш" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Асосий рамкани мослаштириш" -#: js/messages.php:639 +#: js/messages.php:641 #, 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2768,129 +2772,129 @@ msgstr "" "чиқарилган." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Охирги версияни текшириш" -#: js/messages.php:648 +#: js/messages.php:650 #, fuzzy #| msgid "Go to database" msgid "up to date" msgstr "Ушбу базага ўтиш" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Версиясини тузиш" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Сервер порти" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Сервер порти" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Other core settings" msgid "Change report settings" msgstr "Бошқа созланишлар" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Очиқ жадваллар рўйхати" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Эътибор бермаслик" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Ушбу сўровни қайта кўрсатиш" -#: js/messages.php:700 +#: js/messages.php:702 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL сўровлари" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Жадвал изоҳи" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "SQL Query box" msgid "Hide arguments" msgstr "SQL сўровлари қутиси" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2899,36 +2903,36 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Маълумотлар базасидан қуйидагига нусха олиш" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Apply index(s)" msgid "Add table prefix" msgstr "Индекс(лар)ни сақлаш" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Жадвал префиксини алмаштириш" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Жадвални префикси билан нусхалаш" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Орқага" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2936,96 +2940,96 @@ msgid "Next" msgstr "Кейинги" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Жами" -#: js/messages.php:755 +#: js/messages.php:757 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Иккилик" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Мар" -#: js/messages.php:758 +#: js/messages.php:760 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Апр" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Май" -#: js/messages.php:760 +#: js/messages.php:762 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Июн" -#: js/messages.php:761 +#: js/messages.php:763 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Июл" -#: js/messages.php:762 +#: js/messages.php:764 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Авг" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Окт" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -3033,78 +3037,78 @@ msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Дек" -#: js/messages.php:801 +#: js/messages.php:803 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Якш" -#: js/messages.php:802 +#: js/messages.php:804 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Душ" -#: js/messages.php:803 +#: js/messages.php:805 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Сеш" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Жум" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3112,86 +3116,86 @@ msgid "Sun" msgstr "Якш" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Душ" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Сеш" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Чор" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Пай" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Жум" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Шан" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Якш" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Душ" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Сеш" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Чор" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пай" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Жум" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Шан" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3200,139 +3204,139 @@ msgstr "Вики" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Йўқ" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ишлатилмоқда" -#: js/messages.php:873 +#: js/messages.php:875 #, fuzzy #| msgid "per second" msgid "Second" msgstr "секундига" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Матнмайдонини ишлатиш" -#: js/messages.php:886 +#: js/messages.php:888 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Нотўғри порт номери" -#: js/messages.php:887 +#: js/messages.php:889 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Нотўғри порт номери" -#: js/messages.php:888 +#: js/messages.php:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Нотўғри порт номери" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Нотўғри порт номери" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Нотўғри порт номери" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Нотўғри порт номери" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Нотўғри порт номери" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Нотўғри порт номери" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Нотўғри порт номери" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Нотўғри порт номери" -#: js/messages.php:925 +#: js/messages.php:927 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "Нотўғри порт номери" -#: js/messages.php:930 +#: js/messages.php:932 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "Нотўғри порт номери" -#: js/messages.php:936 +#: js/messages.php:938 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Нотўғри порт номери" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Нотўғри порт номери" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Хатолик" @@ -3384,34 +3388,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Шрифт ўлчами" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "in query" msgid "Requery" msgstr "сўров бўйича" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3430,94 +3434,76 @@ msgid "Database" msgstr "Маълумотлар базаси" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Delete relation" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Боғлиқликни ўчириш" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" +msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "Хатчўп ўчирилди." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Боғлиқликни ўчириш" -#: libraries/Console.php:186 +#: libraries/Console.php:168 #, fuzzy #| msgid "Skip current error" msgid "During current session" msgstr "Жорий хатоликларни ташлаб кетиш" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "Сўров таҳлили" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Профиллаштириш" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Bookmark table" msgid "Bookmark" msgstr "Хатчўплар жадвали" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query cache" msgid "Query failed" msgstr "Сўровлар кеши" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "Maximum execution time" msgid "Queried time" msgstr "Максимум бажарилиш вақти" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "SQL сўровлари қутиси" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Тозалаш" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "SQL-сўровлар тарихи" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3535,179 +3521,179 @@ msgstr "SQL-сўровлар тарихи" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Параметрлар" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Bookmark table" msgid "Bookmarks" msgstr "Хатчўплар жадвали" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Ctrl+Enter to execute query" msgstr "Белгиланган сўровни бажариш" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Enter to execute query" msgstr "Белгиланган сўровни бажариш" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "Ўсиш тартибида" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Камайиш тартибида" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column" msgid "Count" msgstr "Устун" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execution order" msgstr "Белгиланган сўровни бажариш" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "SQL сўровлари" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "SQL сўровлари" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Рангда кўрсатиш" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Apply index(s)" msgid "Hide trace" msgstr "Индекс(лар)ни сақлаш" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column" msgid "Count:" msgstr "Устун" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Янгилаш" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "Ва" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Delete relation" msgid "Add bookmark" msgstr "Боғлиқликни ўчириш" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "Хатчўп белгиси" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Нишон база" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Delete relation" msgid "Share this bookmark" msgstr "Боғлиқликни ўчириш" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Restore default value" msgid "Set default" msgstr "Асл қийматларни тиклаш" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "SQL query history table" msgid "Show query history at start" msgstr "SQL сўровлари тарихи жадвали" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Нусха олинган жадвалга ўтиш" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Failed to set configured collation connection!" msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3715,21 +3701,21 @@ msgid "" "configured)." msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сервер жавоб бермаяпти" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Тафсилотлар…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "\"config.inc.php\" конфигурацион файлининг \"controluser\" директивасида " @@ -4098,7 +4084,7 @@ msgstr "Тахминий бўлиши мумкин. [doc@faq3-11]\"FAQ 3.11\"[/d #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4236,7 +4222,7 @@ msgstr "Файлнинг юкланиши унинг кенгайтмаси са msgid "Unknown error in file upload." msgstr "Файл юкланаётган вақтда номаълум хатолик юз берди." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -4244,11 +4230,11 @@ msgstr "" "Юкланган файл жойини ўзгартиришда хатолик, [doc@faq1-11]\"FAQ 1.11\"[/doc]га " "қаранг" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4316,8 +4302,8 @@ msgid "Keyname" msgstr "Индекс номи" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4367,13 +4353,13 @@ msgstr "\"%s\" индекси ўчирилди." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Ўчириш" @@ -4471,7 +4457,7 @@ msgstr "Привилегиялар" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Операциялар" @@ -4486,7 +4472,7 @@ msgstr "Кузатиш" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4904,11 +4890,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "\"%s\" мавзуси расмларига тўғри йўл топилмади!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Олдиндан кўриш мумкин эмас." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "Тадбиқ қилиш" @@ -5181,21 +5167,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Журнал файллари сони" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Максимал ҳажми: \"%s\"%s\"" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5206,38 +5192,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL жавоби: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Сўров таҳлили" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Таҳлил керак эмас" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP-код олиб ташлаш" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "сўровни бажариш" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP-код" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5338,6 +5324,10 @@ msgstr "соатига" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5458,49 +5448,49 @@ msgstr "Устун(лар) қўшиш" msgid "Attributes" msgstr "Атрибутлар" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Failed to read configuration file!" msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "\"%1$s\" файлидан андоза конфигурацияни юклаб бўлмади." -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Сервер рақами нотўғри: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s сервери учун нотўғри хост номи кўрсатилган. phpMyAdmin конфигурацион " "файлида белгиланган созлашларни тўғирланг." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Сервер" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" "phpMyAdmin конфигурацион файлида нотўғри аутентификация усули белгиланган:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5508,24 +5498,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "\"%s\" ни \"%s\" версияга ёки каттароқ версияга янгилаш зарур." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6418,7 +6408,7 @@ msgstr "Майдон номларини биринчи қаторга жойла #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6426,7 +6416,7 @@ msgstr "Майдон қийматлари қуйидаги белги ичига #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6450,14 +6440,14 @@ msgstr "Майдонлар ичидаги сатрдан-сатрга кўчир #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Қаторлар бўлувчиси" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -7157,7 +7147,7 @@ msgid "Column names in first row" msgstr "Биринчи қаторга устун номлари" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Бўш қаторларни импорт қилмаслик" @@ -9010,7 +9000,7 @@ msgid "Table %s has been emptied." msgstr "\"%s\" жадвали тозаланди." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -9153,8 +9143,8 @@ msgid "No data to display" msgstr "Маълумотлар базаси мавжуд эмас" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -9204,57 +9194,57 @@ msgstr[1] "" msgid "No column selected." msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Ignore errors" msgid "Query error" msgstr "Хатоларга эътибор бермаслик" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Ўзгартириш" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Индекс" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Матн тўлалигича" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -9266,7 +9256,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Ўзгариш йўқ" @@ -10149,20 +10139,20 @@ msgstr "MySQL бўш натижа берди (яъни нольта сатр)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Қуйидаги тузилишлар ё тузилди ё ўзгартирилди. Бу ерда сиз қуйидаги амалларни " "бажаришингиз мумкин:" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 #, 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:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -10170,47 +10160,47 @@ msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "Қуйидаги танловларни ўзгартириш учун, \"Танловлар\" боғига босинг" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link." msgstr "Тузилмани ўзгартириш учун, \"Тузилма\" боғига киринг" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Ушбу базага ўтиш" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "\"%s\" майдонида маълумот йўқ" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Ушбу жадвалга ўтиш" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Фақат тузилиши" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Ушбу кўринишга ўтиш" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -10261,51 +10251,51 @@ msgstr "Ёки" msgid "web server upload directory:" msgstr "Юклаш каталогидан" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Қўйиш" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Қўйилаётган қаторлар сони: \"%s\"" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "ва сўнг" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Ёзув киритиш" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Янги қатор сифатида қўшиш ва хатоликларга эътибор бермаслик" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Киритилган сўровни кўрсатиш" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Олдинги саҳифага ўтиш" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Янги ёзув киритиш" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Ушбу саҳифага қайтиш" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Кейинги қаторни таҳрирлаш" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -10314,7 +10304,7 @@ msgid "" msgstr "" "Майдонлараро ўтиш учун TAB тугмаси ёки CTRL+стрелка тугмаларидан фойдаланинг" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -10326,11 +10316,11 @@ msgstr "" msgid "Value" msgstr "Қиймати" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "SQL-сўровни кўрсатиш" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Киритилган қатор идентификатори: %1$d" @@ -11222,7 +11212,7 @@ msgstr "Жадвални тиклаш" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" @@ -11239,32 +11229,32 @@ msgid "Delete the table (DROP)" msgstr "Ушбу базага ўтиш" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Таҳлил" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Текшириш" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Оптимизация" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Қайта қуриш" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Тиклаш" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -11292,37 +11282,37 @@ msgstr "Бўлакларни (PARTITIONS) ўчириш" msgid "Check referential integrity:" msgstr "Маълумотлар яхлитлигини текшириш:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Жадвални ўз-ўзига кўчириб бўлмайди!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Жадвалнинг ўзидан ўзига нусха кўчириш мумкин эмас!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "\"%s\" жадвали \"%s\" га кўчирилди." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "\"%s\" жадвалидан \"%s\" га нусха кўчирилди." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Жадвал номи кўрсатилмаган!" @@ -11524,7 +11514,7 @@ msgstr "Маълумотлар базаларини кўрсатиш афзал #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Жадвал маълумотларини дамп қилиш" @@ -11550,21 +11540,21 @@ msgstr "Тавсифи" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Жадвал тузилиши" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Намойиш этиш учун тузилма" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Намойиш этиш учун тузилма" @@ -11678,7 +11668,7 @@ msgid "Database:" msgstr "Маълумотлар базаси" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11796,7 +11786,7 @@ msgid "Data creation options" msgstr "Ўгиришлар параметрлари" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11865,7 +11855,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11911,61 +11901,61 @@ msgstr "ишлатилмоқда" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Сақланган жадвалларнинг ташқи калитида чекловлар" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Жадвалларнинг ташқи калитида чекловлар" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Сақланган жадвалларнинг ташқи калитида чекловлар" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "Жадваллардан:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "AUTO_INCREMENT for dumped tables" msgstr "Ноль қийматлари учун \"AUTO_INCREMENT\" ишлатмаслик" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT қўшиш" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "ЖАДВАЛ УЧУН MIME ТУРЛАРИ" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "Жадвал алоқалари" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Намойиш этиш учун тузилма" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -12001,7 +11991,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -12021,36 +12011,36 @@ msgstr "" msgid "Column names: " msgstr "Майдон номлари" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV импортидаги парамерт нотўғри: \"%s\"" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" "Киритилаётган CSV маълумотларнинг %d қаторидаги маълумотлар формати нотўғри." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "" "Киритилаётган CSV маълумотларнинг %d қаторидаги майдонлар сони нотўғри." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Ушбу модул қисилган маълумотларни импорт қила олмайди!" @@ -12058,29 +12048,29 @@ msgstr "Ушбу модул қисилган маълумотларни импо msgid "MediaWiki Table" msgstr "MediaWiki жадвали" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." msgstr "" "Киритилаётган CSV маълумотларнинг %d қаторидаги маълумотлар формати нотўғри." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" "Фоизларни мос ўнли касрлар каби импорт қилиш (масалан, 12.00% ўрнига 0.12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 #, fuzzy #| msgid "Import currencies ($5.00 to 5.00)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Пул бирликларини импорт қилиш (масалан, $5.00 ни 5.00 га)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -12088,7 +12078,7 @@ msgstr "" "Кўрсатилган XML файл ё нотўғри тузилган ё чала. Уни тўғирлаб, қайта ҳаракат " "қилиб кўринг." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -12098,23 +12088,23 @@ msgstr "Open Document жадвали" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -12132,7 +12122,7 @@ msgstr "SQL билан мослик режими" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ноль қийматлари учун \"AUTO_INCREMENT\" ишлатмаслик" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -15490,15 +15480,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -15513,17 +15499,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -15545,23 +15532,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Очиқ жадваллар сони." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Очиқ жадваллар сони." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -15592,17 +15579,17 @@ msgstr "%1$s жадвали тузилди." msgid "Variable name was expected." msgstr "Жадвал номи шаблони" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Жадвал бошига" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -15623,19 +15610,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "Ёзув ўчирилди" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -16380,7 +16367,7 @@ msgstr "Жадвал дампини (схемасини) намойиш этиш msgid "Invalid table name" msgstr "Жадвал номи нотўғри" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -17531,7 +17518,7 @@ msgid "at beginning of table" msgstr "Жадвал бошига" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -17580,7 +17567,7 @@ msgstr "бўлакларга бўлинган" msgid "Edit partitioning" msgstr "Бўлакларни (PARTITIONS) ўчириш" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17716,11 +17703,11 @@ msgstr "Ном кўриниши" msgid "Column names" msgstr "Майдон номлари" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Кўриниш номини ўзгартириш" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Go to database" msgid "Delete the view (DROP)" @@ -18922,6 +18909,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Максимал уланишлар сони " +#, fuzzy +#~| msgid "Delete relation" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Боғлиқликни ўчириш" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "Хатчўп ўчирилди." + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/uz@latin.po b/po/uz@latin.po index 668e125742..25bbe22f9c 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-12-29 19:19+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek (latin) " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Fayl kabi saqlash" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Tozalash" -#: js/messages.php:113 +#: js/messages.php:115 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Barchasini belgilash" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Formaning kerakli maydonlari to‘ldirilmagan!" -#: js/messages.php:117 +#: js/messages.php:119 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "so‘zlardan biri" -#: js/messages.php:118 +#: js/messages.php:120 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number!" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:119 +#: js/messages.php:121 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid length!" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:120 +#: js/messages.php:122 #, fuzzy #| msgid "Apply index(s)" msgid "Add index" msgstr "Indеks(lar)ni saqlash" -#: js/messages.php:121 +#: js/messages.php:123 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "Tahrirlash usuli" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s) to index" msgstr "Ustun(lar) qo‘shish" -#: js/messages.php:123 +#: js/messages.php:125 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Bog‘liqlik o‘rnatish" -#: js/messages.php:124 +#: js/messages.php:126 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Bog‘liqlik o‘rnatish" -#: js/messages.php:125 +#: js/messages.php:127 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Maydon qiymatlari quyidagi belgi ichiga olingan " -#: js/messages.php:126 +#: js/messages.php:128 #, fuzzy #| msgid "Add column(s)" msgid "Please select column(s) for the index." msgstr "Ustun(lar) qo‘shish" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Hech bo‘lmaganda bitta maydon kiritish shart." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "so‘rov bo‘yicha" -#: js/messages.php:136 +#: js/messages.php:138 #, fuzzy #| msgid "Latched pages" msgid "Matched rows:" msgstr "Blokirovka qilingan sahifalar soni" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL so‘rovi" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Qiymati" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Xost nomi bo‘sh!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Foydalanuvchi nomi belgilanmagan!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Parol belgilanmagan!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Kiritilgan parollar bir xil emas!" -#: js/messages.php:148 +#: js/messages.php:150 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Belgilangan foydalanuvchilarni o‘chirish" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Yopish" -#: js/messages.php:152 +#: js/messages.php:154 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Tuzilgan sahifalar soni." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profil yangilandi." -#: js/messages.php:155 +#: js/messages.php:157 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Yozuv o‘chirildi" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "," -#: js/messages.php:164 +#: js/messages.php:166 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Ulanishlar" -#: js/messages.php:168 +#: js/messages.php:170 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Local monitor configuration incompatible!" msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1301,182 +1304,182 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "So‘rovlar keshi" -#: js/messages.php:177 +#: js/messages.php:179 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "So‘rovlar keshi" -#: js/messages.php:178 +#: js/messages.php:180 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "So‘rovlar keshi" -#: js/messages.php:180 +#: js/messages.php:182 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "Ishlatilish" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "Jurnal fayllari soni" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Bufer puli" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Jami" -#: js/messages.php:192 +#: js/messages.php:194 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Foydalanilayotgan joy" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "Bo‘sh sahifalar soni " -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Qabul qilindi" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Ulanishlar" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Jarayonlar" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "Bayt" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "Jadvallar soni: \"%s\"" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 #, fuzzy #| msgid "Versions" msgid "Questions" msgstr "Vеrsiyalar" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 #, fuzzy #| msgid "settings" msgid "Settings" msgstr "tanlovlar" -#: js/messages.php:215 +#: js/messages.php:217 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "To‘rga bog‘lab qo‘yish" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1488,47 +1491,47 @@ msgstr "" msgid "None" msgstr "Yo‘q" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1536,160 +1539,160 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Fayl kabi saqlash" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Faollashtirilgan" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Faolsizlantirish" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "So‘rov %01.4f sekund vaqt oldi" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 #, fuzzy #| msgid "Other core settings" msgid "Change settings" msgstr "Boshqa sozlanishlar" -#: js/messages.php:254 +#: js/messages.php:256 #, fuzzy #| msgid "settings" msgid "Current settings" msgstr "tanlovlar" -#: js/messages.php:256 +#: js/messages.php:258 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Hisobot sarlavhasi" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 #, fuzzy #| msgid "Difference" msgid "Differential" msgstr "Farq" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 #, fuzzy #| msgid "Load" msgid "Analysing logs" msgstr "Yuklash" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "O‘qishga ruxsat so‘rash" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 #, fuzzy #| msgid "Go to database" msgid "Jump to Log table" msgstr "Ushbu bazaga o‘tish" -#: js/messages.php:285 +#: js/messages.php:287 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Ma`lumotlar bazasi mavjud emas" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Tahlil" -#: js/messages.php:290 +#: js/messages.php:292 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "So‘rov tahlili" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1697,7 +1700,7 @@ msgstr "So‘rov tahlili" msgid "Status" msgstr "Holat" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1707,100 +1710,100 @@ msgstr "Holat" msgid "Time" msgstr "Vaqt" -#: js/messages.php:293 +#: js/messages.php:295 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Jami" -#: js/messages.php:294 +#: js/messages.php:296 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Profillashtirish" -#: js/messages.php:295 +#: js/messages.php:297 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Jadval " -#: js/messages.php:296 +#: js/messages.php:298 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Kodirovka" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 #, fuzzy #| msgid "Tables display options" msgid "Log table filter options" msgstr "Jadvallar ko‘rinishini sozlash" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Filtr" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 #, fuzzy #| msgid "Number of inserted rows" msgid "Sum of grouped rows:" msgstr "Qo‘yilgan qatorlar soni" -#: js/messages.php:306 +#: js/messages.php:308 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Jami" -#: js/messages.php:308 +#: js/messages.php:310 #, fuzzy #| msgid "Load" msgid "Loading logs" msgstr "Yuklash" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Qayta yuklash" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1809,78 +1812,78 @@ msgstr "" msgid "Import" msgstr "Import" -#: js/messages.php:326 +#: js/messages.php:328 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "\"%1$s\" faylidan andoza konfiguratsiyani yuklab bo‘lmadi." -#: js/messages.php:328 +#: js/messages.php:330 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import." msgstr "" "Birlamchi (PRIMARY) yoki unikal (UNIQUE) indeks bo‘lgan maydonni tanlang!" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "So‘rovni yangilash" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Dokumentatsiya" -#: js/messages.php:339 +#: js/messages.php:341 #, fuzzy #| msgid "Details…" msgid "Rule details" msgstr "Tafsilotlar…" -#: js/messages.php:340 +#: js/messages.php:342 #, fuzzy #| msgid "Customization" msgid "Justification" msgstr "Moslashlar" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Apply index(s)" msgid "No parameters found!" msgstr "Indеks(lar)ni saqlash" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1892,74 +1895,74 @@ msgstr "Indеks(lar)ni saqlash" msgid "Cancel" msgstr "Bekor qilish" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 #, fuzzy #| msgid "Other core settings" msgid "Page-related settings" msgstr "Boshqa sozlanishlar" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 #, fuzzy #| msgid "Load" msgid "Loading…" msgstr "Yuklash" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Jarayonlar" -#: js/messages.php:360 +#: js/messages.php:362 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "So‘rovlar keshi" -#: js/messages.php:361 +#: js/messages.php:363 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Jarayonlar" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Bironta ham ma`lumotlar bazasi tanlanmagan." -#: js/messages.php:365 +#: js/messages.php:367 #, fuzzy #| msgid "Dropping Procedure" msgid "Dropping column" msgstr "Muolajalar" -#: js/messages.php:366 +#: js/messages.php:368 #, fuzzy #| msgid "Add column(s)" msgid "Adding primary key" msgstr "Ustun(lar) qo‘shish" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1969,74 +1972,74 @@ msgstr "Ustun(lar) qo‘shish" msgid "OK" msgstr "OK" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: js/messages.php:372 +#: js/messages.php:374 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish" -#: js/messages.php:373 +#: js/messages.php:375 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Kodirovka" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Tashqi kalitlarni tekshirishni o‘chirish" -#: js/messages.php:380 +#: js/messages.php:382 #, fuzzy msgid "Failed to get real row count." msgstr "Faylni diskka yozishdaxatolik yuz berdi." -#: js/messages.php:383 +#: js/messages.php:385 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Qidirish" -#: js/messages.php:384 +#: js/messages.php:386 #, fuzzy #| msgid "SQL Query box" msgid "Hide search results" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:385 +#: js/messages.php:387 #, fuzzy #| msgid "SQL Query box" msgid "Show search results" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:386 +#: js/messages.php:388 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Ko‘rib chiqish" -#: js/messages.php:387 +#: js/messages.php:389 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "\"%s\" o‘chirilmoqda" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -2052,50 +2055,50 @@ msgstr "" msgid "Export" msgstr "Eksport" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Maydonlar soni " -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, fuzzy, php-format #| msgid "Add a new server" msgid "Add %d value(s)" msgstr "Yangi foydalanuvchi qo‘shish" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 #, fuzzy #| msgid "SQL Query box" msgid "Hide query box" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:408 +#: js/messages.php:410 #, fuzzy #| msgid "SQL Query box" msgid "Show query box" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -2105,7 +2108,7 @@ msgstr "SQL so‘rovlari qutisi" msgid "Edit" msgstr "Tahrirlash" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -2116,95 +2119,95 @@ msgstr "Tahrirlash" msgid "Delete" msgstr "O‘chirish" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d soni to‘g‘ri qator raqami emas." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Tashqi qiymatlarni ko‘rib chiqish" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "O‘zgaruvchi" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "" "Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak." -#: js/messages.php:419 +#: js/messages.php:421 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Ma`lumotlar bazasida qidirish" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atributlar" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "\"%s\" ga birlamchi kalit qo‘shildi" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Kuzatish hisoboti" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 #, fuzzy @@ -2212,92 +2215,92 @@ msgstr "" msgid "End of step" msgstr "Satr oxiri" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Sadaqa" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Bironta ham ma`lumotlar bazasi tanlanmagan." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "Quyidagi so‘rovlar bajarildi:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Quyidagi jadvalga privilegiya qo‘shish" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Bironta ham ma`lumotlar bazasi tanlanmagan." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2307,450 +2310,450 @@ msgstr "Bironta ham ma`lumotlar bazasi tanlanmagan." msgid "Save" msgstr "Saqlash" -#: js/messages.php:472 +#: js/messages.php:474 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:473 +#: js/messages.php:475 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:474 +#: js/messages.php:476 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Qidirish" -#: js/messages.php:475 +#: js/messages.php:477 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Maydon nomlari" -#: js/messages.php:476 +#: js/messages.php:478 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Maydon nomlari" -#: js/messages.php:477 +#: js/messages.php:479 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "Maksimal jadvallar soni" -#: js/messages.php:478 +#: js/messages.php:480 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "Maksimal jadvallar soni" -#: js/messages.php:481 +#: js/messages.php:483 #, fuzzy #| msgid "SQL Query box" msgid "Hide find and replace criteria" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:482 +#: js/messages.php:484 #, fuzzy #| msgid "SQL Query box" msgid "Show find and replace criteria" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Ustun qo‘shish/o‘chirish" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Ma`lumotlar fayli ko‘rsatgichi hajmi" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "E`tibor bermaslik" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Qatorlar bo‘luvchisi" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Yangi foydalanuvchi qo‘shish" -#: js/messages.php:516 +#: js/messages.php:518 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Qatorlar bo‘luvchisi" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Bog‘liq kalitni tanlang" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Tashqi kalitni tanlang" -#: js/messages.php:533 +#: js/messages.php:535 #, 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:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 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:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Sahifa raqami: " -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 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:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 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:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 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:543 +#: js/messages.php:545 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Jadvallarni tanlang" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 #, 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:546 +#: js/messages.php:548 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Aloqalar sxemasi" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "O‘zgaririshlar saqlandi" -#: js/messages.php:554 +#: js/messages.php:556 #, fuzzy, php-format #| msgid "Number of fields" msgid "Add an option for column \"%s\"." msgstr "Maydonlar soni " -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Bajarish" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Maydon nomlari" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Barchasini ko‘rsatish" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Asl pozitsiya" -#: js/messages.php:590 +#: js/messages.php:592 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Bekor qilish" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Uzildi" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Import" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Jurnal fayli ostonasi" -#: js/messages.php:596 +#: js/messages.php:598 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Jadvallarni tanlang" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Chop etish" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 #, fuzzy #| msgid "Go to view" msgid "Go to link:" msgstr "Ushbu ko‘rinishga o‘tish" -#: js/messages.php:618 +#: js/messages.php:620 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Maydon nomlari" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Parol o‘rnatish" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Generatsiya qilish" -#: js/messages.php:628 +#: js/messages.php:630 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Dush" -#: js/messages.php:631 +#: js/messages.php:633 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Barchasini ko‘rsatish" -#: js/messages.php:632 +#: js/messages.php:634 #, fuzzy #| msgid "Apply index(s)" msgid "Hide panel" msgstr "Indеks(lar)ni saqlash" -#: js/messages.php:633 +#: js/messages.php:635 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Chap ramkada logotipni ko‘rsatish" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Asosiy ramkani moslashtirish" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Asosiy ramkani moslashtirish" -#: js/messages.php:639 +#: js/messages.php:641 #, 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:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2761,129 +2764,129 @@ msgstr "" "sanada chiqarilgan." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Oxirgi versiyani tekshirish" -#: js/messages.php:648 +#: js/messages.php:650 #, fuzzy #| msgid "Go to database" msgid "up to date" msgstr "Ushbu bazaga o‘tish" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Vеrsiyasini tuzish" -#: js/messages.php:653 +#: js/messages.php:655 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Server porti" -#: js/messages.php:654 +#: js/messages.php:656 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Server porti" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 #, fuzzy #| msgid "Other core settings" msgid "Change report settings" msgstr "Boshqa sozlanishlar" -#: js/messages.php:659 +#: js/messages.php:661 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Ochiq jadvallar ro‘yxati" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "E`tibor bermaslik" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Ushbu so‘rovni qayta ko‘rsatish" -#: js/messages.php:700 +#: js/messages.php:702 #, 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:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL so‘rovlari" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Jadval izohi" -#: js/messages.php:707 +#: js/messages.php:709 #, fuzzy #| msgid "SQL Query box" msgid "Hide arguments" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2892,38 +2895,38 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Apply index(s)" msgid "Add table prefix" msgstr "Indеks(lar)ni saqlash" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish" -#: js/messages.php:743 +#: js/messages.php:745 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Orqaga" -#: js/messages.php:748 +#: js/messages.php:750 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2931,96 +2934,96 @@ msgid "Next" msgstr "Keyingi" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jami" -#: js/messages.php:755 +#: js/messages.php:757 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Ikkilik" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "" -#: js/messages.php:757 +#: js/messages.php:759 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:758 +#: js/messages.php:760 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "May" -#: js/messages.php:760 +#: js/messages.php:762 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Iyun" -#: js/messages.php:761 +#: js/messages.php:763 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Iyul" -#: js/messages.php:762 +#: js/messages.php:764 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Avg" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "" -#: js/messages.php:764 +#: js/messages.php:766 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Yanv" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -3028,78 +3031,78 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Iyun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Iyul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Avg" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Noya" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Dek" -#: js/messages.php:801 +#: js/messages.php:803 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Yaksh" -#: js/messages.php:802 +#: js/messages.php:804 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dush" -#: js/messages.php:803 +#: js/messages.php:805 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sesh" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:808 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3107,86 +3110,86 @@ msgid "Sun" msgstr "Yaksh" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "Dush" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "Sesh" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "Chor" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "Pay" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "Shan" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Yaksh" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dush" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sesh" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Chor" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Pay" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Shan" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3195,139 +3198,139 @@ msgstr "Viki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:858 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Yo‘q" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ishlatilmoqda" -#: js/messages.php:873 +#: js/messages.php:875 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekundiga" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Matnmaydonini ishlatish" -#: js/messages.php:886 +#: js/messages.php:888 #, 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:889 #, 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:890 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:891 +#: js/messages.php:893 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:893 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:896 +#: js/messages.php:898 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:898 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:901 +#: js/messages.php:903 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 #, 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:925 +#: js/messages.php:927 #, 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:930 +#: js/messages.php:932 #, 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:936 +#: js/messages.php:938 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:941 +#: js/messages.php:943 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Xatolik" @@ -3380,34 +3383,34 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Shrift o‘lchami" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 #, fuzzy #| msgid "in query" msgid "Requery" msgstr "so‘rov bo‘yicha" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -3426,94 +3429,75 @@ msgid "Database" msgstr "Ma`lumotlar bazasi" #: libraries/Console.php:100 -#, fuzzy, php-format -#| msgid "Delete relation" -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Bog‘liqlikni o‘chirish" +#, php-format +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, fuzzy, php-format -#| msgid "The bookmark has been deleted." -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "Xatcho‘p o‘chirildi." - -#: libraries/Console.php:125 +#: libraries/Console.php:107 #, fuzzy #| msgid "Delete relation" msgid "No bookmarks" msgstr "Bog‘liqlikni o‘chirish" -#: libraries/Console.php:186 +#: libraries/Console.php:168 #, fuzzy #| msgid "Skip current error" msgid "During current session" msgstr "Joriy xatoliklarni tashlab kеtish" -#: libraries/Console.php:218 +#: libraries/Console.php:200 #, fuzzy #| msgid "Explain SQL" msgid "Explain" msgstr "So‘rov tahlili" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Profillashtirish" -#: libraries/Console.php:221 +#: libraries/Console.php:203 #, fuzzy #| msgid "Bookmark table" msgid "Bookmark" msgstr "Xatcho‘plar jadvali" -#: libraries/Console.php:222 +#: libraries/Console.php:204 #, fuzzy #| msgid "Query cache" msgid "Query failed" msgstr "So‘rovlar keshi" -#: libraries/Console.php:226 +#: libraries/Console.php:208 #, fuzzy #| msgid "Maximum execution time" msgid "Queried time" msgstr "Maksimum bajarilish vaqti" -#: libraries/Console.php:233 +#: libraries/Console.php:215 #, fuzzy #| msgid "SQL Query box" msgid "SQL Query Console" msgstr "SQL so‘rovlari qutisi" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Tozalash" -#: libraries/Console.php:240 +#: libraries/Console.php:222 #, fuzzy #| msgid "SQL history" msgid "History" msgstr "SQL-so‘rovlar tarixi" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3531,179 +3515,179 @@ msgstr "SQL-so‘rovlar tarixi" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Parametrlar" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 #, fuzzy #| msgid "Bookmark table" msgid "Bookmarks" msgstr "Xatcho‘plar jadvali" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Ctrl+Enter to execute query" msgstr "Belgilangan so‘rovni bajarish" -#: libraries/Console.php:262 +#: libraries/Console.php:244 #, fuzzy #| msgid "Execute bookmarked query" msgid "Press Enter to execute query" msgstr "Belgilangan so‘rovni bajarish" -#: libraries/Console.php:280 +#: libraries/Console.php:262 #, fuzzy #| msgid "Ascending" msgid "ascending" msgstr "O‘sish tartibida" -#: libraries/Console.php:283 +#: libraries/Console.php:265 #, fuzzy #| msgid "Descending" msgid "descending" msgstr "Kamayish tartibida" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 #, fuzzy #| msgid "Column names" msgid "Count" msgstr "Maydon nomlari" -#: libraries/Console.php:295 +#: libraries/Console.php:277 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execution order" msgstr "Belgilangan so‘rovni bajarish" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 #, fuzzy #| msgid "SQL queries" msgid "Group queries" msgstr "SQL so‘rovlari" -#: libraries/Console.php:307 +#: libraries/Console.php:289 #, fuzzy #| msgid "SQL queries" msgid "Ungroup queries" msgstr "SQL so‘rovlari" -#: libraries/Console.php:318 +#: libraries/Console.php:300 #, fuzzy #| msgid "Show color" msgid "Show trace" msgstr "Rangda ko‘rsatish" -#: libraries/Console.php:320 +#: libraries/Console.php:302 #, fuzzy #| msgid "Apply index(s)" msgid "Hide trace" msgstr "Indеks(lar)ni saqlash" -#: libraries/Console.php:322 +#: libraries/Console.php:304 #, fuzzy #| msgid "Column names" msgid "Count:" msgstr "Maydon nomlari" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Yangilash" -#: libraries/Console.php:342 +#: libraries/Console.php:324 #, fuzzy #| msgid "And" msgid "Add" msgstr "Va" -#: libraries/Console.php:351 +#: libraries/Console.php:333 #, fuzzy #| msgid "Delete relation" msgid "Add bookmark" msgstr "Bog‘liqlikni o‘chirish" -#: libraries/Console.php:355 +#: libraries/Console.php:337 #, fuzzy #| msgid "Label" msgid "Label" msgstr "Xatcho‘p belgisi" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Nishon baza" -#: libraries/Console.php:360 +#: libraries/Console.php:342 #, fuzzy #| msgid "Delete relation" msgid "Share this bookmark" msgstr "Bog‘liqlikni o‘chirish" -#: libraries/Console.php:377 +#: libraries/Console.php:359 #, fuzzy #| msgid "Restore default value" msgid "Set default" msgstr "Asl qiymatlarni tiklash" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 #, fuzzy #| msgid "SQL query history table" msgid "Show query history at start" msgstr "SQL so‘rovlari tarixi jadvali" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 #, fuzzy #| msgid "Switch to copied table" msgid "Switch to dark theme" msgstr "Nusxa olingan jadvalga o‘tish" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Failed to set configured collation connection!" msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -3711,21 +3695,21 @@ msgid "" "configured)." msgstr "(yoki lokal MySQL serverning soketi noto‘g‘ri sozlangan)" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Server javob bermayapti" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Tafsilotlar…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "\"config.inc.php\" konfiguratsion faylining \"controluser\" direktivasida " @@ -4107,7 +4091,7 @@ msgstr "Taxminiy bo‘lishi mumkin. [doc@faq3-11]\"FAQ 3.11\"[/doc]ga qarang" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 #, fuzzy #| msgid "Your SQL query has been executed successfully." msgid "Your SQL query has been executed successfully." @@ -4245,7 +4229,7 @@ msgstr "Faylning yuklanishi uning kengaytmasi sabali to‘xtatildi." msgid "Unknown error in file upload." msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi." -#: libraries/File.php:468 +#: libraries/File.php:465 #, fuzzy #| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]" msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." @@ -4253,11 +4237,11 @@ msgstr "" "Yuklangan fayl joyini o‘zgartirishda xatolik, [doc@faq1-11]\"FAQ 1.11\"[/" "doc]ga qarang" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -4325,8 +4309,8 @@ msgid "Keyname" msgstr "Indeks nomi" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -4376,13 +4360,13 @@ msgstr "\"%s\" indeksi o‘chirildi." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "O‘chirish" @@ -4480,7 +4464,7 @@ msgstr "Privilegiyalar" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Operatsiyalar" @@ -4495,7 +4479,7 @@ msgstr "Kuzatish" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4914,11 +4898,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "\"%s\" mavzusi rasmlariga to‘g‘ri yo‘l topilmadi!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Oldindan ko‘rish mumkin emas." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "Tadbiq qilish" @@ -5191,21 +5175,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Jurnal fayllari soni" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "Maksimal hajmi: \"%s\"%s\"" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -5216,38 +5200,38 @@ msgstr "" msgid "MySQL said: " msgstr "MySQL javobi: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "So‘rov tahlili" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Tahlil kerak emas" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP-kod olib tashlash" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "so‘rovni bajarish" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 #, fuzzy #| msgid "Create PHP Code" msgid "Create PHP code" msgstr "PHP-kod" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 #, fuzzy #| msgid "Edit mode" msgctxt "Inline edit query" @@ -5348,6 +5332,10 @@ msgstr "soatiga" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 #, fuzzy #| msgid "Search" @@ -5468,50 +5456,50 @@ msgstr "Ustun(lar) qo‘shish" msgid "Attributes" msgstr "Atributlar" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Failed to read configuration file!" msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "\"%1$s\" faylidan andoza konfiguratsiyani yuklab bo‘lmadi." -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Server raqami noto‘g‘ri: \"%s\"" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s serveri uchun noto‘g‘ri xost nomi ko‘rsatilgan. phpMyAdmin " "konfiguratsion faylida belgilangan sozlashlarni to‘g‘irlang." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, fuzzy, php-format #| msgid "Server" msgid "Server %d" msgstr "Server" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" "phpMyAdmin konfiguratsion faylida noto‘g‘ri autentifikatsiya usuli " "belgilangan:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -5519,24 +5507,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "\"%s\" ni \"%s\" versiyaga yoki kattaroq versiyaga yangilash zarur." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -6433,7 +6421,7 @@ msgstr "Maydon nomlarini birinchi qatorga joylashtirish" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed with" @@ -6441,7 +6429,7 @@ msgstr "Maydon qiymatlari quyidagi belgi ichiga olingan " #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped with" @@ -6465,14 +6453,14 @@ msgstr "Maydonlar ichidagi satrdan-satrga ko‘chirish belgilarini olib tashlash #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated with" msgstr "Qatorlar bo‘luvchisi" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 #, fuzzy #| msgid "Lines terminated by" msgid "Lines terminated with" @@ -7172,7 +7160,7 @@ msgid "Column names in first row" msgstr "Birinchi qatorga ustun nomlari" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Bo‘sh qatorlarni import qilmaslik" @@ -9033,7 +9021,7 @@ msgid "Table %s has been emptied." msgstr "\"%s\" jadvali tozalandi." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, fuzzy, php-format #| msgid "View %s has been dropped." msgid "View %s has been dropped." @@ -9176,8 +9164,8 @@ msgid "No data to display" msgstr "Ma`lumotlar bazasi mavjud emas" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -9227,57 +9215,57 @@ msgid "No column selected." msgstr "" "Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 #, 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:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 #, fuzzy #| msgid "Ignore errors" msgid "Query error" msgstr "Xatolarga e`tibor bermaslik" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, 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:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "O‘zgartirish" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Indeks" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Matn to‘laligicha" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -9289,7 +9277,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "O‘zgarish yo‘q" @@ -10176,20 +10164,20 @@ msgstr "MySQL bo‘sh natija berdi (ya`ni nolta satr)." msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 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:1258 +#: libraries/import.lib.php:1259 #, 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:1261 +#: libraries/import.lib.php:1262 #, fuzzy #| msgid "" #| "Change any of its settings by clicking the corresponding \"Options\" link" @@ -10197,47 +10185,47 @@ 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:1263 +#: libraries/import.lib.php:1264 #, 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:1270 +#: libraries/import.lib.php:1271 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Ushbu bazaga o‘tish" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "\"%s\" maydonida ma`lumot yo‘q" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Ushbu jadvalga o‘tish" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Faqat tuzilishi" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Ushbu ko‘rinishga o‘tish" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -10288,51 +10276,51 @@ msgstr "Yoki" msgid "web server upload directory:" msgstr "Yuklash katalogidan" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Qo‘yish" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, 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:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "va so‘ng" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Yozuv kiritish" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 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:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Kiritilgan so‘rovni ko‘rsatish" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Oldingi sahifaga o‘tish" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Yangi yozuv kiritish" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Ushbu sahifaga qaytish" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Keyingi qatorni tahrirlash" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -10342,7 +10330,7 @@ msgstr "" "Maydonlararo o‘tish uchun TAB tugmasi yoki CTRL+strelka tugmalaridan " "foydalaning" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -10354,11 +10342,11 @@ msgstr "" msgid "Value" msgstr "Qiymati" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "SQL-so‘rovni ko‘rsatish" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Kiritilgan qator identifikatori: %1$d" @@ -11253,7 +11241,7 @@ msgstr "Jadvalni tiklash" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" @@ -11270,32 +11258,32 @@ msgid "Delete the table (DROP)" msgstr "Ushbu bazaga o‘tish" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Tahlil" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Tekshirish" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Optimizatsiya" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Qayta qurish" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Tiklash" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -11323,37 +11311,37 @@ msgstr "Bo‘laklarni (PARTITIONS) o‘chirish" msgid "Check referential integrity:" msgstr "Ma`lumotlar yaxlitligini tekshirish:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Jadvalni o‘z-o‘ziga ko‘chirib bo‘lmaydi!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Jadvalning o‘zidan o‘ziga nusxa ko‘chirish mumkin emas!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, 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:2114 +#: libraries/operations.lib.php:2112 #, 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:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "\"%s\" jadvali \"%s\" ga ko‘chirildi." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "\"%s\" jadvalidan \"%s\" ga nusxa ko‘chirildi." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Jadval nomi ko‘rsatilmagan!" @@ -11555,7 +11543,7 @@ msgstr "Ma`lumotlar bazalarini ko‘rsatish afzalliklari" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Jadval ma`lumotlarini damp qilish" @@ -11581,21 +11569,21 @@ msgstr "Tavsifi" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Jadval tuzilishi" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Namoyish etish uchun tuzilma" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Namoyish etish uchun tuzilma" @@ -11709,7 +11697,7 @@ msgid "Database:" msgstr "Ma`lumotlar bazasi" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11828,7 +11816,7 @@ msgid "Data creation options" msgstr "O‘girishlar parametrlari" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -11897,7 +11885,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11949,61 +11937,61 @@ msgstr "ishlatilmoqda" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Saqlangan jadvallarning tashqi kalitida cheklovlar" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Jadvallarning tashqi kalitida cheklovlar" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "Saqlangan jadvallarning tashqi kalitida cheklovlar" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside table(s):" msgid "Indexes for table" msgstr "Quyidagi jadval(lar)da qidirish:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 #, 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:1746 +#: libraries/plugins/export/ExportSql.php:1754 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT qo‘shish" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "JADVAL UCHUN MIME TURLARI" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "Jadval aloqalari" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, 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:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -12039,7 +12027,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -12059,37 +12047,37 @@ msgstr "" msgid "Column names: " msgstr "Maydon nomlari" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV importidagi paramert noto‘g‘ri: \"%s\"" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" "Kiritilayotgan CSV ma`lumotlarning %d qatoridagi ma`lumotlar formati " "noto‘g‘ri." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, fuzzy, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "" "Kiritilayotgan CSV ma`lumotlarning %d qatoridagi maydonlar soni noto‘g‘ri." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Ushbu modul qisilgan ma`lumotlarni import qila olmaydi!" @@ -12097,7 +12085,7 @@ msgstr "Ushbu modul qisilgan ma`lumotlarni import qila olmaydi!" msgid "MediaWiki Table" msgstr "MediaWiki jadvali" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, fuzzy, php-format #| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
%s." @@ -12105,22 +12093,22 @@ msgstr "" "Kiritilayotgan CSV ma`lumotlarning %d qatoridagi ma`lumotlar formati " "noto‘g‘ri." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" "Foizlarni mos o‘nli kasrlar kabi import qilish (masalan, 12.00% o‘rniga 0.12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 #, fuzzy #| msgid "Import currencies ($5.00 to 5.00)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Pul birliklarini import qilish (masalan, $5.00 ni 5.00 ga)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -12128,7 +12116,7 @@ msgstr "" "Ko‘rsatilgan XML fayl yo noto‘g‘ri tuzilgan yo chala. Uni to‘g‘irlab, qayta " "harakat qilib ko‘ring." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -12138,23 +12126,23 @@ msgstr "Open Document jadvali" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "File %s does not contain any key id" msgid "The imported file does not contain any data!" @@ -12172,7 +12160,7 @@ msgstr "SQL bilan moslik rejimi" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nol qiymatlari uchun \"AUTO_INCREMENT\" ishlatmaslik" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -15556,15 +15544,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -15579,17 +15563,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -15612,23 +15597,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "Ochiq jadvallar soni." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "Ochiq jadvallar soni." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -15659,17 +15644,17 @@ msgstr "%1$s jadvali tuzildi." msgid "Variable name was expected." msgstr "Jadval nomi shabloni" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "Jadval boshiga" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -15690,19 +15675,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -16448,7 +16433,7 @@ msgstr "Jadval dampini (sxemasini) namoyish etish" msgid "Invalid table name" msgstr "Jadval nomi noto‘g‘ri" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -17607,7 +17592,7 @@ msgid "at beginning of table" msgstr "Jadval boshiga" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -17656,7 +17641,7 @@ msgstr "bo‘laklarga bo‘lingan" msgid "Edit partitioning" msgstr "Bo‘laklarni (PARTITIONS) o‘chirish" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 #, fuzzy #| msgid "Print view" msgid "Edit view" @@ -17792,11 +17777,11 @@ msgstr "Nom ko‘rinishi" msgid "Column names" msgstr "Maydon nomlari" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Ko‘rinish nomini o‘zgartirish" -#: view_operations.php:136 +#: view_operations.php:145 #, fuzzy #| msgid "Go to database" msgid "Delete the view (DROP)" @@ -18999,6 +18984,17 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Maksimal ulanishlar soni " +#, fuzzy +#~| msgid "Delete relation" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Bog‘liqlikni o‘chirish" + +#, fuzzy +#~| msgid "The bookmark has been deleted." +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "Xatcho‘p o‘chirildi." + #, fuzzy #~| msgid "" #~| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " diff --git a/po/vi.po b/po/vi.po index 291f44ccd9..55139b468a 100644 --- a/po/vi.po +++ b/po/vi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-01-13 15:59+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Vietnamese " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" "Bạn có chắc muốn thay đổi tất cả bảng mã đổi chiếu cột và chuyển đổi dữ liệu?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "Lưu và đóng" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "Đặt lại" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "Chọn tất cả" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "Thiếu giá trị trong form!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "Chọn ít nhất là một tùy chọn!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "Hãy nhập vào một con số hợp lệ!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "Hãy gõ chiều dài hợp lệ!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "Thêm chỉ mục" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "Sửa chỉ mục" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "Thêm %s cột vào chỉ mục" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "Tạo chỉ mục đơn-cột" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "Tạo chỉ mục phức hợp" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "Phức hợp với:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "Vui lòng chọn (các) cột cho chỉ mục" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Bạn cần phải thêm ít nhất một cột." -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "Xem trước Mã SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "Mô phỏng Truy vấn" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "Các hàng khớp:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "Truy vấn SQL:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Giá trị Y" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "Tên máy chủ còn để trống!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "Tên tài khoản còn để trống!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "Mật khẩu còn để trống!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "Mật khẩu không giống nhau!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "Xóa bỏ người dùng đã chọn" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "Đóng" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "Mẫu đã được tạo." -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "Mẫu đã được tải." -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "Mẫu đã được cập nhật." -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "Mẫu đã bị xóa." #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "Khác" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "," -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "Kết nối / Tiến trình" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "Cấu hình theo dõi nội bộ chưa hoàn thiện!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1135,155 +1139,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "Bộ nhớ tạm khi truy vấn có ích" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "Mức dùng bộ nhớ tạm khi truy vấn" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "Bộ nhớ tạm khi truy vấn đã dùng" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "Mức dùng CPU hệ thống" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "Bộ nhớ hệ thống" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "Bộ nhớ tráo đổi hệ thống" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "Mức tải trung bình" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "Tổng dung lượng bộ nhớ" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "Bộ nhớ dùng để lưu tạm" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "Bộ nhớ đã làm đệm" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "Bộ nhớ còn trống" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "RAM đã dùng" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "Bộ nhớ tráo đổi tổng cộng" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "Bộ nhớ tráo đổi đã đệm" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "Bộ nhớ tráo đổi đã dùng" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "Bộ nhớ tráo đổi còn trống" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "Byte gửi" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "Số byte đã nhận" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "Kết nối" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "Tiến trình" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d bảng" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "Câu hỏi" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "Lưu lượng" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "Cài đặt" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "Thêm vào màu người dùng" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "Vui lòng thêm ít nhất là một biến vào sê-ri!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1295,47 +1299,47 @@ msgstr "Vui lòng thêm ít nhất là một biến vào sê-ri!" msgid "None" msgstr "Không" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "Phục hồi lại việc theo dõi" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "Tạm dừng theo dõi" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "Chạy tự động làm tươi mới" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "Dừng tự động làm tươi mới" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log và slow_query_log được bật." -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log được bật." -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log được bật." -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log và general_log được tắt." -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output không được đặt thành TABLE (Bảng)." -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output được đặt thành TABLE (Bảng)." -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1346,42 +1350,42 @@ msgstr "" "hơn %d giây. Giá trị thích hợp để đạt cho long_query_time là 0-2 seconds, " "phụ thuộc vào hệ thống của bạn." -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time được đặt thành %d giây." -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "Đặt log_output thành %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "Bật %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "Tắt %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Đặt long_query_time thành %ds" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1389,59 +1393,59 @@ msgstr "" "Bạn không thể thay đổi những biến này. Xin hãy đăng nhập với tài khoản root " "hoặc liên hệ với người quản lý cơ sở dữ liệu của bạn." -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "Các cài đặt thay đổi" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "Cài đặt hiện hành" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "Kiểu biểu đồ" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "Chênh lệch" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "Chia cho %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "Đơn vị" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "Mở bản ghi từ tập tin" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "Cấu hình đọc sổ theo dõi chung" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" "Tên cơ sở dữ liệu là chưa biết với truy vấn này trong nhật ký của máy phục " "vụ." -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "Phân tích nhật ký" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "Phân tích và tải nhật ký. Thao tác này có thể mất một chút thời gian." -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "Hủy yêu cầu" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1452,7 +1456,7 @@ msgstr "" "vậy các thuộc tính khác của truy vấn, như thời gian khởi chạy, có thể khác " "đi." -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1461,35 +1465,35 @@ msgstr "" "Do việc nhóm các truy vấn các INSERT đã được chọn, truy vấn vào INSERT cùng " "một bảng cũng đồng thời được nhóm." -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Dữ liệu nhật ký đã được tải. Các truy vấn đã thi hành trong khoảng thời gian " "này:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "Nhảy đến bảng Nhật ký" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "Không tìm thấy dữ liệu nào" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" "Nhật ký đã được phân tích, nhưng không tìm thấy dữ liệu trong khoảng thời " "gian này." -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "Đang phân tích…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "Xuất vùng chọn:" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1497,7 +1501,7 @@ msgstr "Xuất vùng chọn:" msgid "Status" msgstr "Tình trạng" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1507,58 +1511,58 @@ msgstr "Tình trạng" msgid "Time" msgstr "Thời gian" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "Tổng thời gian:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "Không có kết quả" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "Bảng" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "Biểu đồ" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "Tùy chọn bộ lọc bảng" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "Bộ lọc" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "Lọc các truy vấn theo từ/btcq:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Nhóm các truy vấn, bỏ qua dữ liệu biến trong mệnh đề WHERE" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "Tổng dòng được nhóm:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "Tổng cộng:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "Đang tải nhật ký" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "Việc làm tươi theo dõi gặp lỗi" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1568,28 +1572,28 @@ msgstr "" "này có lẽ là do phiên làm việc của bạn đã hết hạn. Tải lại trang và nhập lại " "các tiêu chí của bạn có lẽ sẽ giải quyết được vấn đề." -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "Tải lại trang" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "Các hàng chịu tác động:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Gặp lỗi khi phân tích tập tin cấu hình. Nó trông như không phải là mã JSON " "hợp lệ." -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Gặp lỗi khi xây dựng lưới đồ thị với cấu hình đã nhập vào. Đang đặt lại " "thành cấu hình mặc định…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1598,63 +1602,63 @@ msgstr "" msgid "Import" msgstr "Nhập" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "Nhập vào cấu hình theo dõi" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "Chọn những thể loại bạn muốn nhập vào." -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "Không có sẵn tập tin nào trên máy chủ để mà nhập vào!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "Phân tích truy vấn" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "Hệ thống cố vấn" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "Các thu thập hiệu năng có thể được" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "Phát hành" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "Khuyến nghị" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "Chi tiết quy tắc" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "Chỉnh" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "Dùng biến / công thức" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "Kiểm tra" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "Đang định dạng SQL…" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "Tham số không đúng!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1666,60 +1670,60 @@ msgstr "Tham số không đúng!" msgid "Cancel" msgstr "Hủy bỏ" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "Cài đặt liên quan đến trang" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "Áp dụng" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "Đang tải…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "Yêu cầu bị bãi bỏ!!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "Đang xử lý yêu cầu" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "Yêu cầu thất bại!!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "Có lỗi trong yêu cầu xử lý" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "Mã lỗi sai: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "Chuỗi lỗi: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "Chưa chọn cơ sở dữ liệu." -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "Xóa cột" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "Thêm khóa chính" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1729,55 +1733,55 @@ msgstr "Thêm khóa chính" msgid "OK" msgstr "Tốt" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "Bấm chuột vào để bãi bỏ cảnh báo này" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "Đang đổi tên cơ sở dữ liệu" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "Đang chép cơ sở dữ liệu" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "Đang đổi bảng mã" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "Bật kiểm tra khóa ngoại" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "Gặp lỗi khi lấy số lượng hàng thực tế." -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "Đang tìm kiếm" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "Ẩn kết quả tìm kiếm" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "Hiển thị kết quả tìm kiếm" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "Đang duyệt" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "Đang xóa" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Định nghĩa hàm lưu trữ phải có chứa lệnh RETURN!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1793,44 +1797,44 @@ msgstr "Định nghĩa hàm lưu trữ phải có chứa lệnh RETURN!" msgid "Export" msgstr "Xuất" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "Bộ sửa ENUM/SET" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "Giá trị cho cột %s" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "Giá trị cho cho cột mới" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "Nhập vào từng giá trị trong một trường ngăn cách." -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "Thêm %d giá trị" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Chú ý: Nếu tập tin chứa nhiều bảng, chũng sẽ được tổ hợp thành một." -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "Ẩn hộp truy vấn" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "Hiện hộp truy vấn" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1840,7 +1844,7 @@ msgstr "Hiện hộp truy vấn" msgid "Edit" msgstr "Sửa" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1851,41 +1855,41 @@ msgstr "Sửa" msgid "Delete" msgstr "Xóa bỏ" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d không phải là số hàng hợp lệ." -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "Duyệt giá trị khóa ngoại" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "Không có truy vấn tự-ghi" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "Biến %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "Chọn" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "Bộ chọn cột" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "Tìm kiếm danh sách này" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1895,15 +1899,15 @@ msgstr "" "cột trung tâm cho cơ sở dữ liệu %s có các cột mà không hiện diện trong bảng " "hiện tại." -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "Xem thêm" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "Bạn có chắc không?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1911,51 +1915,51 @@ msgstr "" "Thao tác này có thể thay đổi một số định nghĩa các cột.
Bạn có chắc muốn " "tiếp tục không?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "Tiếp tục" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "Thêm khóa chính" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "Đã thêm khóa chính." -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "Đưa bạn đến bước kế tiếp…" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Bước đầu của việc tiêu chuẩn hóa là đủ cho bảng '%s'." -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "Bước cuối" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "Bước thứ hai của việc tiêu chuẩn hóa (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "Xong" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "Xác nhận các phần phục thuộc một phần" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "Chọn các phần phục thuộc một phần được hiển thị ở dưới đây:" -#: js/messages.php:444 +#: js/messages.php:446 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1963,60 +1967,60 @@ msgstr "" "Chú ý: a, b -> d,f ngầm ý là giá trị của các cột a và biến kết hợp cùng nhau " "có thể xác định các giá trị của cột d và cột f." -#: js/messages.php:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "Chưa chọn cơ sở dữ liệu." -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Hiển thị cho tôi xem các phần phụ thuộc một phần trên dữ liệu trong bảng" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "Ẩn danh sách các phần phục thuộc một phần" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "Bước" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "Những thao tác sau đây sẽ được thực hiện:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP cột %s từ bảng %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "Tạo ra bảng sau đây" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "Bước thứ ba của việc tiêu chuẩn hóa (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "Chưa chọn ô điều khiển." -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2026,122 +2030,122 @@ msgstr "Chưa chọn ô điều khiển." msgid "Save" msgstr "Ghi lại" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "Ẩn kết quả tìm kiếm" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "Hiển thị kết quả tìm kiếm" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "Vùng tìm kiếm" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "Giá trị tối đa" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "Chiều cao nhỏ nhất" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "Giá trị tối thiểu" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "Giá trị tối đa" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "Ẩn kết quả tìm kiếm" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "Hiển thị hộp thoại tìm kiếm." -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "Mỗi điểm biểu diễn một dòng dữ liệu." -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "Di chuột lên trên một điểm sẽ hiển thị nhãn của nó." -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Để phóng to, chọn một vùng của biểu đồ bằng chuột." -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "Bấm chuột vào nút đặt lại phóng to để trở lại trạng thái ban đầu." -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "Bấm vào điểm dữ liệu để xem và gần như chắc là sửa dòng dữ liệu." -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "Biểu đồ có thể được thay đổi cỡ bằng cách kéo nó ở góc phải dưới." -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "Chọn hai cột" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "Phải chọn hai cột khác nhau" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "bài tóm tắt diễn tả nội dung của dữ liệu này" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "Bỏ qua" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "Chép" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "Điểm" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "Chuỗi-dòng" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "Hình đa giác" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "Hình dạng" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "Vòng trong" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "Vòng ngoài" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "Bạn có thực sự muốn chép khóa mã hóa?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "Khóa mã hóa" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2149,24 +2153,24 @@ msgstr "" "Thấy rằng bạn đã thay đổi trang này; bạn sẽ được nhắc xác nhận trước khi bỏ " "phí những thay đổi" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "Chọn Khóa tham chiếu" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "Chọn Khóa Ngoại" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "Vui lòng chọn khóa chính hoặc một khóa có giá trị độc nhất!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Chọn cột bạn muốn hiển thị" -#: js/messages.php:536 +#: js/messages.php:538 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?" @@ -2174,76 +2178,76 @@ msgstr "" "Bạn chưa lưu các thay đổi trong bố cục. Chúng sẽ mất nếu bạn không lưu lại. " "Bạn vẫn muốn tiếp tục chứ?" -#: js/messages.php:539 +#: js/messages.php:541 msgid "Page name" msgstr "Tên trang" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Ghi lại trang" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Ghi trang bằng tên mới" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Mở trang" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "Xóa trang" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Chưa đặt tên" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "Xin hãy chọn trang bạn muốn hiển thị:" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "Vui lòng nhập vào tên trang hợp lệ" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "Bạn có thực sự muốn lưu các thay đổi vào trang hiện tại không?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "Trang đã được xóa thành công" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "Lược đồ quan hệ" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "Các thay đổi đã được ghi lại" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "Thêm tùy-chọn cho cột \"%s\"." -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "%d đối tượng đã được tạo." -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Gửi" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "Nhấn vào Esc để hủy sửa chữa." -#: js/messages.php:561 +#: js/messages.php:563 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?" @@ -2251,15 +2255,15 @@ msgstr "" "Bạn đã sửa một số dữ liệu và chúng chưa được lưu lại. Bạn có thực sự muốn " "rời trang này trước khi ghi lại dữ liệu hay không?" -#: js/messages.php:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "Kéo thả để thay đổi thứ tự." -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "Bấm để sắp xếp kết quả theo cột này." -#: js/messages.php:567 +#: js/messages.php:569 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 " @@ -2269,26 +2273,26 @@ msgstr "" "
- Ctrl+Click hay Alt+Click (Mac: Shift+Option+Click) để xóa cột khỏi " "mệnh đề ORDER BY" -#: js/messages.php:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "Bấm chuột để đánh/bỏ đánh dấu" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "Bấm đúp chuột để sao chép tên cột" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Bấm vào mũi tên chỉ xuống
để bật/tắt tính khả kiến của cột." -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "Hiện tất" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2297,12 +2301,12 @@ msgstr "" "lưới, dấu kiểm, Sửa, Chép hay Xóa liên kết sẽ không hoạt động sau khi ghi " "lại." -#: js/messages.php:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Vui lòng nhập vào chuỗi thập lục phân hợp lệ. Các ký tự hợp lệ là 0-9, A-F." -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2310,103 +2314,103 @@ msgstr "" "Bạn có thực sự muốn xem tất cả các dòng? Với các bảng lớn, việc này có thể " "làm treo trình duyệt." -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "Chiều dài gốc" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "thôi" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Bị hủy bỏ" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "Thành công" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "Trạng thái nhập vào" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Thả tập tin vào đây" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "Hãy chọn cơ sở dữ liệu trước" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "In" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Bạn cũng có thể sửa phần lớn các giá trị
bằng cách bấm đúp chuột trực " "tiếp vào chúng." -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Bạn cũng có thể sửa phần lớn các giá trị
bằng cách bấm chuột trực tiếp " "vào chúng." -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "Nhảy đến liên kết:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "Chép tên cột." -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "Bấm chuột phải vào tên cột để chép nó vào clipboard của bạn." -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "Tạo mật khẩu" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "Tạo" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "Thêm" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "Hiển thị bảng điều khiển" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "Ẩn bảng điều khiển" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "Hiển thị các mục ẩn cây điều hướng." -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Liên kết với bảng điều khiển chính" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Bỏ liên kết với bảng điều khiển chính" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "Trang đã yêu cầu không tìm thấy trong lịch sử, nó có lẽ đã hết hạn." -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2416,49 +2420,49 @@ msgstr "" "bản mới nhất là %s, phát hành vào %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ", phiên bản ổn định mới nhất:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "đã cập nhật" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "Tạo view" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "Gửi báo cáo lỗi" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "Gửi báo cáo lỗi" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Có lỗi JavaScript nghiêm trọng đã xảy ra. Bạn có muốn gửi báo cáo lỗi không?" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "Thay đổi các cài đặt báo cáo" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "Hiển thị chi tiết báo cáo" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "Việc xuất của bạn chưa hoàn tất, bởi vì giới hạn thực thi thấp ở mức PHP!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2467,59 +2471,59 @@ msgstr "" "Cảnh báo: mẫu đơn trên trang này có nhiều hơn %d trường. Khi được gửi đi, " "một số trường có thể bị bỏ qua, bởi vì phần cấu hình max_input_vars của PHP." -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "Một số lỗi đã thấy trên máy phục vụ!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "Vui lòng xem ở phần dưới của cửa sổ này." -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "Bỏ qua tất" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Với mỗi cài đặt của bạn, chúng hiện đang được gửi đi, vui lòng nhẫn nại." -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "Thực hiện truy vấn này lần nữa?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "Bạn có thực sự muốn xóa đánh dấu này?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "Đã có một số lỗi xảy ra khi lấy thông tin gỡ lỗi SQL." -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "các truy vấn %s thực thi %s lần trong %s giây." -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "đã chuyển qua %s tham số" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "Hiển thị các đối số" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "Ẩn các đối số" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "Thời gian cần:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2528,353 +2532,353 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 msgid "Copy tables to" msgstr "Chép các bảng sang" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Thêm tiền tố cho bảng:" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Thêm tiền tố cho bảng" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Chép bảng với tiền tố" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "Trước" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "Tiếp theo" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "Hôm nay" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "Tháng giêng" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "Tháng hai" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "Tháng ba" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "Tháng tư" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "Tháng năm" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "Tháng sáu" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "Tháng bảy" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "Tháng tám" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "Tháng chín" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "Tháng mười" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "Tháng mười một" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "Tháng mười hai" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "Th1" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "Th2" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "Th3" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "Th4" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "Th5" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "Th6" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "Th7" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "Th8" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "Th9" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "Th10" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "Th10" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "Th12" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "Chủ nhật" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "Thứ hai" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "Thứ ba" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "Thứ tư" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "Thứ năm" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "Thứ sáu" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "Thứ bảy" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "CN" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "T2" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "T3" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "T4" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "T5" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "T6" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "T7" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "CN" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "T2" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "T3" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "T4" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "T5" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "T6" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "T7" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 msgid "Wk" msgstr "Tuần" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:856 +#: js/messages.php:858 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "không" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "Giờ" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "Phút" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "Giây" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "Trường này là bắt buộc" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "Vui lòng sửa trường này" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "Vui lòng nhập một địa chỉ thư hợp lệ" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "Vui lòng nhập một địa chỉ URL hợp lệ" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "Vui lòng nhập ngày tháng hợp lệ" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "Vui lòng nhập ngày tháng hợp lệ ( ISO )" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "Vui lòng nhập con số hợp lệ" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "Vui lòng nhập thẻ tín dụng hợp lệ" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "Vui lòng chỉ nhập số" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "Vui lòng nhập lại giá trị đó một lần nữa" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "Vui lòng nhập vào nhiều hơn {0} ký tự" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "Vui lòng nhập vào ít nhất {0} ký tự" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "Vui lòng nhập vào một giá trị độ dài giữa {0} và {1} ký tự" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "Vui lòng nhập vào một giá trị giữa {0} và {1}" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "Vui lòng nhập vào một giá trị nhỏ hơn hoặc bằng {0}" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "Vui lòng nhập vào một giá trị lớn hơn hoặc bằng {0}" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "Vui lòng nhập vào một ngày tháng hay thời gian hợp lệ" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "Vui lòng nhập vào một HEX hợp lệ" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "Lỗi" @@ -2926,33 +2930,33 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" "Gặp ký tự bất thường tại dòng %1$s. Cần tab, nhưng lại nhận được \"%2$s\"" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Tập tin cấu hình sẵn có (%s) không thể đọc được." -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Tập tin cấu hình được phân quyền không đúng, không thể là ai cũng được đọc!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "Cỡ phông chữ" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "Co lại" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "Mở rộng" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "Truy vấn lại" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2972,75 +2976,58 @@ msgstr "Cơ sở dữ liệu" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "Tổng cộng %d đánh dấu" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "riêng" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "chung" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "%1$s, %2$s và %3$s đánh dấu được bao gồm" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "Không có đánh dấu nào" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "Lưu phiên hiện tại" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "Giải thích" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "Hồ sơ" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "Đánh dấu" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "Truy vấn bị lỗi" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "Thời gian truy vấn" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "Hộp truy vấn SQL" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "Bảng điều khiển" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "Xóa sạch" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Lịch sử" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3058,125 +3045,125 @@ msgstr "Lịch sử" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "Tùy chọn" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "Đánh dấu" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "Gỡ rối SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "Nhấn Ctrl+Enter để thực thi truy vấn" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "Nhấn Enter để thực thi truy vấn" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "tăng dần" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "giảm dần" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "Thứ tự:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "Số lượng" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "Thứ tự thực thi" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "Thời gian cần" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "Xếp theo:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "Nhóm truy vấn" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "Bỏ nhóm các truy vấn" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "Hiện theo dõi" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "Ẩn theo dõi" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "Số lượng:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "Làm tươi lại" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "Thêm" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "Thêm đánh dấu" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "Nhãn" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "Cơ sở dữ liệu đích" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "Đánh đánh dấu này" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "Đặt lại thành mặc định" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "Luôn mở rộng các lời nhắn truy vấn" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "Hiển thị lịch sử truy vấn lúc bắt đầu" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "Hiển thị truy vấn duyệt hiện tại" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3184,17 +3171,17 @@ msgstr "" "Thực thi truy vấn bằng Enter và chèn thêm dòng mới bằng Shift + Enter. Để " "cài lâu dài, xem các cài đặt." -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "Chuyển sang chủ đề tối" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "Gặp lỗi khi đọc tập tin cấu hình!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -3202,19 +3189,19 @@ msgstr "" "Máy phục vụ không trả lời (hoặc ổ cắm mạng của máy phục vụ nội bộ hiện chưa " "được cấu hình)." -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "Máy phục vụ không trả lời." -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "Vui lòng kiểm tra đặc quyền của thư mục chứa cơ sở dữ liệu." -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "Chi tiết…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3523,7 +3510,7 @@ msgstr "Có thể chỉ là ước đoán. Xem [doc@faq3-11]FAQ 3.11[/doc]." #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "Truy vấn SQL của bạn đã được thực hiện thành công." @@ -3643,16 +3630,16 @@ msgstr "Tải tập tin bị dừng bởi phần mở rộng." msgid "Unknown error in file upload." msgstr "Gặp lỗi chưa biết trong tải tập tin" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" "Lỗi di chuyển tập tin đã tải, vui lòng xem [doc@faq1-11]FAQ 1.11[/doc]." -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "Lỗi khi di chuyển tập tin đã tải lên." -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "Không thể đọc tập tin đã tải lên." @@ -3716,8 +3703,8 @@ msgid "Keyname" msgstr "Tên khóa" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3767,13 +3754,13 @@ msgstr "Chỉ mục %s đã được xóa bỏ." #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "Xóa" @@ -3875,7 +3862,7 @@ msgstr "Đặc quyền" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "Thao tác" @@ -3890,7 +3877,7 @@ msgstr "Theo dõi" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4259,11 +4246,11 @@ msgstr "Gặp lỗi khi tạo khóa ngoại trên %1$s (kiểm tra lại kiểu msgid "No valid image path for theme %s found!" msgstr "Không thấy đường dẫn ảnh hợp lệ cho chủ đề %s!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "Không có sẵn xem thử nào." -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "lấy nó" @@ -4528,21 +4515,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "Spatial" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "T.Đa: %s%s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "Thống kê phân tích:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "Đã phát sinh %d lỗi trong quá trình phân tích." -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4553,32 +4540,32 @@ msgstr "Đã phát sinh %d lỗi trong quá trình phân tích." msgid "MySQL said: " msgstr "MySQL đã nói: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "Giải thích SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "Bỏ qua giảng giải SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "Analyze Explain tại %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "Không mã PHP" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "Gửi truy vấn" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "Tạo mã PHP" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "Sửa chung dòng" @@ -4666,6 +4653,10 @@ msgstr "mỗi giờ" msgid "per day" msgstr "mỗi ngày" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "chung" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "Tìm kiếm:" @@ -4770,11 +4761,11 @@ msgstr "Thêm cột mới" msgid "Attributes" msgstr "Thuộc tính" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "Gặp lỗi khi đọc tập tin cấu hình!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -4782,32 +4773,32 @@ msgstr "" "Việc này thường do có lỗi cú pháp trong đó, vui lòng kiểm tra xem các lỗi " "hiển thị bên dưới." -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Không thể tải cấu hình mặc định từ: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "Chỉ mục máy chủ không hợp lệ: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Tên máy không hợp lệ cho máy phục vụ %1$s. Vui lòng xem lại cấu hình của bạn." -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "Máy chủ %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "Phương thức xác thực trong cấu hình không hợp lệ:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4815,24 +4806,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Bạn nên nâng cấp lên %s %s hay bản mới hơn." -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "Lỗi: Không khớp thẻ" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "Cố gắng kết nối gặp lỗi" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "Kết quả có thể" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "Ứng xử phím xóa của vùng số" @@ -5511,13 +5502,13 @@ msgstr "Đặt tên các cột ở hàng đầu tiên" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "Bao các cột bằng" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "Thoát các cột bằng" @@ -5535,12 +5526,12 @@ msgstr "Gỡ bỏ các ký tự CRLF có trong các cột" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "Các cột được chấm dứt bằng" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "Dòng được chấm dứt bằng" @@ -6123,7 +6114,7 @@ msgid "Column names in first row" msgstr "Tên cột trong hàng đầu tiên" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "Không nhập các dòng trống rỗng" @@ -7586,7 +7577,7 @@ msgid "Table %s has been emptied." msgstr "Bảng %s đã được làm trống." #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "View %s đã được xóa bỏ." @@ -7717,8 +7708,8 @@ msgid "No data to display" msgstr "Không có dữ liệu để hiển thị" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7755,52 +7746,52 @@ msgstr[0] "Tên “%s” là từ khóa dành riêng của MySQL." msgid "No column selected." msgstr "Chưa chọn cột nào." -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "Các cột được di chuyển thành công." -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "Lỗi truy vấn" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "Bảng %1$s đã được thay đổi thành công. Đặc quyền đã được chỉnh sửa." -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Thay đổi" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "Chỉ mục" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spatial" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "Toàn văn" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "Giá trị Distinct" @@ -7811,7 +7802,7 @@ msgstr "" "Thiếu phần mở rộng %s. Vui lòng kiểm tra lại phần cấu hình PHP của bạn." #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "Không thay đổi gì" @@ -8558,57 +8549,57 @@ msgstr "MySQL trả về kết quả là trống rỗng (vd. không có hàng n msgid "[ROLLBACK occurred.]" msgstr "[đã nảy sinh ROLLBACK.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Các cấu trúc sau đây hoặc là được tạo hoặc là bị sửa chữa. Ở đây bạn có thể:" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "Xem nội dung của cấu trúc bằng cách bấm vào tên của nó." -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" "Thay đổi bất kỳ các tùy chọn của nó bằng các bấm vào liên kết \"Tùy chọn\" " "tương ứng." -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "Sửa cấu trúc bằng cách bấm vào liên kết \"Cấu trúc\"." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "Chuyển đến cơ sở dữ liệu: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "Sửa các cài đặt cho %s" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "Chuyển đến bảng: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "Cấu trúc của %s" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "Chuyển đến view: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "Chỉ các truy vấn UPDATE và DELETE trên một bảng được mô phỏng." -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8656,55 +8647,55 @@ msgstr "Hoặc" msgid "web server upload directory:" msgstr "thư mục để tải lên máy chủ:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "Sửa/Chèn" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "Tiếp tục chèn với %s hàng" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "và sau đó" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "Chèn hàng mới" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "Chèn hàng mới và bỏ qua các lỗi" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "Hiện câu truy vấn chèn dữ liệu" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "Trở về trang kế trước" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "Chèn thêm một hàng mới nữa" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "Trở lại trang này" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "Sửa hàng kế tiếp" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" "Dùng phím TAB để di chuyển từ giá trị này sang giá trị khác và CTRL+phím mũi " "tên để di chuyển ở chỗ khác." -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8716,11 +8707,11 @@ msgstr "" msgid "Value" msgstr "Giá trị" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "Hiện truy vấn SQL" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "Chỉ số id người dùng kép: %1$d" @@ -9545,7 +9536,7 @@ msgstr "Sửa chữa bảng" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "Xóa dữ liệu hay bảng" @@ -9558,32 +9549,32 @@ msgid "Delete the table (DROP)" msgstr "Xóa bảng (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "Phân tích" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "Kiểm tra" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "Tối ưu hóa" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "Xây dụng lại" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "Sửa chữa" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "Cắt ngắn" @@ -9609,35 +9600,35 @@ msgstr "Xóa phân vùng" msgid "Check referential integrity:" msgstr "Kiểm tra tính nguyên vẹn dữ liệu của đĩa" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "Không thể di chuyển bảng đến cùng một cái!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "Không thể sao chép bảng đến cùng một cái!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "Bảng %s đã được chuyển sang %s. Đặc quyền đã được điều chỉnh lại." -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "Bảng %s đã được chép sang %s. Đặc quyền đã được điều chỉnh lại." -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "Bảng %s được chuyển sang %s." -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "Bảng %s được chép sang %s." -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "Tên bảng còn để trống!" @@ -9810,7 +9801,7 @@ msgstr "Hiển thị hộp thoại tùy chọn" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "Đang đổ dữ liệu cho bảng" @@ -9834,21 +9825,21 @@ msgstr "Định nghĩa" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "Cấu trúc bảng cho bảng" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "Cấu trúc cho view" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "Cấu trúc đóng vai cho view" @@ -9938,7 +9929,7 @@ msgid "Database:" msgstr "Cơ sở dữ liệu:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "Dữ liệu:" @@ -10030,7 +10021,7 @@ msgid "Data creation options" msgstr "Tùy chọn tạo tập tin:" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "Cắt ngắn bảng trước khi chèn" @@ -10110,7 +10101,7 @@ msgstr "Cơ sở dữ liệu của bạn có vẻ như có dùng các hàm;" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "xuất bí danh có thể không làm việc đúng trong mọi trường hợp" @@ -10152,52 +10143,52 @@ msgstr "đang dùng" msgid "It appears your database uses views;" msgstr "Cơ sở dữ liệu của bạn có vẻ như có dùng các view;" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "Các ràng buộc cho các bảng đã đổ" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "Các ràng buộc cho bảng" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "Chỉ mục cho các bảng đã đổ" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "Chỉ mục cho bảng" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "AUTO_INCREMENT cho các bảng đã đổ" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT cho bảng" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "Cơ sở dữ liệu của bạn có vẻ như có dùng các bẫy;" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "Cấu trúc cho view %s được xuất dạng một bảng" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "Gặp lỗi khi đọc dữ liệu:" @@ -10227,7 +10218,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10245,15 +10236,15 @@ msgstr "" msgid "Column names: " msgstr "Tên cột:" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Đối số không hợp lệ cho nhập CSV: %s" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10262,18 +10253,18 @@ msgstr "" "Đã đưa ra cột không hợp lệ (%s)! Hãy chắc là tên các cột được viết đúng, " "ngăn cách bằng dấu phẩy, và không được bao quanh bằng dấu trích dẫn." -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Định dạng CSV đầu vào không hợp lệ tại dòng %d." -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "Số lượng cột trong CSV đầu vào không đúng tại dòng %d." -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "Phần bổ sung này không hỗ trợ nhập khẩu tập tin nén!" @@ -10281,23 +10272,23 @@ msgstr "Phần bổ sung này không hỗ trợ nhập khẩu tập tin nén!" msgid "MediaWiki Table" msgstr "Bảng MediaWiki" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "Định dạng đầu vào của mediawiki không hợp lệ tại dòng:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" "Nhập phần trăm ở dạng thập phân thích hợp (vd. 12.00% thành .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Nhập tiền tệ (vd. $5.00 thành 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -10305,7 +10296,7 @@ msgstr "" "Đặc tả tập tin XML hoặc là sai dạng hoặc là chưa hoàn thiện. Vui lòng sửa " "các lỗi và thử lại." -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "Mở tài liệu định dạng HTML" @@ -10313,12 +10304,12 @@ msgstr "Mở tài liệu định dạng HTML" msgid "ESRI Shape File" msgstr "Tập tin hình ESRI" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "Có lỗi khi nhập vào tập tin hình dạng ESRI: \"%s\"." -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" @@ -10326,12 +10317,12 @@ msgstr "" "Bạn đã cố nhập vào một tập tin không hợp lệ hoặc nhập vào tập tin có chứa dữ " "liệu không hợp lệ!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Spatial Extension không hỗ trợ kiểu ESRI \"%s\"." -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "Tập tin không chứa bất kỳ một dữ liệu có thể nhập vào." @@ -10343,7 +10334,7 @@ msgstr "Chế độ tương thích SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Đừng dùng AUTO_INCREMENT cho các giá trị bằng không" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13094,15 +13085,11 @@ msgstr "Cần giá trị %1$d, nhưng lại nhận được %2$d." msgid "An opening bracket followed by a set of values was expected." msgstr "Cần một dấu ngoặc ôm mở theo sau bởi một tập hợp các giá trị." -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "Cần dấu ngoặc ôm mở." -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "Cần dấu phẩy hoặc dấu ngoặc ôm đóng" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "Cần dấu phẩy hoặc dấu ngoặc ôm đóng." @@ -13115,17 +13102,18 @@ msgstr "Cần dấu ngoặc ôm đóng." msgid "Unrecognized data type." msgstr "Không nhận ra kiểu dữ liệu." -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "Một bí danh đã tìm thấy từ trước đây." -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "Gặp dấu chấm không cần." -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "Cần một bí danh." @@ -13143,19 +13131,19 @@ msgstr "Cần vị trí tương đối." msgid "This option conflicts with \"%1$s\"." msgstr "Tùy chọn này xung đột với \"%1$s\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "Cần tên cũ của bảng." -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "Cần từ khóa \"TO\"." -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "Cần tên mới của bảng." -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "Cần thao tác đổi tên." @@ -13181,15 +13169,15 @@ msgstr "Cần trích dẫn đóng %1$s." msgid "Variable name was expected." msgstr "Cần tên biến." -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "Gặp phần đầu mệnh đề không cần." -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "Không thừa nhận kiểu mệnh đề." -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "Chưa có giao địch nào đã bắt đầu trước đây." @@ -13211,15 +13199,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Không nhận ra từ khóa." -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "Cần tên của thực thể." -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 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:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "Cần từ khóa \"RETURNS\"." @@ -13909,7 +13897,7 @@ msgstr "Tới ô xem bảng sóng" msgid "Invalid table name" msgstr "Tên bảng không hợp lệ" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "Hàng: %1$s, Cột: %2$s, Lỗi: %3$s" @@ -14814,7 +14802,7 @@ msgid "at beginning of table" msgstr "tại đầu của bảng" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "Phân vùng" @@ -14847,7 +14835,7 @@ msgstr "Bảng phân vùng" msgid "Edit partitioning" msgstr "Sửa phân vùng" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "Sửa view" @@ -14962,11 +14950,11 @@ msgstr "Tên VIEW" msgid "Column names" msgstr "Các tên cột" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "Việc đổi tên %s thành %s bị lỗi" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "Xóa bảng (DROP)" @@ -16038,6 +16026,19 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert được đặt thành 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "Tổng cộng %d đánh dấu" + +#~ msgid "private" +#~ msgstr "riêng" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "%1$s, %2$s và %3$s đánh dấu được bao gồm" + +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "Cần dấu phẩy hoặc dấu ngoặc ôm đóng" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/vls.po b/po/vls.po index 89da9a5978..26970d5075 100644 --- a/po/vls.po +++ b/po/vls.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2014-12-23 23:39+0200\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: West Flemish " msgstr "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "" -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1091,155 +1094,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EiB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1251,47 +1254,47 @@ msgstr "" msgid "None" msgstr "" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1299,136 +1302,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1436,7 +1439,7 @@ msgstr "" msgid "Status" msgstr "" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1446,82 +1449,82 @@ msgstr "" msgid "Time" msgstr "Tyd" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1530,63 +1533,63 @@ msgstr "" msgid "Import" msgstr "" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:346 +#: js/messages.php:348 msgid "No parameters found!" msgstr "" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1598,60 +1601,60 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "" -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1661,55 +1664,55 @@ msgstr "" msgid "OK" msgstr "" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1725,44 +1728,44 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1772,7 +1775,7 @@ msgstr "" msgid "Edit" msgstr "Bewerkn" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1783,164 +1786,164 @@ msgstr "Bewerkn" msgid "Delete" msgstr "" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "" -#: js/messages.php:421 +#: js/messages.php:423 #, 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:424 +#: js/messages.php:426 msgid "See more" msgstr "" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -1950,368 +1953,368 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:567 +#: js/messages.php:569 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:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "" -#: js/messages.php:578 +#: js/messages.php:580 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:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2319,105 +2322,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr "" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:666 +#: js/messages.php:668 #, 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:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2426,349 +2429,349 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 msgid "Copy tables to" msgstr "" -#: js/messages.php:712 +#: js/messages.php:714 msgid "Add table prefix" msgstr "" -#: js/messages.php:713 +#: js/messages.php:715 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "januoari" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "februoari" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "moarte" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "april" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "meie" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "juni" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "juli" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "ogustus" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "september" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "oktober" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "november" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "ogu" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "dec" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "zundag" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "moandag" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "diesndag" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "woensdag" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "dunderdag" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "vrydag" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "zoaterdag" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "zu" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "mo" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "di" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "wo" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "du" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "vr" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "zo" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "mo" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "di" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "wo" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "du" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "vr" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "zo" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "" @@ -2818,32 +2821,32 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2863,76 +2866,59 @@ msgstr "" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" msgstr[0] "" msgstr[1] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "Geschiedenisse" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -2950,157 +2936,157 @@ msgstr "Geschiedenisse" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 msgid "Failed to set configured collation connection!" msgstr "" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "" @@ -3411,7 +3397,7 @@ msgstr "" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "" @@ -3528,15 +3514,15 @@ msgstr "" msgid "Unknown error in file upload." msgstr "" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "" @@ -3600,8 +3586,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3651,13 +3637,13 @@ msgstr "" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "" @@ -3755,7 +3741,7 @@ msgstr "" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "" @@ -3770,7 +3756,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4141,11 +4127,11 @@ msgstr "" msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "" @@ -4408,21 +4394,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4433,32 +4419,32 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "" @@ -4546,6 +4532,10 @@ msgstr "" msgid "per day" msgstr "" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "" @@ -4650,41 +4640,41 @@ msgstr "" msgid "Attributes" msgstr "" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4692,24 +4682,24 @@ msgid "" "currently using the default time zone of the database server." msgstr "" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "" @@ -5366,13 +5356,13 @@ msgstr "" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "" @@ -5390,12 +5380,12 @@ msgstr "" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "" @@ -5952,7 +5942,7 @@ msgid "Column names in first row" msgstr "" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "" @@ -7334,7 +7324,7 @@ msgid "Table %s has been emptied." msgstr "" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "" @@ -7464,8 +7454,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7503,52 +7493,52 @@ msgstr[1] "" msgid "No column selected." msgstr "" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "" @@ -7558,7 +7548,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "" @@ -8277,54 +8267,54 @@ msgstr "" msgid "[ROLLBACK occurred.]" msgstr "" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8370,53 +8360,53 @@ msgstr "" msgid "web server upload directory:" msgstr "" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8428,11 +8418,11 @@ msgstr "" msgid "Value" msgstr "" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -9252,7 +9242,7 @@ msgstr "" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "" @@ -9265,32 +9255,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9316,35 +9306,35 @@ msgstr "" msgid "Check referential integrity:" msgstr "" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "" @@ -9513,7 +9503,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "" @@ -9537,21 +9527,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "" @@ -9641,7 +9631,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "" @@ -9733,7 +9723,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "" @@ -9802,7 +9792,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9844,52 +9834,52 @@ msgstr "" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "" @@ -9919,7 +9909,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -9937,33 +9927,33 @@ msgstr "" msgid "Column names: " msgstr "" -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "" @@ -9971,28 +9961,28 @@ msgstr "" msgid "MediaWiki Table" msgstr "" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "" @@ -10000,23 +9990,23 @@ msgstr "" msgid "ESRI Shape File" msgstr "" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "" @@ -10028,7 +10018,7 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -12733,15 +12723,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "" @@ -12754,17 +12740,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "" @@ -12782,19 +12769,19 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "" @@ -12820,15 +12807,15 @@ msgstr "" msgid "Variable name was expected." msgstr "" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -12849,15 +12836,15 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -13515,7 +13502,7 @@ msgstr "" msgid "Invalid table name" msgstr "" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -14413,7 +14400,7 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "" @@ -14446,7 +14433,7 @@ msgstr "" msgid "Edit partitioning" msgstr "" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "" @@ -14561,11 +14548,11 @@ msgstr "" msgid "Column names" msgstr "" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index e372085852..f4db88a2c1 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2015-11-19 08:10+0000\n" "Last-Translator: disorderman \n" "Language-Team: Chinese (China) 若要转换已经存在的数据,建议您使用表结构的页面上的列编辑功能" "(“修改”链接)。" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "您确定希望修改所有的列排序规则并且转换数据吗?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "保存并关闭" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "重置" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "重置" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "表单内缺少值!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "请至少选择一项!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "请输入一个有效的数字!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "请输入一个有效的长度!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "添加索引" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "编辑索引" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "添加 %s 个字段至索引" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "创建单列索引" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "创建复合索引" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "复合对象:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "请为索引选择列。" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "至少要添加一个字段。" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "预览 SQL 语句" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "模拟查询" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "受影响的行数:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL 查询:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "纵轴值" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "主机名不能为空!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "用户名不能为空!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "密码不能为空!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "两次密码不一致!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "正在删除选中的用户" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "关闭" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "模板已被创建。" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "模板已被加载。" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "模板己被更新。" -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "模板已被删除。" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "其它" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "连接 / 进程" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "本地监控设置不兼容!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1123,155 +1126,155 @@ msgstr "" "您浏览器本地存储中的图表设置不兼容于新版的监控对话框。所以您当前的设置可能不" "再有效。请通过设置菜单恢复默认设置。" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "查询缓存效率" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "查询缓存使用" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "已用查询缓存" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "系统 CPU 使用" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "系统内存" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "系统交换空间" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "平均负载" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "内存总量" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "已缓存的内存" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "已缓冲的内存" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "空闲内存" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "已用内存" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "交换空间总量" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "已缓存的交换空间" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "已用交换空间" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "空闲交换空间" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "已发送字节数" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "已接收字节数" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "连接" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "进程" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "字节" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d 张表" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "内部查询" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "流量" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "设置" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "添加图表" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "请至少添加一个数据!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1283,47 +1286,47 @@ msgstr "请至少添加一个数据!" msgid "None" msgstr "无" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "继续监控" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "暂停监控" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "开启自动刷新" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "停止自动刷新" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "已启用 general_log 和 slow_query_log。" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "已启用 general_log。" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "已启用 slow_query_log。" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "未启用 slow_query_log 和 general_log。" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "未设置 log_output 为 TABLE。" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "已设置 log_output 为 TABLE。" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1333,98 +1336,98 @@ msgstr "" "已启用 slow_query_log,但服务器仅记录查询时间超过 %d 秒的查询。请根据您的系统" "适当设置 long_query_time 为 0-2 秒。" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "已设置 long_query_time 为 %d 秒。" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "下列设置将被应用到整个服务器直到服务器重新启动:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "设置 log_output 为 %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "启用 %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "禁用 %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "设置 long_query_time 为 %d 秒。" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "无法修改这些变量。请以 root 登录或联系数据库管理员。" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "修改设置" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "当前设置" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "图表标题" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "差异" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "除以 %s" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "单位" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "从慢查询日志" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "从常规日志" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "本次查询使用的数据库名称在服务器日志中未知。" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "正在分析日志" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "正在分析并加载日志。请稍候。" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "取消请求" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1433,7 +1436,7 @@ msgstr "" "该列显示了已分组的相同查询数量。然而只有 SQL 查询本身被作为分组依据,所以查询" "的其它属性,如开始时间可能不同。" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1442,31 +1445,31 @@ msgstr "" "因选择了分组 INSERT 查询,对相同表的 INSERT 查询将忽略插入的数据而被分为一" "组。" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "已加载日志数据。该时间段执行的查询:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "转到日志表" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "未找到数据" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "已分析日志,但在该时间段内没有找到数据。" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "正在分析…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "解析输出" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1474,7 +1477,7 @@ msgstr "解析输出" msgid "Status" msgstr "状态" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1484,58 +1487,58 @@ msgstr "状态" msgid "Time" msgstr "时间" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "总时间:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "性能分析结果" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "表格" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "图表" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "日志表筛选选项" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "筛选" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "根据内容/正则表达式筛选:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "忽略 WHERE 从句中的变量值对查询分组" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "分组后的行数:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "总数:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "正在加载日志" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "刷新监控失败" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1544,24 +1547,24 @@ msgstr "" "请求新图表数据时服务器返回了无效数据。这很可能是因为您的会话已过期所造成的。" "请尝试重新载入页面并重新登录。" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "重新载入页面" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "影响的行数:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "解析配置文件失败。它似乎不是有效的 JSON 代码。" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "使用导入的设置建立图表失败。正在重设为默认设置…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1570,65 +1573,65 @@ msgstr "使用导入的设置建立图表失败。正在重设为默认设置… msgid "Import" msgstr "导入" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "导入监控设置" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "请选择您要导入的文件。" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "服务器上没有可用文件来导入!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "分析查询" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "建议系统" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "可能存在的性能问题" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "问题" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "建议" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "规则细节" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "现状" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "使用的变量/公式" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "检验" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "正在格式化SQL……" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "参数无效!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1640,60 +1643,60 @@ msgstr "参数无效!" msgid "Cancel" msgstr "取消" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "页面相关设置" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "应用" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "正在加载…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "请求已放弃!!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "正在处理请求" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "请求失败!!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "处理请求时的错误" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "错误代码:%s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "错误信息:%s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "没有已选择的数据库。" -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "正在删除字段" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "正在添加主键" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1703,55 +1706,55 @@ msgstr "正在添加主键" msgid "OK" msgstr "确定" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "点击隐藏该提示" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "正在重命名数据库" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "正在复制数据库" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "正在修改字符集" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "启用外键约束" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "获取实际行数失败。" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "正在搜索" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "隐藏搜索结果" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "显示搜索结果" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "正在浏览" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "正在删除" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "函数定义中必须包含 RETURN 语句!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1767,44 +1770,44 @@ msgstr "函数定义中必须包含 RETURN 语句!" msgid "Export" msgstr "导出" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET 编辑器" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "字段 %s 的值" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "新字段的值" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "每个输入框一个值。" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "添加 %d 个值" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "注意:如果文件包含多张表,它们将会被合并到一起。" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "隐藏查询框" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "显示查询框" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1814,7 +1817,7 @@ msgstr "显示查询框" msgid "Edit" msgstr "编辑" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1825,41 +1828,41 @@ msgstr "编辑" msgid "Delete" msgstr "删除" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d 不是有效行数。" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "浏览不相关的值" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "不自动保存查询" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "变量 %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "检出" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "列选择器" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "在该列表中搜索" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1867,123 +1870,123 @@ msgid "" msgstr "" "中心列表中没有列。请确保数据库 %s 的中心列表存在没有显示在当前表中的列。" -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "显示更多" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "请核实信息?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "该操作有可能影响一些列的定义
你确认做此更改吗?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "继续" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "添加主键" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "主键已添加。" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "等待进入下一步…" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "表“%s”标准化过程的第一步已经完成。" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "完成" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "标准化第二步(2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "完成" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "确认局部依赖" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "下面是已经选择的局部依赖:" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "没有已选择的局部依赖!" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "显示基于表中数据可能的局部依赖" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "隐藏局部依赖列表" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "坐好啦!取决于数据大小和表的列数,这可能需要几秒钟。" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "步骤" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "下列操作将被执行:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "将列 %s 从表 %s 中删除" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "创建下列表" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "标准化第三步(3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "确认传递依赖" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "下面是已经选择的依赖:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "没有已选择的依赖!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -1993,234 +1996,234 @@ msgstr "没有已选择的依赖!" msgid "Save" msgstr "保存" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "隐藏搜索条件" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "显示搜索条件" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "范围搜索" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "最大列数目:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "最小列数目:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "最小值:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "最大值:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "隐藏搜索替换条件" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "显示搜索替换条件" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "每个点代表一个数据行。" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "悬浮至一个点上会显示它的标签。" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "要放大,请用鼠标选择图表的一块区域。" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "点击重置缩放按钮以回到初始状态。" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "点击数据点以查看或编辑数据行。" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "拖拽右下角以改变图表大小。" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "选择两列" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "选择两个不同的列" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "数据点内容" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "忽略" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "复制" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "点" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "线" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "多边形" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "几何体" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "内环" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "外环" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "是否要复制加密密匙?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "加密密匙" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "检测到您已经对页面做出了修改。因此在您放弃改动时会提示您确认" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "选择外键" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "选择外键" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "请选择主键或唯一键!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "选择要显示的字段" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "页面名称" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "保存页面" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "保存页面为" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "打开页面" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "删除页面" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "未命名" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "请选择一个页面" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "请输入有效页面名称" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "是否保存对该页面的更改?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "成功删除页面" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "导出关系模式" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "已保存修改" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "给字段“%s”添加选项。" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "已创建 %d 个对象。" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "提交" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "按 Esc 键取消编辑。" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "拖拽以调整顺序。" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "点此排序此列的结果。" -#: js/messages.php:567 +#: js/messages.php:569 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 " @@ -2230,26 +2233,26 @@ msgstr "" "
使用 Ctrl+Click 或者 Alt+Click (Mac:Shift+Option+Click )即可将列从 " "ORDER BY 语句中移除" -#: js/messages.php:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "点击以标记/取消标记。" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "双击以复制字段名。" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "点击下箭头
以设置显示的字段。" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "显示全部" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2257,109 +2260,109 @@ msgstr "" "该表没有唯一字段。在保存后单元格编辑、多选、编辑、复制和删除等功能可能无法正" "常使用。" -#: js/messages.php:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "请输入一个有效的十六进制字符串。只有0-9和A-F为有效字符。" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "您真的想要查看所有的行吗?若表过大可能会导致浏览器崩溃。" -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "原始长度" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "取消" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "已取消" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "成功" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "导入状态" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "将文件拖动至此" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "先选择数据库" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "打印" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "您可以直接双击大部分
单元格以修改其值。" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "您可以直接点击大部分
单元格以修改其值。" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "前往:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "复制字段名。" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "在字段名上右键以复制到剪贴板。" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "生成密码" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "生成" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "更多" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "显示导航面板" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "隐藏导航面板" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "显示隐藏的导航树节点。" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "与主面板链接" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "从主面板取消链接" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "没有在历史记录中找到所请求的页面,页面可能已过期。" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2367,47 +2370,47 @@ msgid "" msgstr "phpMyAdmin 有新版本了,请您考虑升级。最新的版本是 %s,于 %s 发布。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ",最新稳定版本:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "已更新" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "新建视图" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "发送错误报告" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "提交错误报告" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "发生致命JavaScript错误。是否发送错误报告?" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "更改报告设置" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "显示报告详细信息" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "由于PHP设置的执行限制时间过低,您的导入未能完成!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2416,58 +2419,58 @@ msgstr "" "警告:当前表单包含的字段多于 %d,受限于 PHP 中 max_input_vars 值的配置,该次" "提交有可能忽略其中一部分。" -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "在服务上检测到错误!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "请查看此窗口的底部。" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "忽略全部" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "正在提交您的设置,请耐心等待。" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "再次执行该查询?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "您真的要删除该书签吗?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "获取SQL调试信息时出错。" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s查询已执行%s次,耗时%s秒。" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "%s 个参数已传递" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "显示注释" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "隐藏注释" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "用时:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2476,355 +2479,355 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "复制数据库到" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "添加表前缀:" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "修改表前缀" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "复制表为新前缀" -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "上个月" -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "下个月" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "今天" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "一月" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "二月" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "三月" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "四月" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "五月" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "六月" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "七月" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "八月" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "九月" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "十月" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "十一月" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "十二月" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "星期日" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "星期一" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "星期二" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "星期三" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "星期四" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "星期五" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "周日" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "周一" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "周二" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "周三" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "周四" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "周五" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "周六" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "一" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "二" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "三" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "四" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "五" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "六" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "年" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "时" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "分" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "秒" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "此字段为必须字段" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "请修改这个字段" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "请输入有效的Email地址" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "请输入一个有效的链接地址" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "请输入有效的日期" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "请输入有效的日期(ISO标准格式)" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "请输入一个有效的数字" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "请输入一个有效的银行卡号码" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "请输入纯数字" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "请重输一遍" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "请输入不超过{0}位字符" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "请输入大于{0}位字符" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "请输入一个 {0} 和 {1} 字符长度之间的值" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "请输入 {0} 和 {1}之间的一个值" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "请输入一个小于或等于 {0} 的值" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "请输入一个大于或等于 {0} 的值" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "请输入有效的日期或时间" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "请输入一个有效的HEX值" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "错误" @@ -2874,32 +2877,32 @@ msgstr "第 %s 行有不应出现的字符。" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "第 %1$s 行有不应出现的字符。应是制表符,而不是“%2$s”。" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "现有的配置文件(%s)是不可读的。" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "配置文件权限错误,不应任何用户都能修改!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "字号" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "崩溃" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "扩展" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "重新查询" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2919,75 +2922,58 @@ msgstr "数据库" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "共计 %d 个书签" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "私有" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "已共享" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "共计%1$s个书签,其中包括私有书签%2$s个和共享书签%3$s个" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "没有书签" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "在当前会话期间" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "解析" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "性能分析" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "书签" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "查询失败" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "查询时间" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "SQL 查询控制台" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "控制台" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "清除" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "历史" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3005,159 +2991,159 @@ msgstr "历史" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "选项" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "书签" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "调试 SQL" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "按 Ctrl+Enter 键执行查询" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "按 Enter 执行查询" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "递增排序" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "递减排序" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "命令:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "数量" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "运行顺序" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "用时" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "排序条件:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "联合查询" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "不使用联合查询" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "显示跟踪" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "隐藏跟踪" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "记录数:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "刷新" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "添加" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "添加书签" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "标签" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "目标数据库" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "共享和谐书签" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "恢复默认" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "总是扩展查询消息" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "在开始时显示查询历史" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "显示当前浏览查询" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." msgstr "浏览设置,使按Shift+Enter键执行输入和插入新行作为永久设置。" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "切换到黑色主题" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "读取配置文件失败!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "服务器没有响应(或本地服务器的套接字没有正确设置)。" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "服务器没有响应。" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "请检查数据库所在文件夹的权限。" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "详细…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "使用配置文件中定义的控制用户连接失败。" @@ -3466,7 +3452,7 @@ msgstr "可能是近似值。参见[doc@faq3-11]常见问题 3.11[/doc]。" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "您的 SQL 语句已成功运行。" @@ -3583,15 +3569,15 @@ msgstr "扩展停止了文件上传。" msgid "Unknown error in file upload." msgstr "上传文件时发生未知错误。" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "移动已上传的文件时发生错误,参见[doc@faq1-11]常见问题 1.11[/doc]。" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "移动已上传的文件时发生错误。" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "无法读取上传的文件。" @@ -3655,8 +3641,8 @@ msgid "Keyname" msgstr "键名" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3706,13 +3692,13 @@ msgstr "已删除索引 %s。" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "删除" @@ -3810,7 +3796,7 @@ msgstr "权限" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "操作" @@ -3825,7 +3811,7 @@ msgstr "追踪" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4192,11 +4178,11 @@ msgstr "在 %1$s 创建外键时发生错误 (检查数据类型)" msgid "No valid image path for theme %s found!" msgstr "找不到主题 %s 的有效图片路径!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "没有可用的预览。" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "确定" @@ -4491,21 +4477,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "空间" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "最大限制:%s %s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "静态分析:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "分析时发现%d个错误。" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4516,32 +4502,32 @@ msgstr "分析时发现%d个错误。" msgid "MySQL said: " msgstr "MySQL 返回: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "解析 SQL" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "略过解析 SQL" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "分析解释了%s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 msgid "Without PHP code" msgstr "无 PHP 代码" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 msgid "Submit query" msgstr "提交查询" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "创建 PHP 代码" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "编辑内嵌" @@ -4629,6 +4615,10 @@ msgstr "每小时" msgid "per day" msgstr "每天" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "已共享" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "搜索:" @@ -4733,41 +4723,41 @@ msgstr "添加新字段" msgid "Attributes" msgstr "属性" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "读取配置文件失败!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "这通常意味着文件中有语法错误,请检查下面显示出的错误。" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "无法加载默认设置:%1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "无效的服务器索引:%s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "服务器 %1$s 的主机名无效。请复查您的设置。" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "服务器 %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "配置文件中设置的认证方式无效:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4777,24 +4767,24 @@ msgstr "" "无法为服务器 %2$d 设置时区 %1$s 。请检查您的配置中 [em]$cfg['Servers'][%3$d]" "['SessionTimeZone'][/em] 字段。服务器当前使用默认时区。" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "您应升级到 %s %s 或更高版本。" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "错误:令牌不符" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "企图覆盖 GLOBALS" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "检测到有利用漏洞的企图" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "检测到数字索引" @@ -5482,13 +5472,13 @@ msgstr "首行保存字段名" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "内容分隔符" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "内容转义符" @@ -5506,12 +5496,12 @@ msgstr "删除内容中的回车换行符" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "字段分隔符" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "换行符" @@ -6081,7 +6071,7 @@ msgid "Column names in first row" msgstr "首行为字段名" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "不导入空行" @@ -7526,7 +7516,7 @@ msgid "Table %s has been emptied." msgstr "已清空表 %s。" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "已删除视图 %s。" @@ -7657,8 +7647,8 @@ msgid "No data to display" msgstr "没有可显示数据" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7699,52 +7689,52 @@ msgstr[0] "名称 '%s' 是一个MySQL 保留关键字。" msgid "No column selected." msgstr "没有选中任何列。" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "已成功移动字段。" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "查询错误" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "已成功修改表 %1$s。已调整权限。" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "修改" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "索引" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "空间" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "全文搜索" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "非重复值 (DISTINCT)" @@ -7754,7 +7744,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "缺少 %s 扩展。请检查 PHP 配置。" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "无更改" @@ -8504,54 +8494,54 @@ msgstr "MySQL 返回的查询结果为空 (即零行)。" msgid "[ROLLBACK occurred.]" msgstr "[发生 ROLLBACK.]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "下列结构被创建或修改。你可以:" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "请通过点击结构的名称来查看它的内容。" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "点击相应的“选项”链接修改设置。" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "请通过点击 \"结构\" 链接来编辑结构." -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "转到数据库: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "编辑 %s 的设置" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "转到表: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s 的结构" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "转到视图: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "只能预览单一数据表的UPDATE和DELETE查询。" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 #, fuzzy msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " @@ -8600,53 +8590,53 @@ msgstr "或" msgid "web server upload directory:" msgstr "网站服务器上传文件夹:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "编辑/插入" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "继续插入 %s 行" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "然后" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "以新行插入" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "以新行插入 (忽略错误)" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "显示插入语句" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "返回上一页" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "插入新数据" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "返回到本页" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "编辑下一行" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动." -#: libraries/insert_edit.lib.php:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8658,11 +8648,11 @@ msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动." msgid "Value" msgstr "值" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "显示 SQL 查询" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" @@ -9509,7 +9499,7 @@ msgstr "修复表" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "删除数据或数据表" @@ -9522,32 +9512,32 @@ msgid "Delete the table (DROP)" msgstr "删除数据表 (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "分析" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "检查" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "优化" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "重建" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "修复" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "" @@ -9575,35 +9565,35 @@ msgstr "删除分区" msgid "Check referential integrity:" msgstr "检查引用完整性:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "目标数据表不能为源数据表!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "目标数据表不能为源数据表!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "已将数据表 %s 移动到 %s。已调整权限。" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "已将数据表 %s 复制为 %s。已调整权限。" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "已将数据表 %s 移动到 %s。" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "已将数据表 %s 复制为 %s。" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "表名不能为空!" @@ -9777,7 +9767,7 @@ msgstr "数据转储选项" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "转存表中的数据" @@ -9801,21 +9791,21 @@ msgstr "定义" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "表的结构" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "视图结构" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "替换视图以便查看" @@ -9921,7 +9911,7 @@ msgid "Database:" msgstr "数据库" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10027,7 +10017,7 @@ msgid "Data creation options" msgstr "数据创建选项" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "插入之前先把表清空(truncate)" @@ -10110,7 +10100,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10156,57 +10146,57 @@ msgstr "使用中" msgid "It appears your database uses views;" msgstr "" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "限制导出的表" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "限制表" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 #, fuzzy #| msgid "Constraints for dumped tables" msgid "Indexes for dumped tables" msgstr "限制导出的表" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 #, fuzzy #| msgid "Inside tables:" msgid "Indexes for table" msgstr "于下列表:" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "在导出的表使用AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "使用表AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME 类型表" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "表的关联" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "视图结构" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "读取数据时发生错误:" @@ -10240,7 +10230,7 @@ msgid "" msgstr "" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10260,15 +10250,15 @@ msgstr "" msgid "Column names: " msgstr "字段名: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "导入 CSV 文件 %s 时有无效参数" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10277,18 +10267,18 @@ msgstr "" "无效字段 (%s)!请检查字段名是否拼写正确,使用半角逗号分隔,并且不要用引号括" "起。" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "CSV 输入的第 %d 行格式有错。" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "CSV 输入的第 %d 行字段数有错。" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "该插件不支持导入文件!" @@ -10296,28 +10286,28 @@ msgstr "该插件不支持导入文件!" msgid "MediaWiki Table" msgstr "MediaWiki 表" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "mediawiki输入在此行存在格式错误:
%s。" -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "导入百分数为小数 (如: 12.00% 将被导入为 .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "导入货币 (如: $5.00 将被导入为 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "该 XML 文件有错误或者不完整。请修复错误后重试。" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 #, fuzzy #| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreadsheet!" @@ -10327,12 +10317,12 @@ msgstr "OpenOffice 表格" msgid "ESRI Shape File" msgstr "ESRI 图形文件" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "导入 ESRI 图形文件时出错: \"%s\"。" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 #, fuzzy #| msgid "" #| "You tried to import an invalid file or the imported file contains invalid " @@ -10342,12 +10332,12 @@ msgid "" "data!" msgstr "您要导入的文件无效或文件中含有无效数据" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Spatial 扩展不支持 ESRI 类型 \"%s\"。" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 #, fuzzy #| msgid "The imported file does not contain any data" msgid "The imported file does not contain any data!" @@ -10361,7 +10351,7 @@ msgstr "SQL 兼容模式:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "不要给零值使用自增 (AUTO_INCREMENT)" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13388,15 +13378,11 @@ msgstr "" msgid "An opening bracket followed by a set of values was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 #, fuzzy #| msgid "No databases selected." @@ -13411,17 +13397,18 @@ msgstr "" msgid "Unrecognized data type." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 #, fuzzy #| msgid "No databases selected." msgid "An alias was expected." @@ -13443,23 +13430,23 @@ msgstr "" msgid "This option conflicts with \"%1$s\"." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 #, fuzzy #| msgid "The number of tables that are open." msgid "The old name of the table was expected." msgstr "打开的数据表个数。" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 #, fuzzy #| msgid "The number of tables that are open." msgid "The new name of the table was expected." msgstr "打开的数据表个数。" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 #, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." @@ -13492,17 +13479,17 @@ msgstr "已创建事件 %1$s 。" msgid "Variable name was expected." msgstr "表名称模板" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 #, fuzzy #| msgid "At Beginning of Table" msgid "Unexpected beginning of statement." msgstr "于表开头" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "" @@ -13525,19 +13512,19 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 #, 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:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 #, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." msgstr "已删除该行。" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "" @@ -14242,7 +14229,7 @@ msgstr "查看数据表的转储(大纲)" msgid "Invalid table name" msgstr "表名无效" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "" @@ -15278,7 +15265,7 @@ msgid "at beginning of table" msgstr "于表开头" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "分区" @@ -15325,7 +15312,7 @@ msgstr "已分区" msgid "Edit partitioning" msgstr "删除分区" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "编辑视图" @@ -15452,11 +15439,11 @@ msgstr "视图名" msgid "Column names" msgstr "字段名" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "将视图改名为" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "删除视图(DROP)" @@ -16612,6 +16599,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 被设为 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "共计 %d 个书签" + +#~ msgid "private" +#~ msgstr "私有" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "共计%1$s个书签,其中包括私有书签%2$s个和共享书签%3$s个" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" diff --git a/po/zh_TW.po b/po/zh_TW.po index f31e47a231..d1f1fe9857 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-02-08 09:42+0100\n" +"POT-Creation-Date: 2016-02-17 11:57+0100\n" "PO-Revision-Date: 2016-01-09 03:03+0000\n" "Last-Translator: Kelvin Lee \n" "Language-Team: Chinese (Taiwan) 建議使用於資料表結構頁面的欄位編輯功能 (\"更改\" 連結) 來轉換現有的資料。" "" -#: js/messages.php:107 +#: js/messages.php:109 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "您確定您要更改所有欄位編碼與排序(Collation)並轉換資料?" -#: js/messages.php:111 +#: js/messages.php:113 msgid "Save & close" msgstr "儲存並關閉" -#: js/messages.php:112 libraries/config/FormDisplay.tpl.php:424 -#: libraries/insert_edit.lib.php:1553 prefs_manage.php:360 prefs_manage.php:371 +#: js/messages.php:114 libraries/config/FormDisplay.tpl.php:424 +#: libraries/insert_edit.lib.php:1560 prefs_manage.php:360 prefs_manage.php:371 msgid "Reset" msgstr "重新設定" -#: js/messages.php:113 +#: js/messages.php:115 msgid "Reset all" msgstr "全部重設" -#: js/messages.php:116 +#: js/messages.php:118 msgid "Missing value in the form!" msgstr "表單內尚有資料值未填寫!" -#: js/messages.php:117 +#: js/messages.php:119 msgid "Select at least one of the options!" msgstr "選至少選擇其中一個項目!" -#: js/messages.php:118 +#: js/messages.php:120 msgid "Please enter a valid number!" msgstr "請輸入一個有效的數字!" -#: js/messages.php:119 +#: js/messages.php:121 msgid "Please enter a valid length!" msgstr "請輸入一個有效的長度!" -#: js/messages.php:120 +#: js/messages.php:122 msgid "Add index" msgstr "新增索引" -#: js/messages.php:121 +#: js/messages.php:123 msgid "Edit index" msgstr "編輯索引" -#: js/messages.php:122 templates/table/index_form.phtml:237 +#: js/messages.php:124 templates/table/index_form.phtml:237 #, php-format msgid "Add %s column(s) to index" msgstr "增加 %s 個欄位至索引" -#: js/messages.php:123 +#: js/messages.php:125 msgid "Create single-column index" msgstr "建立單一欄位索引" -#: js/messages.php:124 +#: js/messages.php:126 msgid "Create composite index" msgstr "建立組合索引" -#: js/messages.php:125 +#: js/messages.php:127 msgid "Composite with:" msgstr "組合使用:" -#: js/messages.php:126 +#: js/messages.php:128 msgid "Please select column(s) for the index." msgstr "請選擇要建立索引的欄位。" -#: js/messages.php:129 templates/table/structure/add_column.phtml:1 +#: js/messages.php:131 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "至少要增加一個欄位。" -#: js/messages.php:132 libraries/insert_edit.lib.php:1551 +#: js/messages.php:134 libraries/insert_edit.lib.php:1558 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 #: templates/table/relation/common_form.phtml:126 msgid "Preview SQL" msgstr "預覽 SQL" -#: js/messages.php:135 +#: js/messages.php:137 msgid "Simulate query" msgstr "模擬查詢" -#: js/messages.php:136 +#: js/messages.php:138 msgid "Matched rows:" msgstr "符合條件的列數:" -#: js/messages.php:137 libraries/Util.php:697 +#: js/messages.php:139 libraries/Util.php:696 msgid "SQL query:" msgstr "SQL 查詢:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:141 +#: js/messages.php:143 msgid "Y values" msgstr "Y 軸值" -#: js/messages.php:144 +#: js/messages.php:146 msgid "The host name is empty!" msgstr "您尚未填寫主機名稱!" -#: js/messages.php:145 +#: js/messages.php:147 msgid "The user name is empty!" msgstr "您尚未填寫使用者帳號!" -#: js/messages.php:146 libraries/server_privileges.lib.php:2037 +#: js/messages.php:148 libraries/server_privileges.lib.php:2037 #: user_password.php:116 msgid "The password is empty!" msgstr "您尚未填寫密碼!" -#: js/messages.php:147 libraries/server_privileges.lib.php:2035 +#: js/messages.php:149 libraries/server_privileges.lib.php:2035 #: user_password.php:120 msgid "The passwords aren't the same!" msgstr "兩次輸入的密碼不一致!" -#: js/messages.php:148 +#: js/messages.php:150 msgid "Removing Selected Users" msgstr "正在刪除已選擇的使用者" -#: js/messages.php:149 js/messages.php:216 libraries/tracking.lib.php:471 +#: js/messages.php:151 js/messages.php:218 libraries/tracking.lib.php:471 #: libraries/tracking.lib.php:841 msgid "Close" msgstr "關閉" -#: js/messages.php:152 +#: js/messages.php:154 msgid "Template was created." msgstr "已建立樣板。" -#: js/messages.php:153 +#: js/messages.php:155 msgid "Template was loaded." msgstr "已讀取樣板。" -#: js/messages.php:154 +#: js/messages.php:156 msgid "Template was updated." msgstr "己更新樣板。" -#: js/messages.php:155 +#: js/messages.php:157 msgid "Template was deleted." msgstr "已刪除樣板。" #. l10n: Other, small valued, queries -#: js/messages.php:158 libraries/ServerStatusData.php:130 +#: js/messages.php:160 libraries/ServerStatusData.php:130 #: libraries/server_status_queries.lib.php:145 msgid "Other" msgstr "其他" #. l10n: Thousands separator -#: js/messages.php:160 libraries/Util.php:1491 +#: js/messages.php:162 libraries/Util.php:1491 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:162 libraries/Util.php:1493 +#: js/messages.php:164 libraries/Util.php:1493 msgid "." msgstr "." -#: js/messages.php:164 +#: js/messages.php:166 msgid "Connections / Processes" msgstr "連線 / 程序" -#: js/messages.php:168 +#: js/messages.php:170 msgid "Local monitor configuration incompatible!" msgstr "本地端即時監控設定檔不相容!" -#: js/messages.php:170 +#: js/messages.php:172 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1135,155 +1138,155 @@ msgstr "" "在您瀏覽器內的圖表版面設定無法相容於新版的即時監控,可能已無法使用。 請於" "「設定」選單中重新設定以避免發生不可預期的錯誤。" -#: js/messages.php:176 +#: js/messages.php:178 msgid "Query cache efficiency" msgstr "查詢快取有效率" -#: js/messages.php:177 +#: js/messages.php:179 msgid "Query cache usage" msgstr "查詢快取使用率" -#: js/messages.php:178 +#: js/messages.php:180 msgid "Query cache used" msgstr "查詢快取已使用" -#: js/messages.php:180 +#: js/messages.php:182 msgid "System CPU usage" msgstr "系統 CPU 使用率" -#: js/messages.php:181 +#: js/messages.php:183 msgid "System memory" msgstr "系統記憶體" -#: js/messages.php:182 +#: js/messages.php:184 msgid "System swap" msgstr "系統暫存區" -#: js/messages.php:184 +#: js/messages.php:186 msgid "Average load" msgstr "平均負載" -#: js/messages.php:185 +#: js/messages.php:187 msgid "Total memory" msgstr "記憶體總計" -#: js/messages.php:186 +#: js/messages.php:188 msgid "Cached memory" msgstr "已快取記憶體" -#: js/messages.php:187 +#: js/messages.php:189 msgid "Buffered memory" msgstr "已緩衝記憶體" -#: js/messages.php:188 +#: js/messages.php:190 msgid "Free memory" msgstr "閒置記憶體" -#: js/messages.php:189 +#: js/messages.php:191 msgid "Used memory" msgstr "已使用記憶體" -#: js/messages.php:191 +#: js/messages.php:193 msgid "Total swap" msgstr "交換空間總計" -#: js/messages.php:192 +#: js/messages.php:194 msgid "Cached swap" msgstr "已快取交換空間" -#: js/messages.php:193 +#: js/messages.php:195 msgid "Used swap" msgstr "已使用交換空間" -#: js/messages.php:194 +#: js/messages.php:196 msgid "Free swap" msgstr "未使用交換空間" -#: js/messages.php:196 +#: js/messages.php:198 msgid "Bytes sent" msgstr "已送出的位元組" -#: js/messages.php:197 +#: js/messages.php:199 msgid "Bytes received" msgstr "已接收的位元組" -#: js/messages.php:198 libraries/server_status.lib.php:232 +#: js/messages.php:200 libraries/server_status.lib.php:232 msgid "Connections" msgstr "連線" -#: js/messages.php:199 libraries/ServerStatusData.php:426 +#: js/messages.php:201 libraries/ServerStatusData.php:426 #: libraries/server_status_processes.lib.php:129 msgid "Processes" msgstr "程序" #. l10n: shortcuts for Byte -#: js/messages.php:202 libraries/Util.php:1435 +#: js/messages.php:204 libraries/Util.php:1435 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:203 libraries/Util.php:1437 +#: js/messages.php:205 libraries/Util.php:1437 #: libraries/server_status_monitor.lib.php:213 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:204 libraries/Util.php:1439 +#: js/messages.php:206 libraries/Util.php:1439 #: libraries/display_export.lib.php:842 #: libraries/server_status_monitor.lib.php:214 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:205 libraries/Util.php:1441 +#: js/messages.php:207 libraries/Util.php:1441 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:206 libraries/Util.php:1443 +#: js/messages.php:208 libraries/Util.php:1443 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:207 libraries/Util.php:1445 +#: js/messages.php:209 libraries/Util.php:1445 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:208 libraries/Util.php:1447 +#: js/messages.php:210 libraries/Util.php:1447 msgid "EiB" msgstr "EB" -#: js/messages.php:209 +#: js/messages.php:211 #, php-format msgid "%d table(s)" msgstr "%d 個資料表" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:212 +#: js/messages.php:214 msgid "Questions" msgstr "查詢次數" -#: js/messages.php:213 libraries/server_status.lib.php:140 +#: js/messages.php:215 libraries/server_status.lib.php:140 msgid "Traffic" msgstr "流量" -#: js/messages.php:214 libraries/Menu.php:585 libraries/Util.php:4326 +#: js/messages.php:216 libraries/Menu.php:585 libraries/Util.php:4326 #: libraries/server_status_monitor.lib.php:253 msgid "Settings" msgstr "設定" -#: js/messages.php:215 +#: js/messages.php:217 msgid "Add chart to grid" msgstr "新增圖表至格線" -#: js/messages.php:218 +#: js/messages.php:220 msgid "Please add at least one variable to the series!" msgstr "請至少增加一個變數到資料序列!" -#: js/messages.php:219 libraries/DisplayResults.php:1484 +#: js/messages.php:221 libraries/DisplayResults.php:1484 #: libraries/config.values.php:69 libraries/display_export.lib.php:691 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 #: libraries/plugins/schema/SchemaPdf.php:103 #: libraries/server_status_monitor.lib.php:232 #: libraries/server_status_processes.lib.php:288 @@ -1295,47 +1298,47 @@ msgstr "請至少增加一個變數到資料序列!" msgid "None" msgstr "無" -#: js/messages.php:220 +#: js/messages.php:222 msgid "Resume monitor" msgstr "繼續監控" -#: js/messages.php:221 +#: js/messages.php:223 msgid "Pause monitor" msgstr "暫停監控" -#: js/messages.php:222 libraries/server_status_processes.lib.php:36 +#: js/messages.php:224 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" msgstr "開始自動更新" -#: js/messages.php:223 +#: js/messages.php:225 msgid "Stop auto refresh" msgstr "停止自動更新" -#: js/messages.php:225 +#: js/messages.php:227 msgid "general_log and slow_query_log are enabled." msgstr "general_log 與 slow_query_log 皆已啟用。" -#: js/messages.php:226 +#: js/messages.php:228 msgid "general_log is enabled." msgstr "general_log 已啟用。" -#: js/messages.php:227 +#: js/messages.php:229 msgid "slow_query_log is enabled." msgstr "slow_query_log 已啟用。" -#: js/messages.php:228 +#: js/messages.php:230 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log 與 general_log 皆已停用。" -#: js/messages.php:229 +#: js/messages.php:231 msgid "log_output is not set to TABLE." msgstr "log_output 尚未被設定為 TABLE。" -#: js/messages.php:230 +#: js/messages.php:232 msgid "log_output is set to TABLE." msgstr "log_output 目前設定為 TABLE。" -#: js/messages.php:232 +#: js/messages.php:234 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1345,98 +1348,98 @@ msgstr "" "slow_query_log 已啟用,但伺服器只記錄執行時間超過 %d 秒的查詢。建議根據您的系" "統狀況將 long_query_time 設定為 0-2 秒之間。" -#: js/messages.php:236 +#: js/messages.php:238 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time 目前設定為 %d 秒。" -#: js/messages.php:238 +#: js/messages.php:240 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "下設定將會套用至資料庫的全域設定直到系統重新啟動後還原預設值:" #. l10n: %s is FILE or TABLE -#: js/messages.php:242 +#: js/messages.php:244 #, php-format msgid "Set log_output to %s" msgstr "將 log_output 設定至 %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:244 +#: js/messages.php:246 #, php-format msgid "Enable %s" msgstr "啓用 %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:246 +#: js/messages.php:248 #, php-format msgid "Disable %s" msgstr "停用 %s" #. l10n: %d seconds -#: js/messages.php:248 +#: js/messages.php:250 #, php-format msgid "Set long_query_time to %d seconds." msgstr "將 long_query_time 設定為 %d 秒。" -#: js/messages.php:250 +#: js/messages.php:252 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "您無法修改這些變數,請使用 root 帳號登入或是聯絡該資料庫的管理人員。" -#: js/messages.php:253 +#: js/messages.php:255 msgid "Change settings" msgstr "更改設定" -#: js/messages.php:254 +#: js/messages.php:256 msgid "Current settings" msgstr "目前設定" -#: js/messages.php:256 +#: js/messages.php:258 msgid "Chart title" msgstr "圖表標題" #. l10n: As in differential values -#: js/messages.php:258 +#: js/messages.php:260 msgid "Differential" msgstr "差異" -#: js/messages.php:259 +#: js/messages.php:261 #, php-format msgid "Divided by %s" msgstr "使用 %s 區分" -#: js/messages.php:260 +#: js/messages.php:262 msgid "Unit" msgstr "單位" -#: js/messages.php:262 +#: js/messages.php:264 msgid "From slow log" msgstr "從緩慢記錄" -#: js/messages.php:263 +#: js/messages.php:265 msgid "From general log" msgstr "從一般記錄" -#: js/messages.php:265 +#: js/messages.php:267 msgid "The database name is not known for this query in the server's logs." msgstr "此伺服器記錄中的查詢所使用的資料庫名稱不存在。" -#: js/messages.php:267 +#: js/messages.php:269 msgid "Analysing logs" msgstr "分析記錄中" -#: js/messages.php:269 +#: js/messages.php:271 msgid "Analysing & loading logs. This may take a while." msgstr "分析並讀取記錄中。請稍候。" -#: js/messages.php:270 +#: js/messages.php:272 msgid "Cancel request" msgstr "取消請求" -#: js/messages.php:272 +#: js/messages.php:274 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1445,7 +1448,7 @@ msgstr "" "此欄位將完全相同的查詢合併以數量顯示。系統僅使用 SQL 查詢條件做為群組的依據其" "餘的查詢參數,可能會有所不同,如: 開始時間。" -#: js/messages.php:277 +#: js/messages.php:279 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1454,31 +1457,31 @@ msgstr "" "當您選擇將新增(INSERT)查詢分群組顯示,則所有新增至相同資料表的查詢將會合併顯" "示,但不包含資料。" -#: js/messages.php:282 +#: js/messages.php:284 msgid "Log data loaded. Queries executed in this time span:" msgstr "已讀取記錄資料,在此時間區間已執行查詢指令:" -#: js/messages.php:284 +#: js/messages.php:286 msgid "Jump to Log table" msgstr "切換至記錄資料表" -#: js/messages.php:285 +#: js/messages.php:287 msgid "No data found" msgstr "查無資料" -#: js/messages.php:287 +#: js/messages.php:289 msgid "Log analysed, but no data found in this time span." msgstr "已分析記錄,但在此時間區間內沒有任何資料。" -#: js/messages.php:289 +#: js/messages.php:291 msgid "Analyzing…" msgstr "分析中…" -#: js/messages.php:290 +#: js/messages.php:292 msgid "Explain output" msgstr "輸出說明" -#: js/messages.php:291 libraries/Menu.php:551 libraries/Util.php:4322 +#: js/messages.php:293 libraries/Menu.php:551 libraries/Util.php:4322 #: 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:91 libraries/tracking.lib.php:284 @@ -1486,7 +1489,7 @@ msgstr "輸出說明" msgid "Status" msgstr "狀態" -#: js/messages.php:292 js/messages.php:870 +#: js/messages.php:294 js/messages.php:872 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1496,60 +1499,60 @@ msgstr "狀態" msgid "Time" msgstr "時間" -#: js/messages.php:293 +#: js/messages.php:295 msgid "Total time:" msgstr "總計時間:" -#: js/messages.php:294 +#: js/messages.php:296 msgid "Profiling results" msgstr "分析結果" -#: js/messages.php:295 +#: js/messages.php:297 msgctxt "Display format" msgid "Table" msgstr "資料表" -#: js/messages.php:296 +#: js/messages.php:298 msgid "Chart" msgstr "圖表" #. l10n: A collection of available filters -#: js/messages.php:299 +#: js/messages.php:301 msgid "Log table filter options" msgstr "記錄資料表搜尋選項" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:301 +#: js/messages.php:303 msgid "Filter" msgstr "搜尋" -#: js/messages.php:302 +#: js/messages.php:304 msgid "Filter queries by word/regexp:" msgstr "" "使用純文字或 正規表式法(REGEXP) 進行搜尋:" -#: js/messages.php:304 +#: js/messages.php:306 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "依查詢分群顯示,忽略 WHERE 的條件中的變數資料" -#: js/messages.php:305 +#: js/messages.php:307 msgid "Sum of grouped rows:" msgstr "已分組的列數總計:" -#: js/messages.php:306 +#: js/messages.php:308 msgid "Total:" msgstr "總計:" -#: js/messages.php:308 +#: js/messages.php:310 msgid "Loading logs" msgstr "讀取記錄中" -#: js/messages.php:309 +#: js/messages.php:311 msgid "Monitor refresh failed" msgstr "即時監控無法進行重新整理" -#: js/messages.php:311 +#: js/messages.php:313 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1558,24 +1561,24 @@ msgstr "" "在向伺服器取得新的圖表資料時取得無效的回應,可能是您的連線階段已經過期。 請重" "新整理頁面並重新輸入帳號密碼解決此問題。" -#: js/messages.php:315 +#: js/messages.php:317 msgid "Reload page" msgstr "重新整理頁面" -#: js/messages.php:317 +#: js/messages.php:319 msgid "Affected rows:" msgstr "已影響的列數:" -#: js/messages.php:320 +#: js/messages.php:322 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "讀取設定檔時發生錯誤。 設定檔看起來不是有效的 JSON 格式。" -#: js/messages.php:323 +#: js/messages.php:325 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "無法使用匯入的設定檔建立圖表,將重設為預設的設定值…" -#: js/messages.php:325 libraries/Menu.php:358 libraries/Menu.php:460 +#: js/messages.php:327 libraries/Menu.php:358 libraries/Menu.php:460 #: libraries/Menu.php:581 libraries/Util.php:4325 libraries/Util.php:4340 #: libraries/Util.php:4357 libraries/config/messages.inc.php:261 #: libraries/display_import.lib.php:103 @@ -1584,65 +1587,65 @@ msgstr "無法使用匯入的設定檔建立圖表,將重設為預設的設定 msgid "Import" msgstr "匯入" -#: js/messages.php:326 +#: js/messages.php:328 msgid "Import monitor configuration" msgstr "無法匯入即時監控的設定" -#: js/messages.php:328 +#: js/messages.php:330 msgid "Please select the file you want to import." msgstr "請選擇您欲匯入的檔案。" -#: js/messages.php:329 +#: js/messages.php:331 msgid "No files available on server for import!" msgstr "伺服器上無可用來匯入的檔案!" -#: js/messages.php:331 +#: js/messages.php:333 msgid "Analyse query" msgstr "分析查詢" -#: js/messages.php:335 +#: js/messages.php:337 msgid "Advisor system" msgstr "建議系統" -#: js/messages.php:336 +#: js/messages.php:338 msgid "Possible performance issues" msgstr "可能影響執行效率的問題" -#: js/messages.php:337 +#: js/messages.php:339 msgid "Issue" msgstr "問題" -#: js/messages.php:338 +#: js/messages.php:340 msgid "Recommendation" msgstr "建議" -#: js/messages.php:339 +#: js/messages.php:341 msgid "Rule details" msgstr "規則詳細資訊" -#: js/messages.php:340 +#: js/messages.php:342 msgid "Justification" msgstr "實際狀況" -#: js/messages.php:341 +#: js/messages.php:343 msgid "Used variable / formula" msgstr "使用的變數 / 公式" -#: js/messages.php:342 +#: js/messages.php:344 msgid "Test" msgstr "檢驗方式" -#: js/messages.php:345 +#: js/messages.php:347 msgid "Formatting SQL…" msgstr "格式化 SQL…" -#: js/messages.php:346 +#: js/messages.php:348 #, fuzzy #| msgid "Bad parameters!" msgid "No parameters found!" msgstr "參數錯誤!" -#: js/messages.php:350 +#: js/messages.php:352 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1654,60 +1657,60 @@ msgstr "參數錯誤!" msgid "Cancel" msgstr "取消" -#: js/messages.php:353 libraries/Header.php:456 +#: js/messages.php:355 libraries/Header.php:456 msgid "Page-related settings" msgstr "頁面相關設定" -#: js/messages.php:354 libraries/config/FormDisplay.tpl.php:422 +#: js/messages.php:356 libraries/config/FormDisplay.tpl.php:422 msgid "Apply" msgstr "套用" -#: js/messages.php:357 libraries/navigation/NavigationHeader.php:58 +#: js/messages.php:359 libraries/navigation/NavigationHeader.php:58 #: libraries/server_status_monitor.lib.php:119 msgid "Loading…" msgstr "載入中…" -#: js/messages.php:358 +#: js/messages.php:360 msgid "Request aborted!!" msgstr "已放棄請求!!" -#: js/messages.php:359 +#: js/messages.php:361 msgid "Processing request" msgstr "請求處理中" -#: js/messages.php:360 +#: js/messages.php:362 msgid "Request failed!!" msgstr "請求失敗!!" -#: js/messages.php:361 +#: js/messages.php:363 msgid "Error in processing request" msgstr "處理要求時發生錯誤" -#: js/messages.php:362 +#: js/messages.php:364 #, php-format msgid "Error code: %s" msgstr "錯誤代碼: %s" -#: js/messages.php:363 +#: js/messages.php:365 #, php-format msgid "Error text: %s" msgstr "錯誤訊息: %s" -#: js/messages.php:364 +#: js/messages.php:366 #: libraries/controllers/server/ServerDatabasesController.php:186 #: libraries/db_common.inc.php:69 libraries/db_table_exists.lib.php:30 msgid "No databases selected." msgstr "尚未選擇任何資料庫。" -#: js/messages.php:365 +#: js/messages.php:367 msgid "Dropping column" msgstr "刪除欄位" -#: js/messages.php:366 +#: js/messages.php:368 msgid "Adding primary key" msgstr "新增主鍵中" -#: js/messages.php:367 +#: js/messages.php:369 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1717,55 +1720,55 @@ msgstr "新增主鍵中" msgid "OK" msgstr "確定" -#: js/messages.php:368 +#: js/messages.php:370 msgid "Click to dismiss this notification" msgstr "點選關閉此通知" -#: js/messages.php:371 +#: js/messages.php:373 msgid "Renaming databases" msgstr "更改資料庫名稱中" -#: js/messages.php:372 +#: js/messages.php:374 msgid "Copying database" msgstr "複製資料庫中" -#: js/messages.php:373 +#: js/messages.php:375 msgid "Changing charset" msgstr "更改字元編碼" -#: js/messages.php:377 libraries/Util.php:3284 +#: js/messages.php:379 libraries/Util.php:3284 msgid "Enable foreign key checks" msgstr "開啟外鍵(Foreign Key)檢查" -#: js/messages.php:380 +#: js/messages.php:382 msgid "Failed to get real row count." msgstr "取得實際列數失敗。" -#: js/messages.php:383 +#: js/messages.php:385 msgid "Searching" msgstr "搜尋中" -#: js/messages.php:384 +#: js/messages.php:386 msgid "Hide search results" msgstr "隱藏搜尋結果" -#: js/messages.php:385 +#: js/messages.php:387 msgid "Show search results" msgstr "顯示搜尋結果" -#: js/messages.php:386 +#: js/messages.php:388 msgid "Browsing" msgstr "瀏覽" -#: js/messages.php:387 +#: js/messages.php:389 msgid "Deleting" msgstr "刪除" -#: js/messages.php:391 +#: js/messages.php:393 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Stored Function 的定義中必須要有 RETURN 敘述句!" -#: js/messages.php:392 libraries/DisplayResults.php:4854 +#: js/messages.php:394 libraries/DisplayResults.php:4854 #: libraries/DisplayResults.php:5137 libraries/Menu.php:350 #: libraries/Menu.php:451 libraries/Menu.php:577 libraries/Util.php:3705 #: libraries/Util.php:3706 libraries/Util.php:4324 libraries/Util.php:4339 @@ -1781,44 +1784,44 @@ msgstr "Stored Function 的定義中必須要有 RETURN 敘述句!" msgid "Export" msgstr "匯出" -#: js/messages.php:395 libraries/rte/rte_routines.lib.php:740 +#: js/messages.php:397 libraries/rte/rte_routines.lib.php:740 msgid "ENUM/SET editor" msgstr "ENUM/SET 編輯器" -#: js/messages.php:396 +#: js/messages.php:398 #, php-format msgid "Values for column %s" msgstr "%s 欄位的值" -#: js/messages.php:397 +#: js/messages.php:399 msgid "Values for a new column" msgstr "新欄位的值" -#: js/messages.php:398 +#: js/messages.php:400 msgid "Enter each value in a separate field." msgstr "請分別將資料填入以下欄位。" -#: js/messages.php:399 +#: js/messages.php:401 #, php-format msgid "Add %d value(s)" msgstr "增加 %d 個值" -#: js/messages.php:403 +#: js/messages.php:405 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "備註:若檔案中包含多個資料表,它們會被結合成同一個資料表。" -#: js/messages.php:407 +#: js/messages.php:409 msgid "Hide query box" msgstr "隱藏查詢框" -#: js/messages.php:408 +#: js/messages.php:410 msgid "Show query box" msgstr "顯示查詢框" -#: js/messages.php:409 libraries/Console.php:88 libraries/Console.php:217 +#: js/messages.php:411 libraries/Console.php:88 libraries/Console.php:199 #: libraries/DisplayResults.php:3472 libraries/DisplayResults.php:4838 -#: libraries/Index.php:721 libraries/Util.php:726 libraries/Util.php:1236 +#: libraries/Index.php:721 libraries/Util.php:725 libraries/Util.php:1235 #: libraries/Util.php:3703 libraries/Util.php:3704 #: libraries/central_columns.lib.php:848 libraries/central_columns.lib.php:1191 #: libraries/config/messages.inc.php:896 @@ -1828,7 +1831,7 @@ msgstr "顯示查詢框" msgid "Edit" msgstr "編輯" -#: js/messages.php:410 libraries/Console.php:89 libraries/DbSearch.php:361 +#: js/messages.php:412 libraries/Console.php:89 libraries/DbSearch.php:361 #: libraries/DisplayResults.php:3541 libraries/DisplayResults.php:4822 #: libraries/central_columns.lib.php:850 libraries/central_columns.lib.php:1196 #: libraries/display_export.lib.php:223 @@ -1839,41 +1842,41 @@ msgstr "編輯" msgid "Delete" msgstr "刪除" -#: js/messages.php:411 libraries/DisplayResults.php:919 +#: js/messages.php:413 libraries/DisplayResults.php:919 #: libraries/DisplayResults.php:927 #, php-format msgid "%d is not valid row number." msgstr "%d 不是有效的資料列號。" -#: js/messages.php:412 +#: js/messages.php:414 #: libraries/controllers/table/TableSearchController.php:426 #: libraries/controllers/table/TableSearchController.php:896 #: libraries/sql.lib.php:193 tbl_change.php:158 msgid "Browse foreign values" msgstr "瀏覽關聯的值" -#: js/messages.php:413 +#: js/messages.php:415 msgid "No auto-saved query" msgstr "無自動儲存的查詢" -#: js/messages.php:414 +#: js/messages.php:416 #, php-format msgid "Variable %d:" msgstr "變數 %d:" -#: js/messages.php:417 libraries/normalization.lib.php:883 +#: js/messages.php:419 libraries/normalization.lib.php:883 msgid "Pick" msgstr "選取" -#: js/messages.php:418 +#: js/messages.php:420 msgid "Column selector" msgstr "欄位選擇器" -#: js/messages.php:419 +#: js/messages.php:421 msgid "Search this list" msgstr "搜尋此清單" -#: js/messages.php:421 +#: js/messages.php:423 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1882,124 +1885,124 @@ msgstr "" "無欄位於中央清單。請確定資料庫 %s 的中央欄位清單中的欄位不存在於目前的資料" "表。" -#: js/messages.php:424 +#: js/messages.php:426 msgid "See more" msgstr "查看更多資訊" -#: js/messages.php:425 +#: js/messages.php:427 msgid "Are you sure?" msgstr "您確定?" -#: js/messages.php:427 +#: js/messages.php:429 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "此動作可能會變更部份欄位的定義。
您是否確定要繼續執行?" -#: js/messages.php:430 +#: js/messages.php:432 msgid "Continue" msgstr "繼續" -#: js/messages.php:433 +#: js/messages.php:435 msgid "Add primary key" msgstr "新增主鍵" -#: js/messages.php:434 +#: js/messages.php:436 msgid "Primary key added." msgstr "已新增主鍵(Primary key)。" -#: js/messages.php:435 libraries/normalization.lib.php:188 +#: js/messages.php:437 libraries/normalization.lib.php:188 msgid "Taking you to next step…" msgstr "帶您至下一步驟 …" -#: js/messages.php:437 +#: js/messages.php:439 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "表格 '%s' 正規化的第一步驟已經完成。" -#: js/messages.php:438 libraries/normalization.lib.php:449 +#: js/messages.php:440 libraries/normalization.lib.php:449 #: libraries/normalization.lib.php:496 libraries/normalization.lib.php:581 #: libraries/normalization.lib.php:641 msgid "End of step" msgstr "結束步驟" -#: js/messages.php:439 +#: js/messages.php:441 msgid "Second step of normalization (2NF)" msgstr "第二正規化 (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:440 js/messages.php:739 libraries/normalization.lib.php:285 +#: js/messages.php:442 js/messages.php:741 libraries/normalization.lib.php:285 msgid "Done" msgstr "完成" -#: js/messages.php:441 +#: js/messages.php:443 msgid "Confirm partial dependencies" msgstr "確認部份相依" -#: js/messages.php:442 +#: js/messages.php:444 msgid "Selected partial dependencies are as follows:" msgstr "己選擇部份相依如下:" -#: js/messages.php:444 +#: js/messages.php:446 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:447 +#: js/messages.php:449 msgid "No partial dependencies selected!" msgstr "尚未選擇部份相依!" -#: js/messages.php:450 +#: js/messages.php:452 msgid "Show me the possible partial dependencies based on data in the table" msgstr "根據資料表中的資料顯示可能的部份相依" -#: js/messages.php:451 +#: js/messages.php:453 msgid "Hide partial dependencies list" msgstr "隱藏部份相依清單" -#: js/messages.php:453 +#: js/messages.php:455 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "稍坐一下!這可能要花一些時間,實際時間將取決於您的資料大小以及資料量。" -#: js/messages.php:456 +#: js/messages.php:458 msgid "Step" msgstr "步驟" -#: js/messages.php:458 +#: js/messages.php:460 msgid "The following actions will be performed:" msgstr "將會執行以下動作:" -#: js/messages.php:459 +#: js/messages.php:461 #, php-format msgid "DROP columns %s from the table %s" msgstr "從資料表 %s 移除(DROP)欄位 %s" -#: js/messages.php:460 +#: js/messages.php:462 msgid "Create the following table" msgstr "建立下列資料表" -#: js/messages.php:463 +#: js/messages.php:465 msgid "Third step of normalization (3NF)" msgstr "第三正規化 (3NF)" -#: js/messages.php:464 +#: js/messages.php:466 msgid "Confirm transitive dependencies" msgstr "確認遞移相依" -#: js/messages.php:465 +#: js/messages.php:467 msgid "Selected dependencies are as follows:" msgstr "己選擇的相依如下:" -#: js/messages.php:466 +#: js/messages.php:468 msgid "No dependencies selected!" msgstr "尚未選擇任何相依!" -#: js/messages.php:469 libraries/central_columns.lib.php:1212 -#: libraries/insert_edit.lib.php:1461 setup/frames/config.inc.php:43 +#: js/messages.php:471 libraries/central_columns.lib.php:1212 +#: libraries/insert_edit.lib.php:1468 setup/frames/config.inc.php:43 #: setup/frames/index.inc.php:281 #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 @@ -2009,234 +2012,234 @@ msgstr "尚未選擇任何相依!" msgid "Save" msgstr "儲存" -#: js/messages.php:472 +#: js/messages.php:474 msgid "Hide search criteria" msgstr "隱藏搜尋條件" -#: js/messages.php:473 +#: js/messages.php:475 msgid "Show search criteria" msgstr "顯示搜尋條件" -#: js/messages.php:474 +#: js/messages.php:476 msgid "Range search" msgstr "範圍搜尋" -#: js/messages.php:475 +#: js/messages.php:477 msgid "Column maximum:" msgstr "欄位最大值:" -#: js/messages.php:476 +#: js/messages.php:478 msgid "Column minimum:" msgstr "欄位最小值:" -#: js/messages.php:477 +#: js/messages.php:479 msgid "Minimum value:" msgstr "最小值:" -#: js/messages.php:478 +#: js/messages.php:480 msgid "Maximum value:" msgstr "最大值:" -#: js/messages.php:481 +#: js/messages.php:483 msgid "Hide find and replace criteria" msgstr "隱藏搜尋與取代條件" -#: js/messages.php:482 +#: js/messages.php:484 msgid "Show find and replace criteria" msgstr "顯示尋找並替換條件" -#: js/messages.php:486 +#: js/messages.php:488 msgid "Each point represents a data row." msgstr "每一個點代表一筆資料。" -#: js/messages.php:488 +#: js/messages.php:490 msgid "Hovering over a point will show its label." msgstr "將滑鼠指到資料點上可以顯示其標籤。" -#: js/messages.php:490 +#: js/messages.php:492 msgid "To zoom in, select a section of the plot with the mouse." msgstr "放大,請使用滑鼠選擇一個區域。" -#: js/messages.php:492 +#: js/messages.php:494 msgid "Click reset zoom button to come back to original state." msgstr "點選「重設縮放大小」按鈕可以回到原始大小。" -#: js/messages.php:494 +#: js/messages.php:496 msgid "Click a data point to view and possibly edit the data row." msgstr "點選資料點以瀏覽或修改該筆資料。" -#: js/messages.php:496 +#: js/messages.php:498 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "此圖表可拖曳右下角邊框進行縮放。" -#: js/messages.php:499 +#: js/messages.php:501 msgid "Select two columns" msgstr "請選擇兩個欄位" -#: js/messages.php:501 +#: js/messages.php:503 msgid "Select two different columns" msgstr "請選擇兩個不同的欄位" -#: js/messages.php:503 +#: js/messages.php:505 msgid "Data point content" msgstr "資料點內容" -#: js/messages.php:506 js/messages.php:660 js/messages.php:677 -#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2577 +#: js/messages.php:508 js/messages.php:662 js/messages.php:679 +#: libraries/ErrorHandler.php:342 libraries/insert_edit.lib.php:2588 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" msgstr "略過" -#: js/messages.php:507 libraries/DisplayResults.php:3475 +#: js/messages.php:509 libraries/DisplayResults.php:3475 #: libraries/DisplayResults.php:4843 msgid "Copy" msgstr "複製" -#: js/messages.php:510 +#: js/messages.php:512 msgid "Point" msgstr "點" -#: js/messages.php:512 +#: js/messages.php:514 msgid "Linestring" msgstr "一維折線" -#: js/messages.php:513 +#: js/messages.php:515 msgid "Polygon" msgstr "多邊形" -#: js/messages.php:514 libraries/DisplayResults.php:1774 +#: js/messages.php:516 libraries/DisplayResults.php:1774 msgid "Geometry" msgstr "幾何形" -#: js/messages.php:515 +#: js/messages.php:517 msgid "Inner ring" msgstr "內環" -#: js/messages.php:516 +#: js/messages.php:518 msgid "Outer ring" msgstr "外環" -#: js/messages.php:520 +#: js/messages.php:522 msgid "Do you want to copy encryption key?" msgstr "您是否要複製加密金鑰?" -#: js/messages.php:521 +#: js/messages.php:523 msgid "Encryption key" msgstr "加密金鑰" -#: js/messages.php:525 +#: js/messages.php:527 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "代表您已對此頁做了變更,在您放棄這些變更前會先提示您" -#: js/messages.php:530 +#: js/messages.php:532 msgid "Select referenced key" msgstr "請選擇參考鍵(Reference Key)" -#: js/messages.php:531 +#: js/messages.php:533 msgid "Select Foreign Key" msgstr "請選擇外鍵(Foreign Key)" -#: js/messages.php:533 +#: js/messages.php:535 msgid "Please select the primary key or a unique key!" msgstr "請選擇主鍵(Primary Key)或唯一鍵(Unique Key)!" -#: js/messages.php:534 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:536 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "請選擇要顯示的欄位" -#: js/messages.php:536 +#: js/messages.php:538 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:539 +#: js/messages.php:541 msgid "Page name" msgstr "頁面名稱" -#: js/messages.php:540 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:542 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "儲存頁面" -#: js/messages.php:541 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "儲存頁面為" -#: js/messages.php:542 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:544 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "開啟頁面" -#: js/messages.php:543 +#: js/messages.php:545 msgid "Delete page" msgstr "刪除頁面" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:546 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "未命名" -#: js/messages.php:545 +#: js/messages.php:547 msgid "Please select a page to continue" msgstr "請選擇頁面以繼續執行" -#: js/messages.php:546 +#: js/messages.php:548 msgid "Please enter a valid page name" msgstr "請輸入一個有效的頁面名稱" -#: js/messages.php:548 +#: js/messages.php:550 msgid "Do you want to save the changes to the current page?" msgstr "您是否要儲存變更至目前頁面?" -#: js/messages.php:549 +#: js/messages.php:551 msgid "Successfully deleted the page" msgstr "已成功刪除頁面" -#: js/messages.php:550 +#: js/messages.php:552 msgid "Export relational schema" msgstr "匯出關聯式網要" -#: js/messages.php:551 +#: js/messages.php:553 msgid "Modifications have been saved" msgstr "已儲存修改" -#: js/messages.php:554 +#: js/messages.php:556 #, php-format msgid "Add an option for column \"%s\"." msgstr "新增欄位 \"%s\" 的選項。" -#: js/messages.php:555 +#: js/messages.php:557 #, php-format msgid "%d object(s) created." msgstr "已建立 %d 個物件。" -#: js/messages.php:556 libraries/sql_query_form.lib.php:409 +#: js/messages.php:558 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "送出" -#: js/messages.php:559 +#: js/messages.php:561 msgid "Press escape to cancel editing." msgstr "按下 ESC 取消編輯。" -#: js/messages.php:561 +#: js/messages.php:563 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:564 +#: js/messages.php:566 msgid "Drag to reorder." msgstr "使用拖曳來重新排序。" -#: js/messages.php:565 +#: js/messages.php:567 msgid "Click to sort results by this column." msgstr "使用本欄位進行資料排序。" -#: js/messages.php:567 +#: js/messages.php:569 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 " @@ -2246,26 +2249,26 @@ msgstr "" "鼠點選 或 Alt+滑鼠點選 (Mac: Shift+Option+滑鼠點選) 來從 ORDER BY 子句中移除" "欄位" -#: js/messages.php:571 +#: js/messages.php:573 msgid "Click to mark/unmark." msgstr "點此標記或取消標記。" -#: js/messages.php:572 +#: js/messages.php:574 msgid "Double-click to copy column name." msgstr "雙擊點選以複製欄位名稱。" -#: js/messages.php:574 +#: js/messages.php:576 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "點選下拉箭頭
以切換欄位的顯示程度。" -#: js/messages.php:576 libraries/DisplayResults.php:1026 +#: js/messages.php:578 libraries/DisplayResults.php:1026 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3867 msgid "Show all" msgstr "全部顯示" -#: js/messages.php:578 +#: js/messages.php:580 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." @@ -2273,109 +2276,109 @@ msgstr "" "此資料表沒有唯一欄位用來辦示資料。 有關資料表修改、複製、刪除的功能可能會無法" "儲存。" -#: js/messages.php:582 +#: js/messages.php:584 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "請輸入一個有效的十六進位字串。有效的字元為 0-9, A-F。" -#: js/messages.php:584 +#: js/messages.php:586 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "您確定要顯示所有資料列?使用在大型的資料表可能會造成瀏覽器當機。" -#: js/messages.php:587 +#: js/messages.php:589 msgid "Original length" msgstr "原始長度" -#: js/messages.php:590 +#: js/messages.php:592 msgid "cancel" msgstr "取消" -#: js/messages.php:591 libraries/server_status.lib.php:277 +#: js/messages.php:593 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "中斷連線" -#: js/messages.php:593 +#: js/messages.php:595 msgid "Success" msgstr "成功" -#: js/messages.php:594 +#: js/messages.php:596 msgid "Import status" msgstr "匯入狀態" -#: js/messages.php:595 libraries/navigation/Navigation.php:111 +#: js/messages.php:597 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "將檔案拖曳至此處" -#: js/messages.php:596 +#: js/messages.php:598 msgid "Select database first" msgstr "請先選擇資料庫" -#: js/messages.php:599 libraries/DisplayResults.php:5029 +#: js/messages.php:601 libraries/DisplayResults.php:5029 #: libraries/Util.php:4217 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "列印" -#: js/messages.php:606 +#: js/messages.php:608 msgid "You can also edit most values
by double-clicking directly on them." msgstr "您可以點兩下以選表格內容
直接做編輯修改。" -#: js/messages.php:611 +#: js/messages.php:613 msgid "You can also edit most values
by clicking directly on them." msgstr "您可以直接點選數值
以進行編輯修改。" -#: js/messages.php:617 +#: js/messages.php:619 msgid "Go to link:" msgstr "前往此連結:" -#: js/messages.php:618 +#: js/messages.php:620 msgid "Copy column name." msgstr "複製欄位名稱。" -#: js/messages.php:620 +#: js/messages.php:622 msgid "Right-click the column name to copy it to your clipboard." msgstr "點選右鍵將欄位名稱複製到您的剪貼簿。" -#: js/messages.php:623 +#: js/messages.php:625 msgid "Generate password" msgstr "產生密碼" -#: js/messages.php:624 libraries/replication_gui.lib.php:898 +#: js/messages.php:626 libraries/replication_gui.lib.php:898 msgid "Generate" msgstr "產生" -#: js/messages.php:628 +#: js/messages.php:630 msgid "More" msgstr "更多" -#: js/messages.php:631 +#: js/messages.php:633 msgid "Show panel" msgstr "顯示面板" -#: js/messages.php:632 +#: js/messages.php:634 msgid "Hide panel" msgstr "隱藏面板" -#: js/messages.php:633 +#: js/messages.php:635 msgid "Show hidden navigation tree items." msgstr "顯示隱藏的導覽樹項目。" -#: js/messages.php:634 libraries/config/messages.inc.php:479 +#: js/messages.php:636 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "連結主面板" -#: js/messages.php:635 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:637 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "取消連結主面板" -#: js/messages.php:639 +#: js/messages.php:641 msgid "The requested page was not found in the history, it may have expired." msgstr "已無歷史記錄頁面或頁面已經逾期。" -#: js/messages.php:643 setup/lib/index.lib.php:169 +#: js/messages.php:645 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2384,47 +2387,47 @@ msgstr "" "新的 phpMyAdmin 已經發佈,請考慮升級至最新的版本(版本 %s,於 %s 發佈)。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:647 +#: js/messages.php:649 msgid ", latest stable version:" msgstr ",最新的穩定版:" -#: js/messages.php:648 +#: js/messages.php:650 msgid "up to date" msgstr "最新" -#: js/messages.php:650 libraries/DisplayResults.php:4960 view_create.php:186 +#: js/messages.php:652 libraries/DisplayResults.php:4960 view_create.php:186 msgid "Create view" msgstr "新增檢視表" -#: js/messages.php:653 +#: js/messages.php:655 msgid "Send error report" msgstr "傳送錯誤報告" -#: js/messages.php:654 +#: js/messages.php:656 msgid "Submit error report" msgstr "送出錯誤報告" -#: js/messages.php:656 +#: js/messages.php:658 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "發生 JavaScript 嚴重錯誤,您是否要回報錯誤報告?" -#: js/messages.php:658 +#: js/messages.php:660 msgid "Change report settings" msgstr "更改報告設定" -#: js/messages.php:659 +#: js/messages.php:661 msgid "Show report details" msgstr "顯示報告詳細資訊" -#: js/messages.php:662 +#: js/messages.php:664 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "因 PHP 執行期時間限制太短,您的資料未完成匯出動作!" -#: js/messages.php:666 +#: js/messages.php:668 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2433,58 +2436,58 @@ msgstr "" "警告: 此頁面中的表單超過 %d 個欄位,因超出 PHP 中 max_input_vars 設定值的限" "制,在送出時可能會忽略部份欄位。" -#: js/messages.php:672 js/messages.php:685 +#: js/messages.php:674 js/messages.php:687 msgid "Some errors have been detected on the server!" msgstr "已偵測到伺服器上發生部份錯誤!" -#: js/messages.php:674 +#: js/messages.php:676 msgid "Please look at the bottom of this window." msgstr "請瀏覽此視窗的底部。" -#: js/messages.php:680 libraries/ErrorHandler.php:346 +#: js/messages.php:682 libraries/ErrorHandler.php:346 msgid "Ignore All" msgstr "全部略過" -#: js/messages.php:688 +#: js/messages.php:690 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "根據您的設定,它們正被提交,請耐心等候。" -#: js/messages.php:698 +#: js/messages.php:700 msgid "Execute this query again?" msgstr "再執行此查詢一次?" -#: js/messages.php:700 +#: js/messages.php:702 msgid "Do you really want to delete this bookmark?" msgstr "您真的要刪除此書籤?" -#: js/messages.php:702 +#: js/messages.php:704 msgid "Some error occurred while getting SQL debug info." msgstr "取得 SQL 除錯資訊時發生一些錯誤。" -#: js/messages.php:704 +#: js/messages.php:706 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s 筆查詢已執行 %s 次,使用 %s 秒。" -#: js/messages.php:705 +#: js/messages.php:707 #, php-format msgid "%s argument(s) passed" msgstr "已傳入 %s 個參數" -#: js/messages.php:706 +#: js/messages.php:708 msgid "Show arguments" msgstr "顯示參數" -#: js/messages.php:707 +#: js/messages.php:709 msgid "Hide arguments" msgstr "隱藏參數" -#: js/messages.php:708 libraries/Console.php:324 +#: js/messages.php:710 libraries/Console.php:306 msgid "Time taken:" msgstr "使用時間:" -#: js/messages.php:709 +#: js/messages.php:711 msgid "" "There was a problem accessing your browser storage, some features may not " "work properly for you. It is likely that the browser doesn't support storage " @@ -2493,357 +2496,357 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:711 +#: js/messages.php:713 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "複製資料庫到" -#: js/messages.php:712 +#: js/messages.php:714 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "新增資料表的前綴文字:" -#: js/messages.php:713 +#: js/messages.php:715 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "覆蓋資料表名稱的前綴文字" -#: js/messages.php:714 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "複製資料表名稱的前綴文字" # 這應該是使用於選擇日期的月曆 -#: js/messages.php:743 +#: js/messages.php:745 msgctxt "Previous month" msgid "Prev" msgstr "上個月" # 這應該使用於選擇日期的小月曆 -#: js/messages.php:748 +#: js/messages.php:750 msgctxt "Next month" msgid "Next" msgstr "下個月" #. l10n: Display text for current month link in calendar -#: js/messages.php:751 +#: js/messages.php:753 msgid "Today" msgstr "今天" -#: js/messages.php:755 +#: js/messages.php:757 msgid "January" msgstr "一月" -#: js/messages.php:756 +#: js/messages.php:758 msgid "February" msgstr "二月" -#: js/messages.php:757 +#: js/messages.php:759 msgid "March" msgstr "三月" -#: js/messages.php:758 +#: js/messages.php:760 msgid "April" msgstr "四月" -#: js/messages.php:759 +#: js/messages.php:761 msgid "May" msgstr "五月" -#: js/messages.php:760 +#: js/messages.php:762 msgid "June" msgstr "六月" -#: js/messages.php:761 +#: js/messages.php:763 msgid "July" msgstr "七月" -#: js/messages.php:762 +#: js/messages.php:764 msgid "August" msgstr "八月" -#: js/messages.php:763 +#: js/messages.php:765 msgid "September" msgstr "九月" -#: js/messages.php:764 +#: js/messages.php:766 msgid "October" msgstr "十月" -#: js/messages.php:765 +#: js/messages.php:767 msgid "November" msgstr "十一月" -#: js/messages.php:766 +#: js/messages.php:768 msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:773 libraries/Util.php:1657 +#: js/messages.php:775 libraries/Util.php:1657 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:775 libraries/Util.php:1659 +#: js/messages.php:777 libraries/Util.php:1659 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:777 libraries/Util.php:1661 +#: js/messages.php:779 libraries/Util.php:1661 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:779 libraries/Util.php:1663 +#: js/messages.php:781 libraries/Util.php:1663 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:781 libraries/Util.php:1665 +#: js/messages.php:783 libraries/Util.php:1665 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:783 libraries/Util.php:1667 +#: js/messages.php:785 libraries/Util.php:1667 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:785 libraries/Util.php:1669 +#: js/messages.php:787 libraries/Util.php:1669 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:787 libraries/Util.php:1671 +#: js/messages.php:789 libraries/Util.php:1671 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:789 libraries/Util.php:1673 +#: js/messages.php:791 libraries/Util.php:1673 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:791 libraries/Util.php:1675 +#: js/messages.php:793 libraries/Util.php:1675 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:793 libraries/Util.php:1677 +#: js/messages.php:795 libraries/Util.php:1677 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:795 libraries/Util.php:1679 +#: js/messages.php:797 libraries/Util.php:1679 msgid "Dec" msgstr "十二月" -#: js/messages.php:801 +#: js/messages.php:803 msgid "Sunday" msgstr "星期日" -#: js/messages.php:802 +#: js/messages.php:804 msgid "Monday" msgstr "星期一" -#: js/messages.php:803 +#: js/messages.php:805 msgid "Tuesday" msgstr "星期二" -#: js/messages.php:804 +#: js/messages.php:806 msgid "Wednesday" msgstr "星期三" -#: js/messages.php:805 +#: js/messages.php:807 msgid "Thursday" msgstr "星期四" -#: js/messages.php:806 +#: js/messages.php:808 msgid "Friday" msgstr "星期五" -#: js/messages.php:807 +#: js/messages.php:809 msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:814 +#: js/messages.php:816 msgid "Sun" msgstr "週日" #. l10n: Short week day name -#: js/messages.php:816 libraries/Util.php:1684 +#: js/messages.php:818 libraries/Util.php:1684 msgid "Mon" msgstr "週一" #. l10n: Short week day name -#: js/messages.php:818 libraries/Util.php:1686 +#: js/messages.php:820 libraries/Util.php:1686 msgid "Tue" msgstr "週二" #. l10n: Short week day name -#: js/messages.php:820 libraries/Util.php:1688 +#: js/messages.php:822 libraries/Util.php:1688 msgid "Wed" msgstr "週三" #. l10n: Short week day name -#: js/messages.php:822 libraries/Util.php:1690 +#: js/messages.php:824 libraries/Util.php:1690 msgid "Thu" msgstr "週四" #. l10n: Short week day name -#: js/messages.php:824 libraries/Util.php:1692 +#: js/messages.php:826 libraries/Util.php:1692 msgid "Fri" msgstr "週五" #. l10n: Short week day name -#: js/messages.php:826 libraries/Util.php:1694 +#: js/messages.php:828 libraries/Util.php:1694 msgid "Sat" msgstr "週六" #. l10n: Minimal week day name -#: js/messages.php:833 +#: js/messages.php:835 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:835 +#: js/messages.php:837 msgid "Mo" msgstr "一" #. l10n: Minimal week day name -#: js/messages.php:837 +#: js/messages.php:839 msgid "Tu" msgstr "二" #. l10n: Minimal week day name -#: js/messages.php:839 +#: js/messages.php:841 msgid "We" msgstr "三" #. l10n: Minimal week day name -#: js/messages.php:841 +#: js/messages.php:843 msgid "Th" msgstr "四" #. l10n: Minimal week day name -#: js/messages.php:843 +#: js/messages.php:845 msgid "Fr" msgstr "五" #. l10n: Minimal week day name -#: js/messages.php:845 +#: js/messages.php:847 msgid "Sa" msgstr "六" #. l10n: Column header for week of the year in calendar -#: js/messages.php:849 +#: js/messages.php:851 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:858 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:859 +#: js/messages.php:861 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:871 +#: js/messages.php:873 msgid "Hour" msgstr "時" -#: js/messages.php:872 +#: js/messages.php:874 msgid "Minute" msgstr "分" -#: js/messages.php:873 +#: js/messages.php:875 msgid "Second" msgstr "秒" -#: js/messages.php:884 +#: js/messages.php:886 msgid "This field is required" msgstr "此欄位為必填" -#: js/messages.php:885 +#: js/messages.php:887 msgid "Please fix this field" msgstr "請修正此欄位" -#: js/messages.php:886 +#: js/messages.php:888 msgid "Please enter a valid email address" msgstr "請輸入一個有效的電子郵件位址" -#: js/messages.php:887 +#: js/messages.php:889 msgid "Please enter a valid URL" msgstr "請輸入一個有效的 URL" -#: js/messages.php:888 +#: js/messages.php:890 msgid "Please enter a valid date" msgstr "請輸入一個有效的日期" -#: js/messages.php:891 +#: js/messages.php:893 msgid "Please enter a valid date ( ISO )" msgstr "請輸入一個有效的日期 ( ISO )" -#: js/messages.php:893 +#: js/messages.php:895 msgid "Please enter a valid number" msgstr "請輸入一個有效的數字" -#: js/messages.php:896 +#: js/messages.php:898 msgid "Please enter a valid credit card number" msgstr "請輸入一個有效的信用卡號" -#: js/messages.php:898 +#: js/messages.php:900 msgid "Please enter only digits" msgstr "請輸入數字" -#: js/messages.php:901 +#: js/messages.php:903 msgid "Please enter the same value again" msgstr "請再輸入一次" -#: js/messages.php:905 +#: js/messages.php:907 msgid "Please enter no more than {0} characters" msgstr "請輸入不超過 {0} 個字元" -#: js/messages.php:910 +#: js/messages.php:912 msgid "Please enter at least {0} characters" msgstr "請輸入不少於 {0} 個字元" -#: js/messages.php:915 +#: js/messages.php:917 msgid "Please enter a value between {0} and {1} characters long" msgstr "請輸入介於 {0} 與 {1} 個字元長度間的值" -#: js/messages.php:920 +#: js/messages.php:922 msgid "Please enter a value between {0} and {1}" msgstr "請輸入介於 {0} 與 {1} 間的值" -#: js/messages.php:925 +#: js/messages.php:927 msgid "Please enter a value less than or equal to {0}" msgstr "請輸入小於等於 {0} 的值" -#: js/messages.php:930 +#: js/messages.php:932 msgid "Please enter a value greater than or equal to {0}" msgstr "請輸入大於等於 {0} 的值" -#: js/messages.php:936 +#: js/messages.php:938 msgid "Please enter a valid date or time" msgstr "請輸入有效的日期或時間" -#: js/messages.php:941 +#: js/messages.php:943 msgid "Please enter a valid HEX input" msgstr "請輸入有效的 HEX 輸入值" -#: js/messages.php:946 libraries/Message.php:200 libraries/Util.php:673 +#: js/messages.php:948 libraries/Message.php:200 libraries/Util.php:672 #: libraries/core.lib.php:245 libraries/import.lib.php:99 -#: libraries/insert_edit.lib.php:1175 view_operations.php:64 +#: libraries/insert_edit.lib.php:1175 view_operations.php:73 msgid "Error" msgstr "錯誤" @@ -2893,32 +2896,32 @@ msgstr "第 %s 行有不明符號。" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "第 %1$s 行有不明符號。應該要是「tab」,但我們找到「%2$s」。" -#: libraries/Config.php:1141 +#: libraries/Config.php:1136 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "無法讀取已存在的設定檔 %s。" -#: libraries/Config.php:1171 +#: libraries/Config.php:1166 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "設定檔權限錯誤,檔案不應開啟所有寫入權!" -#: libraries/Config.php:1518 +#: libraries/Config.php:1527 msgid "Font size" msgstr "字體大小" -#: libraries/Console.php:85 libraries/Console.php:213 libraries/Console.php:316 +#: libraries/Console.php:85 libraries/Console.php:195 libraries/Console.php:298 msgid "Collapse" msgstr "摺疊" -#: libraries/Console.php:86 libraries/Console.php:215 libraries/Console.php:317 +#: libraries/Console.php:86 libraries/Console.php:197 libraries/Console.php:299 msgid "Expand" msgstr "展開" -#: libraries/Console.php:87 libraries/Console.php:216 +#: libraries/Console.php:87 libraries/Console.php:198 msgid "Requery" msgstr "重新查詢" -#: libraries/Console.php:91 libraries/Console.php:223 libraries/Menu.php:220 +#: libraries/Console.php:91 libraries/Console.php:205 libraries/Menu.php:220 #: libraries/config/messages.inc.php:926 libraries/mult_submits.lib.php:334 #: libraries/plugins/export/ExportHtmlword.php:149 #: libraries/plugins/export/ExportOdt.php:197 @@ -2938,75 +2941,58 @@ msgstr "資料庫" #: libraries/Console.php:100 #, php-format -msgid "Total %d bookmark" -msgid_plural "Total %d bookmarks" -msgstr[0] "共 %d 筆書籤" +msgid "Showing %1$d bookmark (both private and shared)" +msgid_plural "Showing %1$d bookmarks (both private and shared)" +msgstr[0] "" -#: libraries/Console.php:108 -msgid "private" -msgstr "私有" - -#: libraries/Console.php:112 libraries/bookmark.lib.php:94 -msgid "shared" -msgstr "已共享" - -#. l10n: First parameter will be replaced with the translation -#. for Total and the number of bookmarks, second one with the -#. translation for private and the third one, with the translation -#. for shared -#: libraries/Console.php:119 -#, php-format -msgid "%1$s, %2$s and %3$s bookmarks included" -msgstr "已包含 %1$s、%2$s 與 %3$s 書籤" - -#: libraries/Console.php:125 +#: libraries/Console.php:107 msgid "No bookmarks" msgstr "無書籤" -#: libraries/Console.php:186 +#: libraries/Console.php:168 msgid "During current session" msgstr "於目前連線階段" -#: libraries/Console.php:218 +#: libraries/Console.php:200 msgid "Explain" msgstr "語句分析" -#: libraries/Console.php:219 libraries/Util.php:1322 libraries/sql.lib.php:228 +#: libraries/Console.php:201 libraries/Util.php:1321 libraries/sql.lib.php:228 msgid "Profiling" msgstr "效能分析" -#: libraries/Console.php:221 +#: libraries/Console.php:203 msgid "Bookmark" msgstr "書籤" -#: libraries/Console.php:222 +#: libraries/Console.php:204 msgid "Query failed" msgstr "查詢失敗" -#: libraries/Console.php:226 +#: libraries/Console.php:208 msgid "Queried time" msgstr "查詢時間" -#: libraries/Console.php:233 +#: libraries/Console.php:215 msgid "SQL Query Console" msgstr "SQL 查詢主控台" -#: libraries/Console.php:234 +#: libraries/Console.php:216 msgid "Console" msgstr "主控台" -#: libraries/Console.php:237 libraries/sql_query_form.lib.php:244 +#: libraries/Console.php:219 libraries/sql_query_form.lib.php:244 #: setup/frames/index.inc.php:300 msgid "Clear" msgstr "清除" -#: libraries/Console.php:240 +#: libraries/Console.php:222 msgid "History" msgstr "歷史記錄" -#: libraries/Console.php:243 libraries/Console.php:373 -#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1267 -#: libraries/import.lib.php:1302 libraries/mult_submits.lib.php:339 +#: libraries/Console.php:225 libraries/Console.php:355 +#: libraries/DisplayResults.php:1711 libraries/import.lib.php:1268 +#: libraries/import.lib.php:1303 libraries/mult_submits.lib.php:339 #: libraries/plugins/export/ExportCodegen.php:84 #: libraries/plugins/export/ExportCsv.php:48 #: libraries/plugins/export/ExportExcel.php:38 @@ -3024,125 +3010,125 @@ msgstr "歷史記錄" #: libraries/plugins/export/ExportYaml.php:47 #: libraries/plugins/import/AbstractImportCsv.php:35 #: libraries/plugins/import/ImportMediawiki.php:56 -#: libraries/plugins/import/ImportOds.php:57 +#: libraries/plugins/import/ImportOds.php:48 #: libraries/plugins/import/ImportShp.php:52 #: libraries/plugins/import/ImportSql.php:47 -#: libraries/plugins/import/ImportXml.php:56 +#: libraries/plugins/import/ImportXml.php:47 #: libraries/rte/rte_routines.lib.php:923 templates/table/index_form.phtml:49 #: templates/table/search/options.phtml:2 #: templates/table/structure/row_stats_table.phtml:20 msgid "Options" msgstr "選項" -#: libraries/Console.php:247 libraries/Console.php:335 +#: libraries/Console.php:229 libraries/Console.php:317 msgid "Bookmarks" msgstr "書籤" -#: libraries/Console.php:251 libraries/Console.php:289 +#: libraries/Console.php:233 libraries/Console.php:271 #: libraries/config/messages.inc.php:99 msgid "Debug SQL" msgstr "SQL 偵錯" -#: libraries/Console.php:260 +#: libraries/Console.php:242 msgid "Press Ctrl+Enter to execute query" msgstr "請按 Ctrl+Enter 執行查詢" -#: libraries/Console.php:262 +#: libraries/Console.php:244 msgid "Press Enter to execute query" msgstr "請按 Enter 執行查詢" -#: libraries/Console.php:280 +#: libraries/Console.php:262 msgid "ascending" msgstr "遞增" -#: libraries/Console.php:283 +#: libraries/Console.php:265 msgid "descending" msgstr "遞減" -#: libraries/Console.php:286 +#: libraries/Console.php:268 msgid "Order:" msgstr "排序:" -#: libraries/Console.php:292 templates/table/search/replace_preview.phtml:17 +#: libraries/Console.php:274 templates/table/search/replace_preview.phtml:17 msgid "Count" msgstr "次數" -#: libraries/Console.php:295 +#: libraries/Console.php:277 msgid "Execution order" msgstr "執行順序" -#: libraries/Console.php:298 +#: libraries/Console.php:280 msgid "Time taken" msgstr "使用時間" -#: libraries/Console.php:301 +#: libraries/Console.php:283 msgid "Order by:" msgstr "排序依:" -#: libraries/Console.php:304 +#: libraries/Console.php:286 msgid "Group queries" msgstr "群組查詢" -#: libraries/Console.php:307 +#: libraries/Console.php:289 msgid "Ungroup queries" msgstr "解除群組查詢" -#: libraries/Console.php:318 +#: libraries/Console.php:300 msgid "Show trace" msgstr "顯示追蹤" -#: libraries/Console.php:320 +#: libraries/Console.php:302 msgid "Hide trace" msgstr "隱藏追蹤" -#: libraries/Console.php:322 +#: libraries/Console.php:304 msgid "Count:" msgstr "次數:" -#: libraries/Console.php:339 libraries/Util.php:1292 +#: libraries/Console.php:321 libraries/Util.php:1291 #: libraries/config/messages.inc.php:898 #: libraries/server_status_processes.lib.php:235 #: libraries/server_status_variables.lib.php:39 msgid "Refresh" msgstr "重新整理" -#: libraries/Console.php:342 +#: libraries/Console.php:324 msgid "Add" msgstr "新增" -#: libraries/Console.php:351 +#: libraries/Console.php:333 msgid "Add bookmark" msgstr "新增書籤" -#: libraries/Console.php:355 +#: libraries/Console.php:337 msgid "Label" msgstr "標籤" -#: libraries/Console.php:357 +#: libraries/Console.php:339 msgid "Target database" msgstr "目標資料庫" -#: libraries/Console.php:360 +#: libraries/Console.php:342 msgid "Share this bookmark" msgstr "分享此書籤" -#: libraries/Console.php:377 +#: libraries/Console.php:359 msgid "Set default" msgstr "設定預設值" -#: libraries/Console.php:381 +#: libraries/Console.php:363 msgid "Always expand query messages" msgstr "總是展開查詢訊息" -#: libraries/Console.php:383 +#: libraries/Console.php:365 msgid "Show query history at start" msgstr "顯示查詢記錄於一開始" -#: libraries/Console.php:385 +#: libraries/Console.php:367 msgid "Show current browsing query" msgstr "顯示目前畫面使用的查詢" -#: libraries/Console.php:388 +#: libraries/Console.php:370 msgid "" "Execute queries on Enter and insert new line with Shift + Enter. To make " "this permanent, view settings." @@ -3150,35 +3136,35 @@ msgstr "" "按 Enter 執行查詢或使用 Shift + Enter 輸入新的一行。要將永久使用此設定設為請" "檢視設定項目。" -#: libraries/Console.php:392 +#: libraries/Console.php:374 msgid "Switch to dark theme" msgstr "切換為深色主題" -#: libraries/DatabaseInterface.php:1528 +#: libraries/DatabaseInterface.php:1441 #, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" msgstr "無法讀取設定檔!" -#: libraries/DatabaseInterface.php:2139 +#: libraries/DatabaseInterface.php:2052 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "伺服器沒有回應(或者是伺服器的 socket 沒有被正確的設定)。" -#: libraries/DatabaseInterface.php:2144 +#: libraries/DatabaseInterface.php:2057 msgid "The server is not responding." msgstr "伺服器沒有回應。" -#: libraries/DatabaseInterface.php:2150 +#: libraries/DatabaseInterface.php:2063 msgid "Please check privileges of directory containing database." msgstr "請檢查資料庫所在的資料夾權限。" -#: libraries/DatabaseInterface.php:2161 +#: libraries/DatabaseInterface.php:2074 msgid "Details…" msgstr "詳細資訊…" -#: libraries/DatabaseInterface.php:2368 +#: libraries/DatabaseInterface.php:2281 msgid "Connection for controluser as defined in your configuration failed." msgstr "使用設定檔案中定義的控制使用者連線失敗。" @@ -3488,7 +3474,7 @@ msgstr "可能為近似值,請參考 [doc@faq3-11]FAQ 3.11[/doc]。" #: libraries/controllers/table/TableRelationController.php:253 #: libraries/controllers/table/TableSearchController.php:635 #: libraries/rte/rte_routines.lib.php:1423 libraries/sql_query_form.lib.php:89 -#: tbl_row_action.php:140 view_operations.php:63 +#: tbl_row_action.php:140 view_operations.php:72 msgid "Your SQL query has been executed successfully." msgstr "您的 SQL 語法已順利執行。" @@ -3605,15 +3591,15 @@ msgstr "不允許上傳此檔案類型的檔案。" msgid "Unknown error in file upload." msgstr "上傳檔案時發生未知錯誤。" -#: libraries/File.php:468 +#: libraries/File.php:465 msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]." msgstr "移動上傳檔案時發生錯誤,請參考 [doc@faq1-11]FAQ 1.11[/doc]。" -#: libraries/File.php:487 +#: libraries/File.php:484 msgid "Error while moving uploaded file." msgstr "移動暫存檔時發生錯誤,請確認 TempDir 資料夾的寫入權限。" -#: libraries/File.php:495 +#: libraries/File.php:492 msgid "Cannot read uploaded file." msgstr "無法讀取已上傳的檔案。" @@ -3677,8 +3663,8 @@ msgid "Keyname" msgstr "鍵名" #: libraries/Index.php:695 -#: libraries/controllers/table/TableStructureController.php:1205 -#: libraries/controllers/table/TableStructureController.php:1210 +#: libraries/controllers/table/TableStructureController.php:1183 +#: libraries/controllers/table/TableStructureController.php:1188 #: libraries/tracking.lib.php:988 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:25 @@ -3728,13 +3714,13 @@ msgstr "已刪除索引 %s。" #: libraries/Index.php:755 libraries/Util.php:3699 libraries/Util.php:3700 #: libraries/controllers/server/ServerDatabasesController.php:387 -#: libraries/controllers/table/TableStructureController.php:1201 -#: libraries/controllers/table/TableStructureController.php:1202 +#: libraries/controllers/table/TableStructureController.php:1179 +#: libraries/controllers/table/TableStructureController.php:1180 #: libraries/operations.lib.php:1592 libraries/rte/rte_list.lib.php:153 #: templates/database/structure/check_all_tables.phtml:17 #: templates/table/relation/foreign_key_row.phtml:75 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:199 +#: templates/table/structure/display_structure.phtml:179 msgid "Drop" msgstr "刪除" @@ -3832,7 +3818,7 @@ msgstr "權限" #: libraries/Menu.php:377 libraries/Menu.php:385 libraries/Menu.php:464 #: libraries/Util.php:3407 libraries/Util.php:3421 libraries/Util.php:4341 #: libraries/Util.php:4359 libraries/config.values.php:113 -#: view_operations.php:93 +#: view_operations.php:102 msgid "Operations" msgstr "操作" @@ -3847,7 +3833,7 @@ msgstr "追蹤" #: libraries/plugins/export/ExportHtmlword.php:578 #: libraries/plugins/export/ExportOdt.php:713 #: libraries/plugins/export/ExportPdf.php:285 -#: libraries/plugins/export/ExportSql.php:1999 +#: libraries/plugins/export/ExportSql.php:2007 #: libraries/plugins/export/ExportTexytext.php:533 #: libraries/plugins/export/ExportXml.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4217,11 +4203,11 @@ msgstr "建立外鍵 %1$s 時發生錯誤 (檢查資料類型)" msgid "No valid image path for theme %s found!" msgstr "找不到佈景主題 %s 指定圖片路徑!" -#: libraries/Theme.php:400 +#: libraries/Theme.php:423 msgid "No preview available." msgstr "沒有預覽圖片。" -#: libraries/Theme.php:402 +#: libraries/Theme.php:425 msgid "take it" msgstr "確定" @@ -4515,21 +4501,21 @@ msgctxt "spatial types" msgid "Spatial" msgstr "空間類型" -#: libraries/Util.php:267 +#: libraries/Util.php:260 #, php-format msgid "Max: %s%s" msgstr "上限: %s %s" -#: libraries/Util.php:680 +#: libraries/Util.php:679 msgid "Static analysis:" msgstr "靜態分析:" -#: libraries/Util.php:683 +#: libraries/Util.php:682 #, php-format msgid "%d errors were found during analysis." msgstr "分析過程中發生 %d 個錯誤。" -#: libraries/Util.php:746 libraries/rte/rte_events.lib.php:113 +#: libraries/Util.php:745 libraries/rte/rte_events.lib.php:113 #: libraries/rte/rte_events.lib.php:122 libraries/rte/rte_events.lib.php:153 #: libraries/rte/rte_general.lib.php:39 libraries/rte/rte_routines.lib.php:228 #: libraries/rte/rte_routines.lib.php:255 @@ -4540,36 +4526,36 @@ msgstr "分析過程中發生 %d 個錯誤。" msgid "MySQL said: " msgstr "MySQL 回應: " -#: libraries/Util.php:1200 libraries/config/messages.inc.php:897 +#: libraries/Util.php:1199 libraries/config/messages.inc.php:897 msgid "Explain SQL" msgstr "SQL 語句分析" -#: libraries/Util.php:1211 +#: libraries/Util.php:1210 msgid "Skip Explain SQL" msgstr "略過 SQL 語句分析" -#: libraries/Util.php:1219 +#: libraries/Util.php:1218 #, php-format msgid "Analyze Explain at %s" msgstr "分析語句於 %s" -#: libraries/Util.php:1250 +#: libraries/Util.php:1249 #, fuzzy #| msgid "Without PHP Code" msgid "Without PHP code" msgstr "關閉 PHP 程式碼" -#: libraries/Util.php:1262 +#: libraries/Util.php:1261 #, fuzzy #| msgid "Submit Query" msgid "Submit query" msgstr "送出查詢" -#: libraries/Util.php:1273 libraries/config/messages.inc.php:899 +#: libraries/Util.php:1272 libraries/config/messages.inc.php:899 msgid "Create PHP code" msgstr "產生 PHP 程式碼" -#: libraries/Util.php:1336 +#: libraries/Util.php:1335 msgctxt "Inline edit query" msgid "Edit inline" msgstr "行內編輯" @@ -4657,6 +4643,10 @@ msgstr "每小時" msgid "per day" msgstr "每天" +#: libraries/bookmark.lib.php:94 +msgid "shared" +msgstr "已共享" + #: libraries/browse_foreigners.lib.php:133 msgid "Search:" msgstr "搜尋:" @@ -4761,41 +4751,41 @@ msgstr "新增欄位" msgid "Attributes" msgstr "屬性" -#: libraries/common.inc.php:482 +#: libraries/common.inc.php:501 msgid "Failed to read configuration file!" msgstr "無法讀取設定檔!" -#: libraries/common.inc.php:485 +#: libraries/common.inc.php:504 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "此情況通常是有語法錯誤,請檢查下列顯示的錯誤。" -#: libraries/common.inc.php:494 +#: libraries/common.inc.php:513 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "無法讀取預設設定: %1$s" -#: libraries/common.inc.php:528 +#: libraries/common.inc.php:547 #, php-format msgid "Invalid server index: %s" msgstr "無效的伺服器索引: %s" -#: libraries/common.inc.php:540 +#: libraries/common.inc.php:559 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "伺服器 %1$s 主機名稱無效,請重新檢查您的設定檔。" -#: libraries/common.inc.php:558 +#: libraries/common.inc.php:577 #, php-format msgid "Server %d" msgstr "伺服器 %d" -#: libraries/common.inc.php:698 +#: libraries/common.inc.php:717 msgid "Invalid authentication method set in configuration:" msgstr "在設定檔中設定的認證方式無效:" -#: libraries/common.inc.php:841 +#: libraries/common.inc.php:860 #, php-format msgid "" "Unable to use timezone %1$s for server %2$d. Please check your configuration " @@ -4805,24 +4795,24 @@ msgstr "" "無法於伺服器 %2$d 使用時區 %1$s。請檢查您於設定檔的 [em]$cfg['Servers'][%3$d]" "['SessionTimeZone'][/em] 設定。phpMyAdmin 目前使用資料庫伺服器的預設時區。" -#: libraries/common.inc.php:873 +#: libraries/common.inc.php:892 #, php-format msgid "You should upgrade to %s %s or later." msgstr "您應升級到 %s %s 或更新版本。" -#: libraries/common.inc.php:974 +#: libraries/common.inc.php:993 msgid "Error: Token mismatch" msgstr "錯誤: 連線資訊失效,請重新連線" -#: libraries/common.inc.php:1006 +#: libraries/common.inc.php:1011 msgid "GLOBALS overwrite attempt" msgstr "嘗試覆寫 GLOBALS (全域變數)" -#: libraries/common.inc.php:1013 +#: libraries/common.inc.php:1018 msgid "possible exploit" msgstr "$_REQUEST 數量過多(駭客?)" -#: libraries/common.inc.php:1022 +#: libraries/common.inc.php:1027 msgid "numeric key detected" msgstr "$_GLOBALS 內含非法的數字鍵名" @@ -5514,13 +5504,13 @@ msgstr "將欄位名稱儲存至第一行" #: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:371 #: libraries/config/messages.inc.php:384 -#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:135 msgid "Columns enclosed with" msgstr "內容分隔符號" #: libraries/config/messages.inc.php:143 libraries/config/messages.inc.php:372 #: libraries/config/messages.inc.php:385 -#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:146 msgid "Columns escaped with" msgstr "內容跳脫符號" @@ -5538,12 +5528,12 @@ msgstr "將欄位之間的換行符號(CRLF)移除" #: libraries/config/messages.inc.php:146 libraries/config/messages.inc.php:378 #: libraries/config/messages.inc.php:392 -#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:120 msgid "Columns terminated with" msgstr "欄位內容換行使用字元為" #: libraries/config/messages.inc.php:147 libraries/config/messages.inc.php:370 -#: libraries/plugins/import/ImportCsv.php:153 +#: libraries/plugins/import/ImportCsv.php:155 msgid "Lines terminated with" msgstr "換行符號" @@ -6114,7 +6104,7 @@ msgid "Column names in first row" msgstr "第一行資料為欄位名稱" #: libraries/config/messages.inc.php:394 -#: libraries/plugins/import/ImportOds.php:80 +#: libraries/plugins/import/ImportOds.php:71 msgid "Do not import empty rows" msgstr "不匯入空資料列" @@ -7556,7 +7546,7 @@ msgid "Table %s has been emptied." msgstr "已清空資料表 %s。" #: libraries/controllers/database/DatabaseStructureController.php:572 -#: tbl_operations.php:398 view_operations.php:122 +#: tbl_operations.php:398 view_operations.php:131 #, php-format msgid "View %s has been dropped." msgstr "已刪除檢視表 %s。" @@ -7688,8 +7678,8 @@ msgid "No data to display" msgstr "無資料可顯示" #: libraries/controllers/table/TableIndexesController.php:153 -#: libraries/controllers/table/TableStructureController.php:734 -#: libraries/controllers/table/TableStructureController.php:983 +#: libraries/controllers/table/TableStructureController.php:713 +#: libraries/controllers/table/TableStructureController.php:962 #: tbl_addfield.php:90 #, php-format msgid "Table %1$s has been altered successfully." @@ -7726,52 +7716,52 @@ msgstr[0] "名稱 '%s' 是 MySQL 保留字。" msgid "No column selected." msgstr "尚未選擇欄位。" -#: libraries/controllers/table/TableStructureController.php:487 +#: libraries/controllers/table/TableStructureController.php:466 msgid "The columns have been moved successfully." msgstr "欄位已移動成功。" -#: libraries/controllers/table/TableStructureController.php:745 -#: libraries/controllers/table/TableStructureController.php:1032 +#: libraries/controllers/table/TableStructureController.php:724 +#: libraries/controllers/table/TableStructureController.php:1011 #: libraries/tracking.lib.php:1109 msgid "Query error" msgstr "查詢錯誤" -#: libraries/controllers/table/TableStructureController.php:977 +#: libraries/controllers/table/TableStructureController.php:956 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "已成功修改資料表 %1$s 。已調整權限。" -#: libraries/controllers/table/TableStructureController.php:1200 +#: libraries/controllers/table/TableStructureController.php:1178 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "修改" -#: libraries/controllers/table/TableStructureController.php:1204 -#: libraries/controllers/table/TableStructureController.php:1209 +#: libraries/controllers/table/TableStructureController.php:1182 +#: libraries/controllers/table/TableStructureController.php:1187 #: 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:29 -#: templates/table/structure/display_structure.phtml:86 +#: templates/table/structure/display_structure.phtml:66 #: templates/table/structure/display_table_stats.phtml:22 msgid "Index" msgstr "索引" -#: libraries/controllers/table/TableStructureController.php:1206 -#: libraries/controllers/table/TableStructureController.php:1211 +#: libraries/controllers/table/TableStructureController.php:1184 +#: libraries/controllers/table/TableStructureController.php:1189 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "空間" -#: libraries/controllers/table/TableStructureController.php:1207 -#: libraries/controllers/table/TableStructureController.php:1212 +#: libraries/controllers/table/TableStructureController.php:1185 +#: libraries/controllers/table/TableStructureController.php:1190 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:38 msgid "Fulltext" msgstr "全文搜尋" -#: libraries/controllers/table/TableStructureController.php:1215 +#: libraries/controllers/table/TableStructureController.php:1193 msgid "Distinct values" msgstr "顯示相異值" @@ -7781,7 +7771,7 @@ msgid "The %s extension is missing. Please check your PHP configuration." msgstr "缺少 %s 擴充套件。請檢查 PHP 設定。" #: libraries/core.lib.php:849 libraries/mult_submits.inc.php:332 -#: tbl_operations.php:210 tbl_replace.php:306 templates/preview_sql.phtml:3 +#: tbl_operations.php:210 tbl_replace.php:312 templates/preview_sql.phtml:3 msgid "No change" msgstr "無更改" @@ -8535,54 +8525,54 @@ msgstr "MySQL 回傳空的查詢結果 (即零資料列)。" msgid "[ROLLBACK occurred.]" msgstr "[已發生 ROLLBACK。]" -#: libraries/import.lib.php:1255 +#: libraries/import.lib.php:1256 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "下列結構被建立或修改。您可以:" -#: libraries/import.lib.php:1258 +#: libraries/import.lib.php:1259 msgid "View a structure's contents by clicking on its name." msgstr "點選結構的名稱查看內容。" -#: libraries/import.lib.php:1261 +#: libraries/import.lib.php:1262 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link." msgstr "點選 \"選項\" 連結以修改項目的設定值。" -#: libraries/import.lib.php:1263 +#: libraries/import.lib.php:1264 msgid "Edit structure by following the \"Structure\" link." msgstr "點選「結構」連結以編輯。" -#: libraries/import.lib.php:1270 +#: libraries/import.lib.php:1271 #, php-format msgid "Go to database: %s" msgstr "前往資料庫: %s" -#: libraries/import.lib.php:1276 libraries/import.lib.php:1320 +#: libraries/import.lib.php:1277 libraries/import.lib.php:1321 #, php-format msgid "Edit settings for %s" msgstr "修改 %s 的設定" -#: libraries/import.lib.php:1305 +#: libraries/import.lib.php:1306 #, php-format msgid "Go to table: %s" msgstr "前往資料表: %s" -#: libraries/import.lib.php:1313 +#: libraries/import.lib.php:1314 #, php-format msgid "Structure of %s" msgstr "%s 的結構" -#: libraries/import.lib.php:1331 +#: libraries/import.lib.php:1332 #, php-format msgid "Go to view: %s" msgstr "前往檢視: %s" -#: libraries/import.lib.php:1391 +#: libraries/import.lib.php:1392 msgid "Only single-table UPDATE and DELETE queries can be simulated." msgstr "只有單一資料表的更新(UPDATE)與刪除(DELETE)查詢能模擬。" -#: libraries/import.lib.php:1614 +#: libraries/import.lib.php:1615 msgid "" "Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional " "engine tables can be rolled back." @@ -8630,48 +8620,48 @@ msgstr "或" msgid "web server upload directory:" msgstr "網站伺服器上傳資料夾:" -#: libraries/insert_edit.lib.php:1351 templates/table/search/input_box.phtml:46 +#: libraries/insert_edit.lib.php:1358 templates/table/search/input_box.phtml:46 msgid "Edit/Insert" msgstr "修改/新增" -#: libraries/insert_edit.lib.php:1401 +#: libraries/insert_edit.lib.php:1408 #, php-format msgid "Continue insertion with %s rows" msgstr "繼續新增 %s 列" -#: libraries/insert_edit.lib.php:1431 +#: libraries/insert_edit.lib.php:1438 msgid "and then" msgstr "然後" -#: libraries/insert_edit.lib.php:1464 +#: libraries/insert_edit.lib.php:1471 msgid "Insert as new row" msgstr "以新資料列新增" -#: libraries/insert_edit.lib.php:1467 +#: libraries/insert_edit.lib.php:1474 msgid "Insert as new row and ignore errors" msgstr "以新資料列新增 (忽略錯誤)" -#: libraries/insert_edit.lib.php:1470 +#: libraries/insert_edit.lib.php:1477 msgid "Show insert query" msgstr "顯示新增指令" -#: libraries/insert_edit.lib.php:1490 +#: libraries/insert_edit.lib.php:1497 msgid "Go back to previous page" msgstr "返回上一頁" -#: libraries/insert_edit.lib.php:1493 +#: libraries/insert_edit.lib.php:1500 msgid "Insert another new row" msgstr "新增其他新資料列" -#: libraries/insert_edit.lib.php:1498 +#: libraries/insert_edit.lib.php:1505 msgid "Go back to this page" msgstr "返回到本頁" -#: libraries/insert_edit.lib.php:1521 +#: libraries/insert_edit.lib.php:1528 msgid "Edit next row" msgstr "編輯下一行" -#: libraries/insert_edit.lib.php:1543 +#: libraries/insert_edit.lib.php:1550 #, fuzzy #| msgid "" #| "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" @@ -8679,7 +8669,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:1580 libraries/replication_gui.lib.php:542 +#: libraries/insert_edit.lib.php:1587 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1588 #: libraries/server_status_variables.lib.php:217 #: templates/database/designer/having_query_panel.phtml:100 @@ -8691,11 +8681,11 @@ msgstr "按 TAB 鍵跳到下一個數值,或 CTRL+方向鍵 作隨意移動" msgid "Value" msgstr "值" -#: libraries/insert_edit.lib.php:1944 libraries/sql.lib.php:1367 +#: libraries/insert_edit.lib.php:1951 libraries/sql.lib.php:1367 msgid "Showing SQL query" msgstr "顯示 SQL 查詢" -#: libraries/insert_edit.lib.php:1969 libraries/sql.lib.php:1345 +#: libraries/insert_edit.lib.php:1976 libraries/sql.lib.php:1345 #, php-format msgid "Inserted row id: %1$d" msgstr "新增的資料列行 id: %1$d" @@ -9537,7 +9527,7 @@ msgstr "修復資料表" #: libraries/operations.lib.php:1523 #: templates/database/structure/check_all_tables.phtml:15 -#: view_operations.php:130 +#: view_operations.php:139 msgid "Delete data or table" msgstr "刪除資料或資料表" @@ -9550,32 +9540,32 @@ msgid "Delete the table (DROP)" msgstr "刪除資料表 (DROP)" #: libraries/operations.lib.php:1579 -#: templates/table/structure/display_structure.phtml:191 +#: templates/table/structure/display_structure.phtml:171 msgid "Analyze" msgstr "分析" #: libraries/operations.lib.php:1580 -#: templates/table/structure/display_structure.phtml:192 +#: templates/table/structure/display_structure.phtml:172 msgid "Check" msgstr "檢查" #: libraries/operations.lib.php:1581 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:173 msgid "Optimize" msgstr "最佳化" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:194 +#: templates/table/structure/display_structure.phtml:174 msgid "Rebuild" msgstr "重建" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:195 +#: templates/table/structure/display_structure.phtml:175 msgid "Repair" msgstr "修復" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:196 +#: templates/table/structure/display_structure.phtml:176 msgid "Truncate" msgstr "清空" @@ -9601,35 +9591,35 @@ msgstr "刪除分區" msgid "Check referential integrity:" msgstr "檢查引用完整性:" -#: libraries/operations.lib.php:2081 +#: libraries/operations.lib.php:2079 msgid "Can't move table to same one!" msgstr "目標資料表不能爲來源資料表!" -#: libraries/operations.lib.php:2083 +#: libraries/operations.lib.php:2081 msgid "Can't copy table to same one!" msgstr "目標資料表不能爲來源資料表!" -#: libraries/operations.lib.php:2107 +#: libraries/operations.lib.php:2105 #, php-format msgid "Table %s has been moved to %s. Privileges have been adjusted." msgstr "已將資料表 %s 移動到 %s。已調整權限。" -#: libraries/operations.lib.php:2114 +#: libraries/operations.lib.php:2112 #, php-format msgid "Table %s has been copied to %s. Privileges have been adjusted." msgstr "已將資料表 %s 複製爲 %s。已調整權限。" -#: libraries/operations.lib.php:2123 +#: libraries/operations.lib.php:2121 #, php-format msgid "Table %s has been moved to %s." msgstr "已將資料表 %s 移動到 %s。" -#: libraries/operations.lib.php:2127 +#: libraries/operations.lib.php:2125 #, php-format msgid "Table %s has been copied to %s." msgstr "已將資料表 %s 複製爲 %s。" -#: libraries/operations.lib.php:2149 +#: libraries/operations.lib.php:2147 msgid "The table name is empty!" msgstr "資料表名稱不能爲空!" @@ -9800,7 +9790,7 @@ msgstr "資料匯出選項" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 -#: libraries/plugins/export/ExportSql.php:2311 +#: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" msgstr "資料表的匯出資料" @@ -9824,21 +9814,21 @@ msgstr "定義" #: libraries/plugins/export/ExportHtmlword.php:560 #: libraries/plugins/export/ExportOdt.php:690 -#: libraries/plugins/export/ExportSql.php:1968 +#: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" msgstr "資料表結構" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 -#: libraries/plugins/export/ExportSql.php:2038 +#: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" msgstr "檢視表結構" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 -#: libraries/plugins/export/ExportSql.php:2083 +#: libraries/plugins/export/ExportSql.php:2091 #: libraries/plugins/export/ExportTexytext.php:554 msgid "Stand-in structure for view" msgstr "替換檢視表以便查看" @@ -9928,7 +9918,7 @@ msgid "Database:" msgstr "資料庫:" #: libraries/plugins/export/ExportLatex.php:324 -#: libraries/plugins/export/ExportSql.php:2151 +#: libraries/plugins/export/ExportSql.php:2159 msgid "Data:" msgstr "資料:" @@ -10022,7 +10012,7 @@ msgid "Data creation options" msgstr "資料建立選項" #: libraries/plugins/export/ExportSql.php:339 -#: libraries/plugins/export/ExportSql.php:2257 +#: libraries/plugins/export/ExportSql.php:2265 msgid "Truncate table before insert" msgstr "資料表新增前先清除舊資料" @@ -10105,7 +10095,7 @@ msgstr "您的資料庫使用了函數(Function);" #: libraries/plugins/export/ExportSql.php:511 #: libraries/plugins/export/ExportSql.php:1526 -#: libraries/plugins/export/ExportSql.php:2028 +#: libraries/plugins/export/ExportSql.php:2036 msgid "alias export may not work reliably in all cases." msgstr "別名匯出可能無法在所有的情況下正常運作。" @@ -10149,52 +10139,52 @@ msgstr "使用中" msgid "It appears your database uses views;" msgstr "您的資料庫使用了檢視表(View);" -#: libraries/plugins/export/ExportSql.php:1685 +#: libraries/plugins/export/ExportSql.php:1693 msgid "Constraints for dumped tables" msgstr "已匯出資料表的限制(Constraint)" -#: libraries/plugins/export/ExportSql.php:1686 +#: libraries/plugins/export/ExportSql.php:1694 msgid "Constraints for table" msgstr "資料表的 Constraints" -#: libraries/plugins/export/ExportSql.php:1716 +#: libraries/plugins/export/ExportSql.php:1724 msgid "Indexes for dumped tables" msgstr "已匯出資料表的索引" -#: libraries/plugins/export/ExportSql.php:1717 +#: libraries/plugins/export/ExportSql.php:1725 msgid "Indexes for table" msgstr "資料表索引" -#: libraries/plugins/export/ExportSql.php:1745 +#: libraries/plugins/export/ExportSql.php:1753 msgid "AUTO_INCREMENT for dumped tables" msgstr "在匯出的資料表使用 AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1746 +#: libraries/plugins/export/ExportSql.php:1754 msgid "AUTO_INCREMENT for table" msgstr "使用資料表 AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.php:1821 +#: libraries/plugins/export/ExportSql.php:1829 msgid "MIME TYPES FOR TABLE" msgstr "MIME 類型表" -#: libraries/plugins/export/ExportSql.php:1844 +#: libraries/plugins/export/ExportSql.php:1852 msgid "RELATIONS FOR TABLE" msgstr "表的關聯" -#: libraries/plugins/export/ExportSql.php:2025 +#: libraries/plugins/export/ExportSql.php:2033 msgid "It appears your table uses triggers;" msgstr "您的資料表使用了觸發(Trigger);" -#: libraries/plugins/export/ExportSql.php:2062 +#: libraries/plugins/export/ExportSql.php:2070 #, php-format msgid "Structure for view %s exported as a table" msgstr "將視表 %s 結構匯出成資料表" -#: libraries/plugins/export/ExportSql.php:2086 +#: libraries/plugins/export/ExportSql.php:2094 msgid "(See below for the actual view)" msgstr "" -#: libraries/plugins/export/ExportSql.php:2172 +#: libraries/plugins/export/ExportSql.php:2180 msgid "Error reading data:" msgstr "讀取資料錯誤:" @@ -10224,7 +10214,7 @@ msgid "" msgstr "當匯入重複鍵值時更新資料 (加入 ON DUPLICATE KEY UPDATE)" #: libraries/plugins/import/ImportCsv.php:61 -#: libraries/plugins/import/ImportOds.php:72 +#: libraries/plugins/import/ImportOds.php:63 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" @@ -10244,15 +10234,15 @@ msgstr "" msgid "Column names: " msgstr "欄位名稱: " -#: libraries/plugins/import/ImportCsv.php:116 -#: libraries/plugins/import/ImportCsv.php:131 -#: libraries/plugins/import/ImportCsv.php:142 -#: libraries/plugins/import/ImportCsv.php:151 +#: libraries/plugins/import/ImportCsv.php:118 +#: libraries/plugins/import/ImportCsv.php:133 +#: libraries/plugins/import/ImportCsv.php:144 +#: libraries/plugins/import/ImportCsv.php:153 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "匯入 CSV 檔案 %s 時有無效參數" -#: libraries/plugins/import/ImportCsv.php:203 +#: libraries/plugins/import/ImportCsv.php:205 #, php-format msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " @@ -10261,18 +10251,18 @@ msgstr "" "無效欄位 (%s)!請檢查欄位名稱是否拼寫正確,使用半角逗號分隔,並且不要用引號括" "起。" -#: libraries/plugins/import/ImportCsv.php:298 -#: libraries/plugins/import/ImportCsv.php:659 +#: libraries/plugins/import/ImportCsv.php:300 +#: libraries/plugins/import/ImportCsv.php:661 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "CSV 輸入的第 %d 行格式有錯。" -#: libraries/plugins/import/ImportCsv.php:529 +#: libraries/plugins/import/ImportCsv.php:531 #, php-format msgid "Invalid column count in CSV input on line %d." msgstr "CSV 輸入的第 %d 行欄位數有錯。" -#: libraries/plugins/import/ImportLdi.php:107 +#: libraries/plugins/import/ImportLdi.php:109 msgid "This plugin does not support compressed imports!" msgstr "該外掛程式不支援匯入檔案!" @@ -10280,28 +10270,28 @@ msgstr "該外掛程式不支援匯入檔案!" msgid "MediaWiki Table" msgstr "MediaWiki 表" -#: libraries/plugins/import/ImportMediawiki.php:273 +#: libraries/plugins/import/ImportMediawiki.php:275 #, php-format msgid "Invalid format of mediawiki input on line:
%s." msgstr "mediawiki 輸入在此行格式錯誤:
%s." -#: libraries/plugins/import/ImportOds.php:86 +#: libraries/plugins/import/ImportOds.php:77 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" msgstr "匯入百分數爲小數 (如: 12.00% 將被匯入爲 .12)" -#: libraries/plugins/import/ImportOds.php:92 +#: libraries/plugins/import/ImportOds.php:83 msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "匯入貨幣 (如: $5.00 將被匯入爲 5.00)" -#: libraries/plugins/import/ImportOds.php:158 -#: libraries/plugins/import/ImportXml.php:117 -#: libraries/plugins/import/ImportXml.php:182 +#: libraries/plugins/import/ImportOds.php:151 +#: libraries/plugins/import/ImportXml.php:110 +#: libraries/plugins/import/ImportXml.php:175 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." msgstr "該 XML 檔案有錯誤或者不完整。請修復錯誤後重試。" -#: libraries/plugins/import/ImportOds.php:169 +#: libraries/plugins/import/ImportOds.php:162 msgid "Could not parse OpenDocument Spreadsheet!" msgstr "無法解析 OpenOffice 表格!" @@ -10312,23 +10302,23 @@ msgstr "" "href=\"http://zh.wikipedia.org/wiki/Shapefile\" target=\"_blank\">Shape " "File" -#: libraries/plugins/import/ImportShp.php:136 +#: libraries/plugins/import/ImportShp.php:138 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." msgstr "在匯入 ESRI Shapefile 時發生錯誤: 「%s」。" -#: libraries/plugins/import/ImportShp.php:193 +#: libraries/plugins/import/ImportShp.php:195 msgid "" "You tried to import an invalid file or the imported file contains invalid " "data!" msgstr "您嘗試匯入無效的檔案或檔案內的資料不正確!" -#: libraries/plugins/import/ImportShp.php:199 +#: libraries/plugins/import/ImportShp.php:201 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "MySQL Spatial 擴充套件不支援「%s」ESRI 類型。" -#: libraries/plugins/import/ImportShp.php:248 +#: libraries/plugins/import/ImportShp.php:250 msgid "The imported file does not contain any data!" msgstr "匯入的檔案中沒有任何資料!" @@ -10340,7 +10330,7 @@ msgstr "SQL 相容模式:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "不要在零值使用自動遞增 (AUTO_INCREMENT)" -#: libraries/plugins/import/ImportXml.php:52 +#: libraries/plugins/import/ImportXml.php:43 msgid "XML" msgstr "XML" @@ -13207,15 +13197,11 @@ msgstr "預期要有 %1$d 個數值,但只找到 %2$d 個。" msgid "An opening bracket followed by a set of values was expected." msgstr "預期要於數值之後接著開始括號。" -#: libraries/sql-parser/src/Components/ArrayObj.php:102 +#: libraries/sql-parser/src/Components/ArrayObj.php:119 #: libraries/sql-parser/src/Components/CreateDefinition.php:207 msgid "An opening bracket was expected." msgstr "預期要有開始括號。" -#: libraries/sql-parser/src/Components/ArrayObj.php:127 -msgid "A comma or a closing bracket was expected" -msgstr "預期要有逗號或者結束括號" - #: libraries/sql-parser/src/Components/CreateDefinition.php:251 msgid "A comma or a closing bracket was expected." msgstr "預期要有逗號或者結束括號。" @@ -13228,17 +13214,18 @@ msgstr "預期要有結束括號。" msgid "Unrecognized data type." msgstr "預期之外的資料類型。" -#: libraries/sql-parser/src/Components/Expression.php:256 -#: libraries/sql-parser/src/Components/Expression.php:292 -#: libraries/sql-parser/src/Components/Expression.php:312 +#: libraries/sql-parser/src/Components/Expression.php:248 +#: libraries/sql-parser/src/Components/Expression.php:323 +#: libraries/sql-parser/src/Components/Expression.php:342 +#: libraries/sql-parser/src/Components/Expression.php:374 msgid "An alias was previously found." msgstr "已於前面找到別名。" -#: libraries/sql-parser/src/Components/Expression.php:267 +#: libraries/sql-parser/src/Components/Expression.php:355 msgid "Unexpected dot." msgstr "預期之外的句點。" -#: libraries/sql-parser/src/Components/Expression.php:336 +#: libraries/sql-parser/src/Components/Expression.php:385 msgid "An alias was expected." msgstr "預期要有別名。" @@ -13256,19 +13243,19 @@ msgstr "預期要有偏移量(Offset)。" msgid "This option conflicts with \"%1$s\"." msgstr "此選項與 \"%1$s\" 發生衝突。" -#: libraries/sql-parser/src/Components/RenameOperation.php:103 +#: libraries/sql-parser/src/Components/RenameOperation.php:102 msgid "The old name of the table was expected." msgstr "預期要有舊的資料表名稱。" -#: libraries/sql-parser/src/Components/RenameOperation.php:113 +#: libraries/sql-parser/src/Components/RenameOperation.php:112 msgid "Keyword \"TO\" was expected." msgstr "預期要有 \"TO\" 關鍵字。" -#: libraries/sql-parser/src/Components/RenameOperation.php:130 +#: libraries/sql-parser/src/Components/RenameOperation.php:128 msgid "The new name of the table was expected." msgstr "預期要有新的資料表名稱。" -#: libraries/sql-parser/src/Components/RenameOperation.php:148 +#: libraries/sql-parser/src/Components/RenameOperation.php:146 msgid "A rename operation was expected." msgstr "預期要有重新命名的操作。" @@ -13294,15 +13281,15 @@ msgstr "預期要於結束使用括號 %1$s。" msgid "Variable name was expected." msgstr "預期要有變數名稱。" -#: libraries/sql-parser/src/Parser.php:417 +#: libraries/sql-parser/src/Parser.php:418 msgid "Unexpected beginning of statement." msgstr "預期之外的陳述句開頭。" -#: libraries/sql-parser/src/Parser.php:436 +#: libraries/sql-parser/src/Parser.php:437 msgid "Unrecognized statement type." msgstr "無法辨識的陳述句類型。" -#: libraries/sql-parser/src/Parser.php:518 +#: libraries/sql-parser/src/Parser.php:519 msgid "No transaction was previously started." msgstr "前面未開啟交易(Transaction)模式。" @@ -13323,15 +13310,15 @@ msgstr "找到新的陳述句,但與前一個陳述句之間未加入間隔符 msgid "Unrecognized keyword." msgstr "無法辨識的關鍵字。" -#: libraries/sql-parser/src/Statements/CreateStatement.php:353 +#: libraries/sql-parser/src/Statements/CreateStatement.php:352 msgid "The name of the entity was expected." msgstr "預期要有實體名稱。" -#: libraries/sql-parser/src/Statements/CreateStatement.php:370 +#: libraries/sql-parser/src/Statements/CreateStatement.php:369 msgid "At least one column definition was expected." msgstr "預期要至少一個欄位定義。" -#: libraries/sql-parser/src/Statements/CreateStatement.php:481 +#: libraries/sql-parser/src/Statements/CreateStatement.php:480 msgid "A \"RETURNS\" keyword was expected." msgstr "預期要使用 \"RETURNS\" 關鍵字。" @@ -14005,7 +13992,7 @@ msgstr "檢視資料表結構的匯出資料" msgid "Invalid table name" msgstr "無效的資料表名稱" -#: tbl_replace.php:234 +#: tbl_replace.php:238 #, php-format msgid "Row: %1$s, Column: %2$s, Error: %3$s" msgstr "列:%1$s,欄:%2$s,錯誤:%3$s" @@ -14945,7 +14932,7 @@ msgid "at beginning of table" msgstr "於資料表開始" #: templates/table/structure/display_partitions.phtml:5 -#: templates/table/structure/display_structure.phtml:203 +#: templates/table/structure/display_structure.phtml:183 msgid "Partitions" msgstr "分區" @@ -14984,7 +14971,7 @@ msgstr "已做分區依:" msgid "Edit partitioning" msgstr "刪除分區" -#: templates/table/structure/display_structure.phtml:149 view_create.php:186 +#: templates/table/structure/display_structure.phtml:129 view_create.php:186 msgid "Edit view" msgstr "編輯檢視表" @@ -15101,11 +15088,11 @@ msgstr "檢視表名稱" msgid "Column names" msgstr "欄位名稱" -#: view_operations.php:97 +#: view_operations.php:106 msgid "Rename view to" msgstr "重新命名檢視表為" -#: view_operations.php:136 +#: view_operations.php:145 msgid "Delete the view (DROP)" msgstr "刪除檢視表 (DROP)" @@ -16277,6 +16264,19 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 目前設定為 0" +#~ msgid "Total %d bookmark" +#~ msgid_plural "Total %d bookmarks" +#~ msgstr[0] "共 %d 筆書籤" + +#~ msgid "private" +#~ msgstr "私有" + +#~ msgid "%1$s, %2$s and %3$s bookmarks included" +#~ msgstr "已包含 %1$s、%2$s 與 %3$s 書籤" + +#~ msgid "A comma or a closing bracket was expected" +#~ msgstr "預期要有逗號或者結束括號" + #~ msgid "" #~ "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " #~ "configuration file!" From c60f97331ac1720ee5df9d68f6fe8da67f061c8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 12:03:55 +0100 Subject: [PATCH 24/42] Avoiud displaying query without message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- import.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/import.php b/import.php index a510bc030d..e30acc9bf7 100644 --- a/import.php +++ b/import.php @@ -671,9 +671,9 @@ if (! empty($id_bookmark) && $_REQUEST['action_bookmark'] == 2) { htmlspecialchars($_POST['bkm_label']) ); } elseif ($finished && ! $error) { + // Do not display the query with message, we do it separately + $display_query = ';'; if ($import_type != 'query') { - // Do not display the query with message, we do it separately - $display_query = ';'; $message = PMA\libraries\Message::success( '' . _ngettext( From 35dae125747fdbf8ceb2cbaf23b922d1605df927 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 12:12:49 +0100 Subject: [PATCH 25/42] Define cell_align_left for tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's defined early in common.inc.php so it's always available. Signed-off-by: Michal Čihař --- test/bootstrap-dist.php | 1 + 1 file changed, 1 insertion(+) diff --git a/test/bootstrap-dist.php b/test/bootstrap-dist.php index d2628918d3..1b2e45059f 100644 --- a/test/bootstrap-dist.php +++ b/test/bootstrap-dist.php @@ -81,6 +81,7 @@ $_SESSION[' PMA_token '] = 'token'; $_SESSION['tmpval']['pftext'] = 'F'; $GLOBALS['lang'] = 'en'; $GLOBALS['is_ajax_request'] = false; +$GLOBALS['cell_align_left'] = 'left'; // Check whether we have runkit extension define('PMA_HAS_RUNKIT', function_exists('runkit_constant_redefine')); From e275690dc463e484478360b3c2d0f72762367c49 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, 17 Feb 2016 12:54:09 +0100 Subject: [PATCH 26/42] Translated using Weblate (Greek) Currently translated at 100.0% (3211 of 3211 strings) [CI skip] --- po/el.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/po/el.po b/po/el.po index b96b4d1012..f808344ad5 100644 --- a/po/el.po +++ b/po/el.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2016-02-17 11:55+0100\n" -"PO-Revision-Date: 2016-02-08 21:43+0000\n" +"PO-Revision-Date: 2016-02-17 12:54+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" @@ -593,11 +593,11 @@ msgid "Bookmark %s has been created." msgstr "Ο σελιδοδείκτης %s έχει δημιουργηθεί." #: import.php:680 -#, fuzzy, php-format +#, php-format #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." -msgstr[0] "Η εισαγωγή ολοκληρώθηκε επιτυχώς, %d ερωτήματα εκτελέστηκαν." +msgstr[0] "Η εισαγωγή ολοκληρώθηκε επιτυχώς, %d ερώτημα εκτελέστηκε." msgstr[1] "Η εισαγωγή ολοκληρώθηκε επιτυχώς, %d ερωτήματα εκτελέστηκαν." #: import.php:711 @@ -3034,8 +3034,8 @@ msgstr "Βάση" #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Προβολή %1$d σελιδοδείκτη (τόσο ιδιωτικού όσο και κοινόχρηστου)" +msgstr[1] "Προβολή %1$d σελιδοδεικτών (τόσο ιδιωτικών όσο και κοινόχρηστων)" #: libraries/Console.php:107 msgid "No bookmarks" From cbbbe477b03383d936c9e894de42829d80b8a978 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristjan=20R=C3=A4ts?= Date: Wed, 17 Feb 2016 13:20:23 +0100 Subject: [PATCH 27/42] Translated using Weblate (Estonian) Currently translated at 100.0% (3211 of 3211 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 39d73bb85b..eb2d595bac 100644 --- a/po/et.po +++ b/po/et.po @@ -6,10 +6,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2016-02-17 11:55+0100\n" -"PO-Revision-Date: 2016-02-08 14:54+0000\n" +"PO-Revision-Date: 2016-02-17 13:22+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" @@ -588,11 +588,11 @@ msgid "Bookmark %s has been created." msgstr "Loodi järjehoidja %s." #: import.php:680 -#, fuzzy, php-format +#, php-format #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." -msgstr[0] "Importimine lõpetati edukalt, teostati %d päringut." +msgstr[0] "Importimine lõpetati edukalt, teostati %d päring." msgstr[1] "Importimine lõpetati edukalt, teostati %d päringut." #: import.php:711 @@ -2999,8 +2999,8 @@ msgstr "Andmebaas" #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Kuvatakse %1$d järjehoidja (isiklikud ja ühised)" +msgstr[1] "Kuvatakse %1$d järjehoidjat (isiklikud ja ühised)" #: libraries/Console.php:107 msgid "No bookmarks" From b5edfaaf73354d4ce052af539fd33acd5d5bc6d3 Mon Sep 17 00:00:00 2001 From: dingo thirteen Date: Wed, 17 Feb 2016 16:23:02 +0100 Subject: [PATCH 28/42] Translated using Weblate (Dutch) Currently translated at 100.0% (3211 of 3211 strings) [CI skip] --- po/nl.po | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/po/nl.po b/po/nl.po index 1a62a4fb84..bf267538a4 100644 --- a/po/nl.po +++ b/po/nl.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2016-02-17 11:55+0100\n" -"PO-Revision-Date: 2016-02-08 11:22+0000\n" +"PO-Revision-Date: 2016-02-17 16:24+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" @@ -593,12 +593,12 @@ msgid "Bookmark %s has been created." msgstr "Bladwijzer %s is aangemaakt." #: import.php:680 -#, fuzzy, php-format +#, php-format #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." -msgstr[0] "Het importeren is geslaagd, %d query's uitgevoerd." -msgstr[1] "Het importeren is geslaagd, %d query's uitgevoerd." +msgstr[0] "Het importeren is geslaagd, %d query uitgevoerd." +msgstr[1] "Het importeren is geslaagd, %d queries uitgevoerd." #: import.php:711 #, php-format @@ -3035,8 +3035,8 @@ msgstr "Database" #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Toont %1$d bladwijzer (zowel privé als gedeeld)" +msgstr[1] "Toont %1$d bladwijzers (zowel privé als gedeeld)" #: libraries/Console.php:107 msgid "No bookmarks" From b867cca62ddd5e6b63d659fdd23e0536ee11a2e3 Mon Sep 17 00:00:00 2001 From: Domen Date: Wed, 17 Feb 2016 17:13:56 +0100 Subject: [PATCH 29/42] Translated using Weblate (Slovenian) Currently translated at 100.0% (3211 of 3211 strings) [CI skip] --- po/sl.po | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/po/sl.po b/po/sl.po index f64d878cdd..c3e057fec5 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,16 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2016-02-17 11:55+0100\n" -"PO-Revision-Date: 2016-02-08 14:36+0000\n" +"PO-Revision-Date: 2016-02-17 17:14+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 @@ -588,14 +588,14 @@ msgid "Bookmark %s has been created." msgstr "Ustvaril sem zaznamek %s." #: import.php:680 -#, fuzzy, php-format +#, php-format #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." -msgstr[0] "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." -msgstr[1] "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." -msgstr[2] "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." -msgstr[3] "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." +msgstr[0] "Uvažanje je uspešno zaključeno, izvedli smo %d poizvedbo." +msgstr[1] "Uvažanje je uspešno zaključeno, izvedli smo %d poizvedbi." +msgstr[2] "Uvažanje je uspešno zaključeno, izvedli smo %d poizvedbe." +msgstr[3] "Uvažanje je uspešno zaključeno, izvedli smo %d poizvedb." #: import.php:711 #, php-format @@ -3015,10 +3015,10 @@ msgstr "Zbirka podatkov" #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Prikazovanje %1$d zaznamka (tako zasebnih kot deljenih)" +msgstr[1] "Prikazovanje %1$d zaznamkov (tako zasebnih kot deljenih)" +msgstr[2] "Prikazovanje %1$d zaznamkov (tako zasebnih kot deljenih)" +msgstr[3] "Prikazovanje %1$d zaznamkov (tako zasebnih kot deljenih)" #: libraries/Console.php:107 msgid "No bookmarks" From 82190f978a905c0227514a4c04d2356cd293573a Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 17 Feb 2016 19:13:45 +0100 Subject: [PATCH 30/42] Translated using Weblate (Turkish) Currently translated at 100.0% (3211 of 3211 strings) [CI skip] --- po/tr.po | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/po/tr.po b/po/tr.po index 28c27e3cb2..3a19aced91 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-alpha1\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2016-02-17 11:55+0100\n" -"PO-Revision-Date: 2016-02-08 12:25+0000\n" +"PO-Revision-Date: 2016-02-17 19:14+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" @@ -587,12 +587,12 @@ msgid "Bookmark %s has been created." msgstr "Yer imi %s oluşturuldu." #: import.php:680 -#, fuzzy, php-format +#, php-format #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." -msgstr[0] "İçe aktarma başarılı olarak bitti, %d sorgu çalıştırıldı." -msgstr[1] "İçe aktarma başarılı olarak bitti, %d sorgu çalıştırıldı." +msgstr[0] "İçe aktarma başarılı olarak tamamlandı, %d sorgu çalıştırıldı." +msgstr[1] "İçe aktarma başarılı olarak tamamlandı, %d sorgu çalıştırıldı." #: import.php:711 #, php-format @@ -3017,8 +3017,8 @@ msgstr "Veritabanı" #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1$d yer imi gösteriliyor (hem özel hem de paylaşılan)" +msgstr[1] "%1$d yer imi gösteriliyor (hem özel hem de paylaşılan)" #: libraries/Console.php:107 msgid "No bookmarks" From 3d0b33b32fa10576012268c84e13bc0e3b7fc5a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 18 Feb 2016 08:28:15 +0100 Subject: [PATCH 31/42] Add templates for new issues and pull requests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/blog/2111-issue-and-pull-request-templates Signed-off-by: Michal Čihař --- .github/ISSUE_TEMPLATE.md | 26 ++++++++++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 5 +++++ scripts/create-release.sh | 3 +++ 3 files changed, 34 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000000..db0ed3b2c0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,26 @@ +### Steps to reproduce +1. +2. +3. + +### Expected behaviour +Tell us what should happen + +### Actual behaviour +Tell us what happens instead + +### Server configuration +**Operating system**: + +**Web server:** + +**Database:** + +**PHP version:** + +**phpMyAdmin version:** + +### Client configuration +**Browser:** + +**Operating system:** diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000000..94147d21c5 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,5 @@ +Before submitting pull request, please check that every commit: + +- [ ] Has proper Signed-Off-By +- [ ] Has commit message which describes it +- [ ] Is needed on it's own, if you have just minor fixes to previous commits, you can squash them diff --git a/scripts/create-release.sh b/scripts/create-release.sh index 7c48d1e084..0b53d8a807 100755 --- a/scripts/create-release.sh +++ b/scripts/create-release.sh @@ -148,6 +148,9 @@ echo "* Removing unneeded files" # if someone runs /test/wui.php and there are test failures rm -rf test +# Remove developer information +rm -rf .github + # Remove phpcs coding standard definition rm -rf PMAStandard From 89c3c789d8d288f3a7465442f48617095c3b08cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Feb 2016 12:16:52 +0100 Subject: [PATCH 32/42] Translated using Weblate (Czech) Currently translated at 94.4% (3036 of 3214 strings) [CI skip] --- po/cs.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/cs.po b/po/cs.po index 107768f5a8..9d74b726da 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,10 +6,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2016-02-17 11:57+0100\n" -"PO-Revision-Date: 2016-02-16 10:08+0000\n" +"PO-Revision-Date: 2016-02-17 12:16+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" @@ -13946,7 +13946,7 @@ msgstr "Vytvořit verzi" #: libraries/tracking.lib.php:205 #, php-format msgid "Activate tracking for %s" -msgstr "Zapnuté sledování pro %s" +msgstr "Zapnout sledování pro %s" #: libraries/tracking.lib.php:207 msgid "Activate now" From c93381446ae09015c62eca2a7c267c01c9bdee4a Mon Sep 17 00:00:00 2001 From: dingo thirteen Date: Wed, 17 Feb 2016 16:26:44 +0100 Subject: [PATCH 33/42] Translated using Weblate (Dutch) Currently translated at 100.0% (3211 of 3211 strings) [CI skip] --- po/nl.po | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/po/nl.po b/po/nl.po index 62f24cc424..8aa5f6fb89 100644 --- a/po/nl.po +++ b/po/nl.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2016-02-17 11:57+0100\n" -"PO-Revision-Date: 2016-02-08 11:22+0000\n" +"PO-Revision-Date: 2016-02-17 16:26+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" @@ -593,12 +593,12 @@ msgid "Bookmark %s has been created." msgstr "Bladwijzer %s is aangemaakt." #: import.php:679 -#, fuzzy, php-format +#, php-format #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." -msgstr[0] "Het importeren is geslaagd, %d query's uitgevoerd." -msgstr[1] "Het importeren is geslaagd, %d query's uitgevoerd." +msgstr[0] "Het importeren is geslaagd, %d query uitgevoerd." +msgstr[1] "Het importeren is geslaagd, %d queries uitgevoerd." #: import.php:710 #, php-format @@ -776,6 +776,9 @@ msgid "" "The curl extension was not found and allow_url_fopen is disabled. Due to " "this some features such as error reporting or version check are disabled." msgstr "" +"De curl extensie is niet gevonden en allow_url_fopen is uitgeschakeld. " +"Hierdoor zijn ook een aantal functies zoals foutregistratie of versie " +"controle uitgeschakeld." #: index.php:499 msgid "" @@ -3032,8 +3035,8 @@ msgstr "Database" #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Toont %1$d bladwijzer (zowel privé als gedeeld)" +msgstr[1] "Toont %1$d bladwijzers (zowel privé als gedeeld)" #: libraries/Console.php:107 msgid "No bookmarks" @@ -3231,10 +3234,9 @@ msgid "Switch to dark theme" msgstr "Wissel naar donker thema" #: libraries/DatabaseInterface.php:1441 -#, fuzzy #| msgid "Failed to read configuration file!" msgid "Failed to set configured collation connection!" -msgstr "Lezen van het configuratiebestand is niet gelukt!" +msgstr "Instellen van geconfigureerde vergelijking verbinding mislukt!" #: libraries/DatabaseInterface.php:2052 msgid "" From cf54f11a96bce14a34e6872dfb73d745bb7e2b8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristjan=20R=C3=A4ts?= Date: Wed, 17 Feb 2016 13:22:05 +0100 Subject: [PATCH 34/42] Translated using Weblate (Estonian) Currently translated at 100.0% (3211 of 3211 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 322e39570b..af5cd451fb 100644 --- a/po/et.po +++ b/po/et.po @@ -6,10 +6,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2016-02-17 11:57+0100\n" -"PO-Revision-Date: 2016-02-08 14:54+0000\n" +"PO-Revision-Date: 2016-02-17 13:22+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" @@ -588,11 +588,11 @@ msgid "Bookmark %s has been created." msgstr "Loodi järjehoidja %s." #: import.php:679 -#, fuzzy, php-format +#, php-format #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." -msgstr[0] "Importimine lõpetati edukalt, teostati %d päringut." +msgstr[0] "Importimine lõpetati edukalt, teostati %d päring." msgstr[1] "Importimine lõpetati edukalt, teostati %d päringut." #: import.php:710 @@ -2999,8 +2999,8 @@ msgstr "Andmebaas" #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Kuvatakse %1$d järjehoidja (isiklikud ja ühised)" +msgstr[1] "Kuvatakse %1$d järjehoidjat (isiklikud ja ühised)" #: libraries/Console.php:107 msgid "No bookmarks" From f73a98d2ae56a597a6205be4db9ad3a4eb916033 Mon Sep 17 00:00:00 2001 From: Marc-Antoine Thevenet Date: Wed, 17 Feb 2016 12:53:05 +0100 Subject: [PATCH 35/42] Translated using Weblate (French) Currently translated at 99.9% (3208 of 3211 strings) [CI skip] --- po/fr.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/fr.po b/po/fr.po index b961fd79a1..cd70bb7a6b 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: 2016-02-17 11:57+0100\n" -"PO-Revision-Date: 2016-02-08 13:33+0000\n" +"PO-Revision-Date: 2016-02-17 12:53+0000\n" "Last-Translator: Marc-Antoine Thevenet \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" @@ -599,8 +599,8 @@ msgstr "Signet %s créé." #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." -msgstr[0] "L'importation s'est terminée avec succès, %d requêtes exécutées." -msgstr[1] "L'importation s'est terminée avec succès, %d requêtes exécutées." +msgstr[0] "L'importation a réussi, %d requête exécutée." +msgstr[1] "L'importation a réussi, %d requêtes exécutées." #: import.php:710 #, php-format From 3ed07c644e23bca99659ae77b665fd89ec0e5994 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, 17 Feb 2016 12:54:40 +0100 Subject: [PATCH 36/42] Translated using Weblate (Greek) Currently translated at 100.0% (3211 of 3211 strings) [CI skip] --- po/el.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/po/el.po b/po/el.po index d5e019402a..a67bd7833a 100644 --- a/po/el.po +++ b/po/el.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2016-02-17 11:57+0100\n" -"PO-Revision-Date: 2016-02-08 21:43+0000\n" +"PO-Revision-Date: 2016-02-17 12:54+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" @@ -593,11 +593,11 @@ msgid "Bookmark %s has been created." msgstr "Ο σελιδοδείκτης %s έχει δημιουργηθεί." #: import.php:679 -#, fuzzy, php-format +#, php-format #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." -msgstr[0] "Η εισαγωγή ολοκληρώθηκε επιτυχώς, %d ερωτήματα εκτελέστηκαν." +msgstr[0] "Η εισαγωγή ολοκληρώθηκε επιτυχώς, %d ερώτημα εκτελέστηκε." msgstr[1] "Η εισαγωγή ολοκληρώθηκε επιτυχώς, %d ερωτήματα εκτελέστηκαν." #: import.php:710 @@ -3034,8 +3034,8 @@ msgstr "Βάση" #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Προβολή %1$d σελιδοδείκτη (τόσο ιδιωτικού όσο και κοινόχρηστου)" +msgstr[1] "Προβολή %1$d σελιδοδεικτών (τόσο ιδιωτικών όσο και κοινόχρηστων)" #: libraries/Console.php:107 msgid "No bookmarks" From 95ac952575136b7024e74fd3f15d9afda92b4839 Mon Sep 17 00:00:00 2001 From: Giovanni Sora Date: Wed, 17 Feb 2016 13:24:44 +0100 Subject: [PATCH 37/42] Translated using Weblate (Interlingua) Currently translated at 73.5% (2362 of 3211 strings) [CI skip] --- po/ia.po | 78 ++++++++++++++++++++++++++++++++------------------------ 1 file changed, 45 insertions(+), 33 deletions(-) diff --git a/po/ia.po b/po/ia.po index e4a894471f..cf21e82e14 100644 --- a/po/ia.po +++ b/po/ia.po @@ -8,10 +8,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2016-02-17 11:57+0100\n" -"PO-Revision-Date: 2016-02-08 15:27+0000\n" +"PO-Revision-Date: 2016-02-17 13: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" @@ -597,11 +597,11 @@ msgid "Bookmark %s has been created." msgstr "Marcator de libro %s create." #: import.php:679 -#, fuzzy, php-format +#, php-format #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." -msgstr[0] "Importation executate con successo, %d demandas executate." +msgstr[0] "Importation executate con successo, %d demanda executate." msgstr[1] "Importation executate con successo, %d demandas executate." #: import.php:710 @@ -781,6 +781,9 @@ msgid "" "The curl extension was not found and allow_url_fopen is disabled. Due to " "this some features such as error reporting or version check are disabled." msgstr "" +"Le extension de curl non esseva trovate e allow_url_fopen es dishabilitate. " +"Debite a isto alcun characteristicas tal como reporto de error o controlo de " +"version es dishabilitate." #: index.php:499 msgid "" @@ -2595,6 +2598,13 @@ msgid "" "cause such a problem, clearing your \"Offline Website Data\" might help. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" +"Il habeva un problema quando on accede a tu immagazinage de navigator, alcun " +"characteristicas poterea non functionar propriemente per te. Probabilemente " +"il ha que le navigator non supporta immagazinage o le limite de quota ha " +"essite attingite. In Firefox, immagazinage corrupte anque pote causar un tal " +"problema, nettar tu \"Datos de sito Web foras de linea - i.e. Offline " +"Website Data\" pote adjutar. In Safari, tal problema es solitemente causate " +"per \"Navigation de Modo Private - i.e. Private Mode Browsing\"." #: js/messages.php:713 msgid "Copy tables to" @@ -2610,7 +2620,7 @@ msgstr "Reimplacia tabella con prefixo" #: js/messages.php:716 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" -msgstr "" +msgstr "Copia tabella con prefixo" #: js/messages.php:745 msgctxt "Previous month" @@ -3041,8 +3051,8 @@ msgstr "Base de datos" #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Monstrante %1$d 1 marcator de libro (ambe private e compartite)" +msgstr[1] "Monstrante %1$d 2 marcatores de libro (ambes private e compartite)" #: libraries/Console.php:107 msgid "No bookmarks" @@ -3852,7 +3862,7 @@ msgstr "Numero pagina:" #: libraries/LanguageManager.php:778 msgid "Ignoring unsupported language code." -msgstr "" +msgstr "Ignorante codice de linguage non supportate." #: libraries/Linter.php:99 msgid "" @@ -7945,7 +7955,7 @@ msgstr "incognite" #: libraries/controllers/server/ServerBinlogController.php:151 msgid "Log name" -msgstr "" +msgstr "Nomine de registro log" #: libraries/controllers/server/ServerBinlogController.php:152 msgid "Position" @@ -7959,11 +7969,11 @@ msgstr "Typo de evento" #: libraries/controllers/server/ServerBinlogController.php:154 #: libraries/replication_gui.lib.php:618 msgid "Server ID" -msgstr "" +msgstr "ID de servitor" #: libraries/controllers/server/ServerBinlogController.php:155 msgid "Original position" -msgstr "" +msgstr "Position original" #: libraries/controllers/server/ServerBinlogController.php:156 #: templates/table/structure/display_table_stats.phtml:4 @@ -7973,12 +7983,12 @@ msgstr "Information" #: libraries/controllers/server/ServerBinlogController.php:206 #: libraries/server_status_processes.lib.php:177 msgid "Truncate Shown Queries" -msgstr "" +msgstr "Trunca Queries monstrate" #: libraries/controllers/server/ServerBinlogController.php:210 #: libraries/server_status_processes.lib.php:182 msgid "Show Full Queries" -msgstr "" +msgstr "Monstra queries complete" #: libraries/controllers/server/ServerDatabasesController.php:119 msgid "No databases" @@ -10167,6 +10177,8 @@ msgstr "Accesso (Log in)" #: libraries/plugins/auth/AuthenticationCookie.php:178 msgid "You can enter hostname/IP address and port separated by space." msgstr "" +"Tu pote insertar nomine de hospite/Adresse de IP e le porto separate per " +"spatio." #: libraries/plugins/auth/AuthenticationCookie.php:183 msgid "Username:" @@ -10178,11 +10190,11 @@ msgstr "Selection de servitor:" #: libraries/plugins/auth/AuthenticationCookie.php:356 msgid "Entered captcha is wrong, try again!" -msgstr "" +msgstr "Le captcha insertate es errate, essaya de novo!" #: libraries/plugins/auth/AuthenticationCookie.php:360 msgid "Please enter correct captcha!" -msgstr "" +msgstr "Pro favor inserta le captcha correcte!" #: libraries/plugins/auth/AuthenticationCookie.php:386 msgid "You are not allowed to log in to this MySQL server!" @@ -10191,49 +10203,49 @@ msgstr "" #: libraries/plugins/auth/AuthenticationHttp.php:99 msgid "Wrong username/password. Access denied." -msgstr "" +msgstr "Nomine de usator/contrasigno errate. Accesso refusate." #: libraries/plugins/auth/AuthenticationSignon.php:92 msgid "Can not find signon authentication script:" -msgstr "" +msgstr "Il non pote trovar le script per le authentication de signon:" #: libraries/plugins/auth/swekey/swekey.auth.lib.php:145 #, php-format msgid "File %s does not contain any key id" -msgstr "" +msgstr "File %s 1 non contine alcun clave id" #: libraries/plugins/auth/swekey/swekey.auth.lib.php:193 #: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 msgid "Hardware authentication failed!" -msgstr "" +msgstr "Authentication hardware falleva!" #: libraries/plugins/auth/swekey/swekey.auth.lib.php:201 msgid "No valid authentication key plugged" -msgstr "" +msgstr "Necun valide clave de authentication insertate" #: libraries/plugins/auth/swekey/swekey.auth.lib.php:234 msgid "Authenticating…" -msgstr "" +msgstr "Authentication…" #: libraries/plugins/export/ExportCsv.php:62 #: libraries/plugins/import/AbstractImportCsv.php:58 msgid "Columns separated with:" -msgstr "" +msgstr "Columnas separate per:" #: libraries/plugins/export/ExportCsv.php:67 #: libraries/plugins/import/AbstractImportCsv.php:64 msgid "Columns enclosed with:" -msgstr "" +msgstr "Columnas limitate per:" #: libraries/plugins/export/ExportCsv.php:72 #: libraries/plugins/import/AbstractImportCsv.php:71 msgid "Columns escaped with:" -msgstr "" +msgstr "Columnas prefixate con:" #: libraries/plugins/export/ExportCsv.php:77 #: libraries/plugins/import/AbstractImportCsv.php:78 msgid "Lines terminated with:" -msgstr "" +msgstr "Rangos terminate per:" #: libraries/plugins/export/ExportCsv.php:82 #: libraries/plugins/export/ExportExcel.php:52 @@ -10243,16 +10255,16 @@ msgstr "" #: libraries/plugins/export/ExportOdt.php:131 #: libraries/plugins/export/ExportTexytext.php:87 msgid "Replace NULL with:" -msgstr "" +msgstr "Reimplacia NULL con:" #: libraries/plugins/export/ExportCsv.php:87 #: libraries/plugins/export/ExportExcel.php:57 msgid "Remove carriage return/line feed characters within columns" -msgstr "" +msgstr "Remove characteres de carriage return/line feed (CR/LF) intra columnas" #: libraries/plugins/export/ExportExcel.php:67 msgid "Excel edition:" -msgstr "" +msgstr "Edition de Excel:" #: libraries/plugins/export/ExportHtmlword.php:77 #: libraries/plugins/export/ExportLatex.php:159 @@ -10260,14 +10272,14 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.php:76 #: libraries/plugins/export/ExportXml.php:135 msgid "Data dump options" -msgstr "" +msgstr "Optiones del dump del datos" #: libraries/plugins/export/ExportHtmlword.php:207 #: libraries/plugins/export/ExportOdt.php:270 #: libraries/plugins/export/ExportSql.php:2319 #: libraries/plugins/export/ExportTexytext.php:190 msgid "Dumping data for table" -msgstr "" +msgstr "Dump del datos per le tabella" #: libraries/plugins/export/ExportHtmlword.php:487 #: libraries/plugins/export/ExportOdt.php:608 @@ -10291,14 +10303,14 @@ msgstr "Definition" #: libraries/plugins/export/ExportSql.php:1976 #: libraries/plugins/export/ExportTexytext.php:513 msgid "Table structure for table" -msgstr "" +msgstr "Structura de tabella" #: libraries/plugins/export/ExportHtmlword.php:585 #: libraries/plugins/export/ExportOdt.php:723 #: libraries/plugins/export/ExportSql.php:2046 #: libraries/plugins/export/ExportTexytext.php:538 msgid "Structure for view" -msgstr "" +msgstr "Structura per le vista" #: libraries/plugins/export/ExportHtmlword.php:599 #: libraries/plugins/export/ExportOdt.php:744 From 077af2a7dfb16c2c83429371d5863911bb0a3a30 Mon Sep 17 00:00:00 2001 From: Domen Date: Wed, 17 Feb 2016 17:14:47 +0100 Subject: [PATCH 38/42] Translated using Weblate (Slovenian) Currently translated at 100.0% (3211 of 3211 strings) [CI skip] --- po/sl.po | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/po/sl.po b/po/sl.po index cc7a7115d7..1ea2be6ec7 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,16 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2016-02-17 11:57+0100\n" -"PO-Revision-Date: 2016-02-08 14:36+0000\n" +"PO-Revision-Date: 2016-02-17 17:14+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 @@ -588,14 +588,14 @@ msgid "Bookmark %s has been created." msgstr "Ustvaril sem zaznamek %s." #: import.php:679 -#, fuzzy, php-format +#, php-format #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." -msgstr[0] "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." -msgstr[1] "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." -msgstr[2] "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." -msgstr[3] "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." +msgstr[0] "Uvažanje je uspešno zaključeno, izvedli smo %d poizvedbo." +msgstr[1] "Uvažanje je uspešno zaključeno, izvedli smo %d poizvedbi." +msgstr[2] "Uvažanje je uspešno zaključeno, izvedli smo %d poizvedbe." +msgstr[3] "Uvažanje je uspešno zaključeno, izvedli smo %d poizvedb." #: import.php:710 #, php-format @@ -3015,10 +3015,10 @@ msgstr "Zbirka podatkov" #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Prikazovanje %1$d zaznamka (tako zasebnih kot deljenih)" +msgstr[1] "Prikazovanje %1$d zaznamkov (tako zasebnih kot deljenih)" +msgstr[2] "Prikazovanje %1$d zaznamkov (tako zasebnih kot deljenih)" +msgstr[3] "Prikazovanje %1$d zaznamkov (tako zasebnih kot deljenih)" #: libraries/Console.php:107 msgid "No bookmarks" From 01dd0b2e44f262a07e81a3b5ed22d0d553fcd7b4 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Wed, 17 Feb 2016 19:14:38 +0100 Subject: [PATCH 39/42] Translated using Weblate (Turkish) Currently translated at 100.0% (3211 of 3211 strings) [CI skip] --- po/tr.po | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/po/tr.po b/po/tr.po index 3b51ba5ed7..4854f7c95e 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.7.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2016-02-17 11:57+0100\n" -"PO-Revision-Date: 2016-02-08 12:25+0000\n" +"PO-Revision-Date: 2016-02-17 19:14+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" @@ -587,12 +587,12 @@ msgid "Bookmark %s has been created." msgstr "Yer imi %s oluşturuldu." #: import.php:679 -#, fuzzy, php-format +#, php-format #| msgid "Import has been successfully finished, %d queries executed." msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." -msgstr[0] "İçe aktarma başarılı olarak bitti, %d sorgu çalıştırıldı." -msgstr[1] "İçe aktarma başarılı olarak bitti, %d sorgu çalıştırıldı." +msgstr[0] "İçe aktarma başarılı olarak tamamlandı, %d sorgu çalıştırıldı." +msgstr[1] "İçe aktarma başarılı olarak tamamlandı, %d sorgu çalıştırıldı." #: import.php:710 #, php-format @@ -3017,8 +3017,8 @@ msgstr "Veritabanı" #, php-format msgid "Showing %1$d bookmark (both private and shared)" msgid_plural "Showing %1$d bookmarks (both private and shared)" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1$d yer imi gösteriliyor (hem özel hem de paylaşılan)" +msgstr[1] "%1$d yer imi gösteriliyor (hem özel hem de paylaşılan)" #: libraries/Console.php:107 msgid "No bookmarks" From e4b5ef5a17eb20b6ed976644de0e10d2dff39ac6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 18 Feb 2016 09:34:21 +0100 Subject: [PATCH 40/42] Remove obsolete test files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These are not working for ages, so I assume nobody needs them :-). Signed-off-by: Michal Čihař --- test/AllSeleniumTests.php | 54 ------ test/theme.php | 360 -------------------------------------- test/wui.php | 17 -- 3 files changed, 431 deletions(-) delete mode 100644 test/AllSeleniumTests.php delete mode 100644 test/theme.php delete mode 100644 test/wui.php diff --git a/test/AllSeleniumTests.php b/test/AllSeleniumTests.php deleted file mode 100644 index dcafe1f9d1..0000000000 --- a/test/AllSeleniumTests.php +++ /dev/null @@ -1,54 +0,0 @@ -addTestSuite('PmaSeleniumLoginTest'); - $suite->addTestSuite('PmaSeleniumXssTest'); - $suite->addTestSuite('PmaSeleniumPrivilegesTest'); - $suite->addTestSuite('PmaSeleniumCreateDropDatabaseTest'); - $suite->addTestSuite('PmaSeleniumCreateRemoveUserTest'); - return $suite; - } -} diff --git a/test/theme.php b/test/theme.php deleted file mode 100644 index 421f56681b..0000000000 --- a/test/theme.php +++ /dev/null @@ -1,360 +0,0 @@ - - - - - phpMyAdmin <?php echo PMA_VERSION; ?> - - <?php echo htmlspecialchars($_SERVER['HTTP_HOST']); ?> - Theme Test - - - - - - - - - - - »' . "\n"; -$item = '' - . ' ' . "\n" - . '%4$s: %3$s' . "\n"; - -echo '
' . "\n"; -printf( - $item, - PMA\libraries\Util::getScriptNameForOption( - $GLOBALS['cfg']['DefaultTabserver'], 'server' - ), - PMA_URL_getCommon(), - 'Server', - __('Server'), - 'ic_s_host' -); - -echo $separator; -printf( - $item, - PMA\libraries\Util::getScriptNameForOption( - $GLOBALS['cfg']['DefaultTabDatabase'], 'database' - ), - '', - 'Database', - __('Database'), - 'ic_s_db' -); - -echo $separator; -printf( - $item, - PMA\libraries\Util::getScriptNameForOption( - $GLOBALS['cfg']['DefaultTabTable'], 'table' - ), - '', - 'Table', - (isset($GLOBALS['tbl_is_view']) && $GLOBALS['tbl_is_view'] - ? __('View') - : __('Table')), - (isset($GLOBALS['tbl_is_view']) && $GLOBALS['tbl_is_view'] - ? 'ic_b_views' - : 'ic_s_tbl') -); - -echo '' - . '"Table comment"' . "\n"; - -echo '
'; - - -/** - * Displays tab links - */ -$tabs = array(); - -$tabs['databases']['icon'] = 's_db.png'; -$tabs['databases']['link'] = 'server_databases.php'; -$tabs['databases']['text'] = __('Databases'); - -$tabs['sql']['icon'] = 'b_sql.png'; -$tabs['sql']['link'] = 'server_sql.php'; -$tabs['sql']['text'] = __('SQL'); - -$tabs['status']['icon'] = 's_status.png'; -$tabs['status']['link'] = 'server_status.php'; -$tabs['status']['text'] = __('Status'); - -$tabs['vars']['icon'] = 's_vars.png'; -$tabs['vars']['link'] = 'server_variables.php'; -$tabs['vars']['text'] = __('Variables'); - -$tabs['charset']['icon'] = 's_asci.png'; -$tabs['charset']['link'] = 'server_collations.php'; -$tabs['charset']['text'] = __('Charsets'); - -$tabs['engine']['icon'] = 'b_engine.png'; -$tabs['engine']['link'] = 'server_engines.php'; -$tabs['engine']['text'] = __('Engines'); - -$tabs['rights']['icon'] = 's_rights.png'; -$tabs['rights']['link'] = 'server_privileges.php'; -$tabs['rights']['text'] = __('Privileges'); - -$tabs['binlog']['icon'] = 's_tbl.png'; -$tabs['binlog']['link'] = 'server_binlog.php'; -$tabs['binlog']['text'] = __('Binary log'); - -$tabs['export']['icon'] = 'b_export.png'; -$tabs['export']['text'] = 'disabled'; - -$tabs['export2']['icon'] = 'b_export.png'; -$tabs['export2']['text'] = 'disabled caution'; -$tabs['export2']['class'] = 'caution'; - -$tabs['import']['icon'] = 'b_import.png'; -$tabs['import']['link'] = 'server_import.php'; -$tabs['import']['text'] = 'active'; -$tabs['import']['class'] = 'active'; - -echo PMA\libraries\Util::getHtmlTabs($tabs, array(), 'topmenu'); -unset($tabs); - -if (@file_exists($pmaThemeImage . 'logo_right.png')) { - ?> - phpMyAdmin - -

-phpMyAdmin ' . PMA_VERSION . '' -); -?> -

- -
- -
-
- -getHtmlSelectBox(false); -?> -
-
- -
- -

H1 Header

-

H2 Header

-

H3 Header

-

H4 Header

- -
- success message box content! -
-
-

Success message box header!

- success message box content! -
- -
- notice message box content! -
-
-

Notice message box header!

- notice message box content! -
-
- error message box content! -
-
-

Error message box header!

- error message box content! -
- -
- Confirmation fieldset - QUERY TO EXECUTE; -
-
- - -
- -
- -
- success message box content! -
- - -SELECT -*
-FROM -`test` -
-LIMIT -0 -, -30;
-SELECT -*
-FROM -`test` -
-LIMIT -0 -, -30;
-SELECT -*
-FROM -`test` -
-LIMIT -0 -, -30;
-SELECT -*
-FROM -`test` -
-LIMIT -0 -, -30;
-
-
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
table.data caption
table.data thead tr thtable.data thead tr thactiontable.data thead tr th
table.data tfoot tr thtable.data tfoot tr thactiontable.data tfoot tr th
td.value - drop - - drop - - drop - table.data tbody tr.odd td
td.value - drop - - drop - - drop - table.data tbody tr.even td
td.value - drop - - drop - - drop - table.data tbody tr.odd td
td.value - drop - - drop - - drop - table.data tbody tr.even td
- - diff --git a/test/wui.php b/test/wui.php deleted file mode 100644 index b479634af2..0000000000 --- a/test/wui.php +++ /dev/null @@ -1,17 +0,0 @@ -'; -AllTests::main(); -echo ''; - From 9bdca833057167c9d0c8681b3cf6579bfa2e0f8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 18 Feb 2016 10:49:17 +0100 Subject: [PATCH 41/42] Improve LanguageManager tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - test for MySQL locale on locale we have complete enough coverage - add test for getting non existing locale Signed-off-by: Michal Čihař --- test/classes/LanguageTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/classes/LanguageTest.php b/test/classes/LanguageTest.php index b367dc148e..e8260ab21f 100644 --- a/test/classes/LanguageTest.php +++ b/test/classes/LanguageTest.php @@ -104,7 +104,7 @@ class LanguageTest extends PMATestCase $czech = $this->manager->getLanguage('cs'); $this->assertEquals('cs_CZ', $czech->getMySQLLocale()); - $korani = $this->manager->getLanguage('ckb'); + $korani = $this->manager->getLanguage('hy'); $this->assertEquals('', $korani->getMySQLLocale()); } @@ -130,6 +130,8 @@ class LanguageTest extends PMATestCase $this->assertNotEquals(false, $lang); $this->assertEquals('Czech', $lang->getEnglishName()); $this->assertEquals('Čeština', $lang->getNativeName()); + $lang = $this->manager->getLanguage('nonexisting'); + $this->assertEquals(false, $lang); } /** From 4a402c354255e1f2d081d523c1f106007a721113 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 18 Feb 2016 10:52:22 +0100 Subject: [PATCH 42/42] Use correct markup for options removal MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- doc/config.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/config.rst b/doc/config.rst index d08b84f245..87128eba90 100644 --- a/doc/config.rst +++ b/doc/config.rst @@ -41,7 +41,7 @@ Basic settings :type: string :default: ``''`` - .. versionremoved:: 4.6.0 + .. deprecated:: 4.6.0 This setting is no longer available since phpMyAdmin 4.6.0. Please adjust your webserver instead. @@ -1306,7 +1306,7 @@ Generic settings :type: boolean :default: false - .. versionremoved:: 4.6.0 + .. deprecated:: 4.6.0 This setting is no longer available since phpMyAdmin 4.6.0. Please adjust your webserver instead.